AMC 10 · 2021 · #16
Grade 8 arithmeticPick an answer.
There are far too many entries to write out, so the list has to be re-organized into something countable. The useful reorganization is to stop tracking values and start tracking positions: because the list is already sorted, each value n owns one solid block of consecutive positions, and the only thing that matters is which block the middle position falls into. That converts the whole problem into running totals 1 + 2 + … + n, which have a pattern worth naming with a variable. Once the middle position is a specific number, finding the right block is a search over one unknown, and the near-square shape of the running total makes a square root an excellent first guess that two exact checks then confirm.
Count the list's length
The total is a triangular number.
Pairing the smallest count with the largest makes every pair the same size, so one multiplication replaces two hundred additions.
Pairing the smallest count with the largest makes every pair the same size, so one multiplication replaces the whole sum.
▸ Why?
In an evenly spaced list, moving inward raises one partner as much as it lowers the other.
▸ Why?
The counts climb by the same fixed step, which is what makes the list evenly spaced.
Turn the median into a seat
The median averages the two middle seats.
In a sorted list the median is a seat number, not a value, so counting seats replaces looking at data.
6.SP.B.5Organize Information In More WaysGive each block its range
Write each block's seat range.
Running totals convert "which number sits here" into "which total first passes this seat number."
7.EE.B.4Introduce A VariableEstimate with a square root
A square root estimates the block.
Two consecutive numbers multiply to almost a perfect square, so a square root lands within one step of the right block.
8.NS.A.2Solve An Easier Related ProblemCheck the candidate blocks
Both seats fall in the same block, so the answer is 142.
When both middle seats fall inside one block, the median is simply that block's value — no averaging of different numbers happens.
6.EE.A.2Guess And CheckWhen values repeat different numbers of times, the median is decided by counting seats, not by looking at values: find the running total that first passes the halfway seat.
- Count how long the list is
- Turn the median into a position
- Give each block its seat range
- Estimate n with a square root
- Check the two candidate blocks