AMC 10 · 2021 · #24
Grade 7 arithmetic
Pick an answer.
AMC 10 2021 problem © Mathematical Association of America (MAA AMC). Reproduced for educational use.
Tool #9 (Easier Problem) — start with single walls of size 1, 2, 3, …, 6. Their Grundy numbers solve the whole problem because each candidate splits into independent sub-walls. Tool #2 (Systematic List) — for each n, list every possible move's resulting Grundy number and apply mex (minimum excludant). Tool #5 (Pattern) — Grundy numbers grow nicely as n increases. Tool #7 (Subproblems) — three-wall positions decompose into XOR of single-wall Grundy numbers (Sprague-Grundy theorem). Tool #3 (Eliminate) — XOR each candidate and pick the one equal to 0. We need this theorem from above grade 8, but the small-case mex calculations are bare arithmetic and pattern-spotting.
Smallest walls by mex of one-move options: G(0)=0, G(1)=1, and G(2)=2.
Build up Grundy values from the smallest walls — each new Grundy = smallest non-negative integer NOT in the set of options.
7.NS.A.3Solve An Easier Related ProblemSize 3: removing the middle brick gives (1,1) with XOR 0, so options {0,1,2} and G(3)=3.
Removing the middle brick of 3 gives two separated single bricks — their Grundy XOR is 0.
7.NS.A.3Make A Systematic ListSize 4: the options {0,2,3} skip 1, so the mex drops — G(4)=1.
The mex jumps DOWN at n = 4 because {0, 2, 3} skips 1.
7.NS.A.3Make A Systematic ListSize 5: the middle removal splits into (2,2) with XOR 0; options {0,1,2,3} give G(5)=4.
Single brick from the middle splits 5 into (2, 2) — Grundy 0, a strong defensive option for the mover.
7.NS.A.3Make A Systematic ListSize 6: the options {0,1,2,4} miss 3, so the key wall value is G(6)=3.
Grundy of 6 is 3 — note the mex skips over 3 in the option-set because {0, 1, 2, 4} misses it.
7.NS.A.3Make A Systematic ListApply the Sprague-Grundy XOR rule to each choice's three walls: A=3, B=0, C=3, D=1, E=2.
Independent walls XOR — like independent Nim heaps.
7.NS.A.3Identify SubproblemsThe unique P-position has nim-value 0 — choice B; every Arjun move breaks it and Beth restores XOR 0 to win.
Grundy 0 = the mover is stuck — every move creates a position the opponent can exploit.
7.NS.A.3Eliminate PossibilitiesThis hard AMC 10 game-theory problem boils down to a Grade 7 small-case search you already know — compute the Grundy number (mex of next-move Grundy values) for single walls of size 1 through 6, getting 1, 2, 3, 1, 4, 3. The position (6, 2, 1) has XOR 3 ⊕ 2 ⊕ 1 = 0, meaning the first player (Arjun) has no good move — every move leaves a non-zero XOR Beth can answer perfectly. So the answer is (B) (6, 2, 1).