Difficulty: Medium
Correct Answer: 1015
Explanation:
Given data
Concept / Approach
Compute L.C.M.
Prime forms: 12 = 2^2 × 3; 16 = 2^4; 18 = 2 × 3^2; 21 = 3 × 7; 28 = 2^2 × 7.Take highest powers: 2^4, 3^2, 7^1 ⇒ L = 16 × 9 × 7 = 1008.
Smallest N
N = 1008 × 1 + 7 = 1015.
Verification
N − 7 = 1008, clearly divisible by 12, 16, 18, 21, and 28.
Common pitfalls
Final Answer
Smallest such number = 1015.
Discussion & Comments