Difficulty: Medium
Correct Answer: 60
Explanation:
Introduction / Context:This classic overlap-average problem uses totals with an overlapping term. The 7th result belongs to both the "first 7" and the "last 7", allowing a direct equation to isolate it.
Given Data / Assumptions:
Concept / Approach:Since the 7th result x is counted in both T1 and T2, but only once in T, we have T = T1 + T2 − x. Solve for x to obtain the overlapped value.
Step-by-Step Solution:
T = 13 * 60 = 780 T1 = 7 * 59 = 413 T2 = 7 * 61 = 427 780 = 413 + 427 − x ⇒ x = 413 + 427 − 780 = 60Verification / Alternative check:Using the equation T1 − x covers the first 6, T2 − x covers the last 6; adding those plus x and x reconstructs all 13, confirming the overlap logic.
Why Other Options Are Wrong:90, 50, 75: Do not satisfy the totals relationship; they would distort one or both subgroup means.
Common Pitfalls:Adding T1 and T2 without subtracting x once, which double-counts the 7th value.
Final Answer:60
Discussion & Comments