Difficulty: Easy
Correct Answer: 46 years
Explanation:
Introduction / Context:Average problems often require reconstructing the total sum from the average and the number of members. When a new member joins and the average changes, we compare the new total to the old one to isolate the newcomer’s age.
Given Data / Assumptions:
Concept / Approach:Compute both totals explicitly and subtract. This avoids any algebraic confusion and works reliably for all average-with-addition problems.
Step-by-Step Solution:
sum_students = 30 * 15 = 450.new_total = 31 * 16 = 496.Teacher’s age = 496 − 450 = 46 years.Verification / Alternative check:Recalculate average with teacher: (450 + 46)/31 = 496/31 = 16 ✓.
Why Other Options Are Wrong:35/40/45/56 yield totals that do not produce the required 16 average when added to 450 and divided by 31.
Common Pitfalls:Accidentally averaging the two averages; multiplying the teacher’s age by 31; or forgetting that the old total uses 30 while the new total uses 31.
Final Answer:46 years
Discussion & Comments