Difficulty: Easy
Correct Answer: 70a
Explanation:
Introduction / Context:
The Least Common Multiple (LCM) of numbers that are all multiples of a common factor can be computed by factoring that common part out and taking the LCM of the remaining coefficients. Here each term has a factor a, and the coefficients are small integers.
Given Data / Assumptions:
Concept / Approach:
LCM(k1*a, k2*a, k3*a) = a * LCM(k1, k2, k3) because each number contains a single factor a to the first power and the LCM keeps the highest power of each prime across the list. The coefficients 2, 5, and 7 are pairwise coprime, so their LCM is their product.
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments