Difficulty: Easy
Correct Answer: 37.5
Explanation:
Introduction / Context:
When elements are removed from a dataset, recompute the total and divide by the new count to get the updated average. This problem reinforces careful sum tracking.
Given Data / Assumptions:
Concept / Approach:
Total = average * count. Subtract removed values from the total, then divide by the new count.
Step-by-Step Solution:
Verification / Alternative check:
The two removed values have mean 50 which is above 38. Removing higher values should lower the average, consistent with 37.5.
Why Other Options Are Wrong:
Common Pitfalls:
Forgetting to adjust the count or mis-adding the removed values, which skews the final mean.
Final Answer:
37.5
Discussion & Comments