AMC 10 · 2021 · #8
Grade 4 patternPick an answer.
Tool #9 (Easier Related Problem) makes the whole thing tractable: throw away the actual sizes and keep only even/odd, because parity of a sum is decided by parity of the parts. Tool #2 (Systematic List) builds the even/odd table from n = 0 upward without skipping a term. Tool #5 (Look for a Pattern) is the payoff — the parity list repeats, and once the pattern's length is known, index 2021 collapses to a tiny index. Tool #3 (Eliminate Possibilities) confirms the resulting triple against the five listed options.
Track parity only
Track parity, not size.
Even and odd behave like a two-button calculator, so a hopeless computation shrinks to a game with two symbols.
2.OA.C.3Solve An Easier Related ProblemBuild the first terms
Build the first dozen terms.
Generating a handful of terms from the stated rule is the cheapest way to see what the sequence actually does.
4.OA.C.5Make A Systematic ListWrite the parity row
Rewrite each term as even or odd.
Stripping the table down to two symbols makes a repeat visible that the raw numbers hide.
4.OA.C.5Make A Systematic ListSpot the period
The parity repeats every seven.
A rule that looks back only three steps has no memory beyond that, so a repeated three-term state forces the whole future to repeat.
A rule that looks back only three steps has no memory beyond that, so a repeated triple forces the whole future to repeat.
▸ Why?
Once a state repeats, everything that followed it the first time follows it again in the same order.
▸ Why?
Inside a loop of fixed length only the remainder after dividing by that length decides where a step lands.
Reduce the indices
Reduce the three indices modulo seven.
Periodicity turns a four-digit index into its remainder, which is all the cycle can see.
4.NBT.B.6Look For A PatternRead the answer off the table
The answer is even, odd, even.
Once the index is reduced, the answer is a plain table lookup.
4.OA.C.5Eliminate PossibilitiesThis AMC 12 problem needs no algebra beyond Grade 4: keep only even/odd instead of the huge numbers, list the first few terms, notice the pattern repeats every 7 steps, then divide 2021 by 7 and look up the remainder.
- Track parity, not size
- Build the first terms
- Write the parity row
- Spot the repeat: period 7
- Reduce 2021, 2022, 2023 mod 7
- Read the answer off the table