Difficulty: Easy
Correct Answer: 5
Explanation:
Introduction / Context:This problem highlights how adding one item can decrease an average if the item is below the current average. We compute the exact value via totals.Given Data / Assumptions:
Concept / Approach:Total = average * count. The new observation equals the difference between the new and old totals.Step-by-Step Solution:
Old total = 6 * 12 = 72New total = 7 * 11 = 77Seventh observation = 77 - 72 = 5Verification / Alternative check:New average check: (72 + 5)/7 = 77/7 = 11. Correct.Why Other Options Are Wrong:
Common Pitfalls:Assuming the new value equals the new average instead of using totals.Final Answer:
5
Discussion & Comments