Combined average of two datasets: The average of 30 results is 20, and the average of another 20 results is 30. Find the average of all 50 results combined.

Difficulty: Easy

Correct Answer: 24

Explanation:


Introduction / Context:
Combining datasets requires weighted averaging. Multiply each subgroup average by its count to get totals, then divide the sum by the combined count.


Given Data / Assumptions:

  • Group 1: 30 results, average 20
  • Group 2: 20 results, average 30


Concept / Approach:
Overall average = (sum of group totals) / total number of results.


Step-by-Step Solution:

Total 1 = 30 * 20 = 600Total 2 = 20 * 30 = 600Combined total = 600 + 600 = 1200Overall average = 1200 / 50 = 24


Verification / Alternative check:
The two groups contribute equally to the total. With equal totals but different counts, the overall mean lies between 20 and 30, specifically 24 given the 30 to 20 split.


Why Other Options Are Wrong:

  • 25, 27: incorrect weighting.
  • 48, 50: misread as totals, not averages.


Common Pitfalls:
Doing an unweighted mean of 20 and 30 (which would be 25) without considering different counts.


Final Answer:
24

More Questions from Average

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion