Difficulty: Easy
Correct Answer: 122
Explanation:
Introduction / Context:
Numbers leaving the same remainder upon division by several divisors are handled using the Least Common Multiple (LCM). The pattern is N ≡ r (mod each divisor), hence N − r is a common multiple of all divisors.
Given Data / Assumptions:
Concept / Approach:
Compute LCM of the divisors, then set N = LCM + r for the least positive solution. In general, all solutions are N = LCM * k + r, k ≥ 1 integer, but k = 1 gives the smallest positive answer beyond r itself (which will not satisfy divisibility here).
Step-by-Step Solution:
Verification / Alternative check:
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Discussion & Comments