Difficulty: Medium
Correct Answer: 1263
Explanation:
Introduction / Context:
The statement “N − 3 is divisible by 21, 28, 36, and 45” means N − 3 must be a common multiple of all four numbers. The smallest such N is found by adding 3 to the least common multiple (LCM) of the set.
Given Data / Assumptions:
Concept / Approach:
Compute LCM(21, 28, 36, 45) using prime factorization. Then take N = LCM + 3. Prime factorization captures the highest needed power of each prime across the set.
Step-by-Step Solution:
Verification / Alternative check:
Check divisibility: 1260 ÷ 21 = 60; ÷ 28 = 45; ÷ 36 = 35; ÷ 45 = 28. All are integers, confirming 1260 is the LCM. Hence N = 1263 is minimal.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
1263
Discussion & Comments