Difficulty: Easy
Correct Answer: 1500
Explanation:
Introduction / Context:
This is a classic allocation problem using the idea that the total quantity remains constant, but the per-person share changes because fewer recipients are present. The key is to set up the relation between original planned share and the increased share when some children are absent.
Given Data / Assumptions:
Concept / Approach:
Let the originally planned per-child share be x. Then the actual per-child share is x + 1 (since fewer children shared the same total). Equate the two expressions for total sweets and solve for x, then compute the total number of sweets.
Step-by-Step Solution:
Let original per-child share = x.Original total = 300 * x.Actual per-child share = x + 1 with 250 children → Actual total = 250 * (x + 1).Equate totals: 300x = 250(x + 1) → 300x = 250x + 250 → 50x = 250 → x = 5.Total sweets = 300 * x = 300 * 5 = 1500.
Verification / Alternative check:
With 250 children, each gets x + 1 = 6 sweets: 250 * 6 = 1500, same total—consistent.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming the total changes; mixing up who got “one extra”; arithmetic slips when equating totals.
Final Answer:
1500
Discussion & Comments