AMC 10 · 2025 · #23
Grade 12 countingPick an answer.
The rule 'no digit trapped below two larger neighbors' is hard to count directly, so I first translate it into a shape: what do the valid digit strings actually look like? Once I see they must climb to a single peak and come back down, counting splits into two clean subproblems. First I fix the set of digits used and count the mountain arrangements it allows, which turns out to be a simple power of two. Then I add those counts over every possible set of digits, and the binomial theorem folds the whole sum into one power of three. Grouping by which digits are used keeps the count organized and free of double counting.
No valley means a mountain shape
All digits differ, so every step strictly rises or falls. Banning valleys (down-then-up) forces one climb to a single peak, then descends.
Any dip that goes down and then back up hides a valley at its bottom, so the only valley-free layout climbs once and descends once.
11.S-CP.B.9Draw A DiagramCount the mountains from one chosen set
Fix k digits. The largest is forced to the peak; each other digit picks the rising or falling side, so each set gives 2^k-1.
The peak is pinned to the biggest digit, so all that is left is one yes-or-no side choice per remaining digit.
The peak is pinned to the biggest digit, so all that is left is one yes-or-no side choice per remaining digit.
▸ Why?
Any two digits compare in exactly one way, so the largest one has nowhere to sit but the top.
▸ Why?
Each remaining digit's side is chosen without regard to the others, so the counts multiply.
Add over every set size
A k-digit set can be chosen C(9, k) ways, each giving 2^k-1 fair numbers; summing over k = 1..9 makes the total one clean sum.
Sorting fair numbers by which digits they use turns one huge count into a tidy sum over set sizes with no overlaps.
11.S-CP.B.9Identify SubproblemsCollapse the sum with the binomial theorem
Pull out : the binomial theorem gives Σ C(9,k)2^k = 3⁹ = 19683, so = 9841, choice (C).
Adding back the missing k = 0 term completes a perfect (1 + 2)⁹, so the whole messy sum becomes one clean power of three.
12.A-APR.C.5Solve An Easier Related ProblemTurn a confusing rule into a shape: 'no digit trapped below two bigger ones' just means the number climbs to one peak and comes back down, and then you only pick a side for each digit.
- No valley means a mountain shape
- Count the mountains from one chosen set
- Add over every set size
- Collapse the sum with the binomial theorem