Introduction
In aptitude problems on averages, sometimes the average of a group changes when a new member joins or an existing member leaves.
These questions test whether you can adjust the total sum correctly after the addition or removal, then recalculate the new average.
Pattern: Effect of Adding/Removing a Member
Pattern
Key ideas:
Adding a member: New total = Old total + New member’s value.
New average = New total ÷ (n + 1).
Removing a member: New total = Old total - Removed member’s value.
New average = New total ÷ (n - 1).
Shortcut: Change in average = (New/Removed value - Old average) ÷ New count.
Step-by-Step Example
Question
The average age of 10 students is 20 years. A new student aged 30 joins the group. What is the new average age?
Options:
A) 20.5 B) 20.8 C) 20.9 D) 21.0
Solution
-
Step 1: Compute the old total
Old total = 10 × 20 = 200. -
Step 2: Add the new member’s value
New total = 200 + 30 = 230. -
Step 3: Update the count
New count = 10 + 1 = 11. -
Step 4: Calculate the new average
New average = 230 ÷ 11 = 20.91 (approx). -
Final Answer:
20.91 years → Option C -
Quick Check:
A larger-than-average value was added → average should rise slightly. It does. ✅
Question
The average salary of 5 workers is ₹12,000. One worker with salary ₹15,000 leaves the group. What is the new average salary?
Options:
A) ₹10,000 B) ₹11,000 C) ₹11,250 D) ₹12,500
Solution
-
Step 1: Compute the old total
Old total = 5 × 12,000 = 60,000. -
Step 2: Subtract the removed member’s value
New total = 60,000 - 15,000 = 45,000. -
Step 3: Reduce the count
New count = 5 - 1 = 4. -
Step 4: Calculate the new average
New average = 45,000 ÷ 4 = 11,250. -
Final Answer:
₹11,250 → Option C -
Quick Check:
A high-salary worker left → average should decrease. It does. ✅
Quick Variations
Adding multiple members: Add all their values to total, increase count accordingly.
Removing multiple members: Subtract their values from total, decrease count accordingly.
Mixed cases: Add some members and remove some - adjust total and count both.
Trick to Always Use
- Step 1: Old total = average × count.
- Step 2: Add/remove member’s value to adjust total.
- Step 3: New average = adjusted total ÷ new count.
- Step 4: Always check if the average should rise or fall.
Summary
Summary
Adding or removing a member affects the average because the total and count change together.
- Adding: Total + new value, count + 1.
- Removing: Total - removed value, count - 1.
- Shortcut: Average change = (new - old average) ÷ new count.
- Quick Check: If added > average → average rises; if removed > average → average falls.
