AMC 10 · 2021 · #23
Grade 7 probability
Pick an answer.
Tool #1 (Diagram) — draw the 3 × 3 grid, color-code C/E/V, and sketch the wrap-around to understand each move type. Tool #9 (Easier Problem) — reduce from "track 9 positions" to "track 3 cell types" via the grid's symmetry; this collapses the state space dramatically. Tool #7 (Subproblems) — compute hop-by-hop: the probability of (not stopped yet, currently at C) and (not stopped yet, currently at E), since V means stopped. Tool #5 (Pattern) — the recursion is short (4 hops), so iterating gives the answer directly. Tool #3 (Eliminate) — answer choices all have denominator dividing 32, so we expect a denominator of 32.
Sort the squares
Sort the squares into three kinds.
Reduce from 9 cells to 3 types — each type behaves the same by symmetry.
Squares that the board's symmetries carry onto each other behave identically, so nine cells collapse to three types.
▸ Why?
A symmetry moves the board onto itself without stretching, so the rules look the same from each such square.
▸ Why?
Each square belongs to exactly one type, so the types cover everything without overlapping.
Write the transition rules
The centre cannot reach a corner directly.
Sum of disjoint "first stop at hop n" probabilities = total stopping probability.
7.SP.C.8Identify SubproblemsAfter the first hop
After one hop it sits on an edge square.
Center hop goes to E with certainty — no corner reachable on hop 1.
7.SP.C.5Look For A PatternAfter the second hop
Half the chance lands on the second hop.
From E with probability 1, half the time we land on V (stop), the rest splits evenly into C and E.
7.SP.C.7Look For A PatternAfter the third hop
Update the surviving cases.
Same recursion — only E-cells can stop next hop, so we track E_n carefully.
7.SP.C.7Look For A PatternAfter the fourth hop
Compute the last contribution.
Only need the E₃ value; C₄, E₄ don't matter past hop 4.
7.SP.C.7Look For A PatternAdd them up
Adding gives twenty-five thirty-seconds.
Add disjoint stopping events with a common denominator — the answer drops out directly.
5.NF.A.1Eliminate PossibilitiesThis AMC 12 problem only needs Grade 7 probability you already know — collapse the 3 × 3 grid to three cell types (Center, Edge, Corner) by symmetry, work out the transition probabilities P(E → V) = 1/2, P(E → C) = P(E → E) = 1/4, and add the four hop-by-hop stopping probabilities 0 + 1/2 + 1/8 + 5/32 = 25/32.