The key concept here is perfect squares and divisibility — and that one word, "even", completely changes the answer.
Key setup: We need sqrt(48n) to be a multiple of 10, meaning 48n must be a perfect square AND divisible by 100.
Step 1 — Express the condition algebraically
sqrt(48n) = 10k for some positive integer k
→ 48n = 100k2
→ n = 25k2/12
For n to be a positive integer, 12 must divide 25k2. Since gcd(25, 12) = 1, we need 12 | k2. Since 12 = 4 x 3: 4|k2 requires 2|k, and 3|k2 requires 3|k. So k must be a multiple of lcm(2,3) = 6.
Step 2 — Find the smallest valid n
Smallest k = 6: n = 25 x 36 / 12 = 75. But 75 is odd — the problem asks for the smallest even n. This is the trap!
Next: k = 12: n = 25 x 144 / 12 = 300. 300 is even. ✓
Verify: sqrt(48 x 300) = sqrt(14400) = 120. Multiple of 10? Yes. ✓
Answer: D. 300
---
Common trap: The instinct is to stop at 75 since it's the first n that makes sqrt(48n) a perfect multiple of 10 — and it does. But 75 is odd. The word "even" in the stem is deliberately easy to miss under exam pressure, which is why 83% of attempted sessions got this wrong.
Takeaway: On "smallest n" problems, list all constraints explicitly before computing — divisibility, parity, and structure conditions each must be verified independently before selecting an answer.
(Kavya | 725 on GMAT Focus Edition)