Difficulty: Easy
Correct Answer: 55.44
Explanation:
Introduction / Context:Convert circumference to radius using C = 2πr, then compute the area πr^2. This is a direct formula application with clean decimals.
Given Data / Assumptions:
Concept / Approach:r = C / (2π). Then A = πr^2. Carefully handle decimals to avoid rounding errors.
Step-by-Step Solution:
r = 26.4 / (2 * 22/7) = 26.4 / (44/7) = 26.4 * 7 / 44 = 0.6 * 7 = 4.2 cm.A = πr^2 = (22/7) * (4.2)^2 = (22/7) * 17.64 = 22 * 2.52 = 55.44 cm^2.Verification / Alternative check:Compute with C = 2πr → 2 * (22/7) * 4.2 = (44/7) * 4.2 = 26.4, confirming r = 4.2 cm is consistent.
Why Other Options Are Wrong:44.55, 33.44, 44.33, 50.24 do not equal π*(4.2)^2 under the given circumference constraint.
Common Pitfalls:Using C = πd but forgetting d = 2r, or squaring 26.4 accidentally instead of 4.2 when computing area.
Final Answer:55.44
Discussion & Comments