Difficulty: Easy
Correct Answer: 60
Explanation:
Introduction / Context:
This problem tests the weighted-average concept. When two groups with different averages are combined, the overall average is a weighted mean, where each group average is weighted by its group size. We use this to back-calculate the unknown number of students.
Given Data / Assumptions:
Concept / Approach:
Weighted average formula: overall average = (sum of totals from each class) / (total students). If A1, A2 are averages and n1, n2 are sizes, then overall = (A1*n1 + A2*n2) / (n1 + n2). Solve for n1 when other values are known.
Step-by-Step Solution:
Verification / Alternative check:
Totals: class 1 = 25*60 = 1500; class 2 = 40*30 = 1200. Combined = 2700 over 90 students → 2700/90 = 30, as required.
Why Other Options Are Wrong:
45, 70, 80, and 40 do not satisfy the weighted-average equation when substituted; only 60 produces an overall average of 30.
Common Pitfalls:
Mixing simple average with weighted average; forgetting to divide by total students x + 30; or incorrectly moving terms while solving the linear equation.
Final Answer:
60
Discussion & Comments