Difficulty: Easy
Correct Answer: 60
Explanation:
Introduction / Context:When a line at distance d from the center cuts a circle of radius r, the chord length L satisfies L = 2 * √(r^2 − d^2). With two concentric circles cut by the same line, d is common to both, enabling an easy elimination approach to find r2^2 − r1^2.
Given Data / Assumptions:
Concept / Approach:Use the relation (L/2)^2 = r^2 − d^2 for each circle, then subtract to eliminate d^2 and directly obtain the difference of squared radii.
Step-by-Step Solution:
For inner circle: (4/2)^2 = r1^2 − d^2 ⇒ 2^2 = r1^2 − d^2 ⇒ r1^2 − d^2 = 4For outer circle: (16/2)^2 = r2^2 − d^2 ⇒ 8^2 = r2^2 − d^2 ⇒ r2^2 − d^2 = 64Subtract: (r2^2 − d^2) − (r1^2 − d^2) = 64 − 4 ⇒ r2^2 − r1^2 = 60Verification / Alternative check:Pick any d with 0 < d < r1; for example d = 1 gives r1^2 = 5, r2^2 = 65, difference = 60, confirming independence of d.
Why Other Options Are Wrong:
Common Pitfalls:Forgetting to halve the chord length before squaring; mixing up r^2 − (L/2)^2 with (r − L/2)^2.
Final Answer:60
Discussion & Comments