This is a beautiful DS problem that combines median concepts with arithmetic progressions — a combination that tests whether you understand both topics deeply!
The question asks: Five boxes weigh 100 pounds total. What is the median weight?
With 5 boxes, the median will be the 3rd box when arranged in order from lightest to heaviest.
Statement (1): One of the boxes weighs 20 pounds
This tells us:
- One box = 20 pounds
- Remaining 4 boxes = 80 pounds total
But here's the problem: we don't know how those 80 pounds are distributed, and we don't know where the 20-pound box falls in the ordering.
Let me show you with examples:
- If weights are {5, 10, 20, 25, 40}: Median = 20
- If weights are {20, 20, 20, 20, 20}: Median = 20
- If weights are {10, 15, 20, 25, 30}: Median = 20
- But if weights are {1, 2, 20, 37, 40}: Median = 20
- And if weights are {1, 19, 30, 30, 20}: Ordered = {1, 19, 20, 30, 30}, Median = 20
Actually, wait! Let me reconsider with more diverse examples:
- If weights are {10, 15, 25, 25, 25}: Median = 25 (the 20-pound box isn't in this set!)
- If weights are {5, 15, 25, 30, 25}: Ordered = {5, 15, 25, 25, 30}, Median = 25
I realize I need to include the 20-pound box. Let me try again:
- If weights are {5, 10, 20, 30, 35}: Median = 20
- If weights are {2, 3, 4, 20, 71}: Median = 4
Different distributions give different medians! Statement (1) is INSUFFICIENT.
Statement (2): The weights form an arithmetic progression when arranged in ascending order
This is powerful! Let's call the five weights: a, a+d, a+2d, a+3d, a+4d (where d is the common difference).
Their sum equals 100:
a + (a+d) + (a+2d) + (a+3d) + (a+4d) = 100
5a + 10d = 100
a + 2d = 20
Now notice: the median is the middle term = a+2d = 20 pounds!
The beautiful thing here is that for any arithmetic sequence, the middle term always equals the average of all terms. And since the average of 5 boxes totaling 100 pounds is 20 pounds, the median must also be 20 pounds.
Statement (2) is SUFFICIENT.
Answer: B
Common traps to avoid:
The big trap with Statement 1 is assuming that knowing one specific value automatically gives you the median — it doesn't! You need to know either all values or enough structural information about how they're distributed. With Statement 2, some students might think "I need to find the value of a and d separately," but that's not necessary. Data Sufficiency only asks whether you CAN determine the answer, not whether you need to find every variable. Here, knowing that a+2d = 20 is enough because that expression IS the median.
Key takeaway: Arithmetic progressions have a special property: the median equals the mean (average). This happens because the values are symmetrically distributed around the middle value. Whenever you see "arithmetic progression" or "evenly spaced" in a DS problem about median or mean, remember they'll be equal! This property can turn an apparently insufficient statement into a sufficient one.