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:
Initial total = 50 * 38 = 1900Remove 45 and 55: new total = 1900 - 100 = 1800New count = 48New average = 1800 / 48 = 37.5Verification / 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