AMC 10 · 2024 · #16

Easy mode Grade 4
📗 View original problem →

Problem

Picture a whiteboard with every whole number from 11 to 20242024 written on it.

Jerry plays a game. In one move, he picks any 4 numbers on the board, erases them, and writes one new number in their place. The new number is either the sum of those 4 numbers, or their product. He chooses which one each time.

(For example, his first move could be to erase 11, 22, 33, 55 and write 1111 — the sum — or write 3030 — the product.)

Jerry keeps making moves. At some point he stops, and notices that every number left on the board is odd.

What is the largest number of numbers that could be left on the board at that moment?

(A) 1010(B) 1011(C) 1012(D) 1013(E) 1014\textbf{(A) } 1010 \qquad \textbf{(B) } 1011 \qquad \textbf{(C) } 1012 \qquad \textbf{(D) } 1013 \qquad \textbf{(E) } 1014

Pick an answer.

(A)
1010
(B)
1011
(C)
1012
(D)
1013
(E)
1014
View mode:

Toolkit + CCSS Solution

Understand

Restated: The integers from $1$ to $2024$ are on a whiteboard. Each move: pick any $4$ numbers, erase them, and write either their sum or their product. After some sequence of moves, every remaining number is odd. What is the largest possible count of numbers still on the board?

Givens: Start: integers $1, 2, 3, \dots, 2024$ — so $1012$ even and $1012$ odd; Each move replaces $4$ numbers by $1$ number, so total count drops by $3$; The replacement value is the sum OR the product of the chosen $4$; Final state: every number on the board is odd; Answer choices: (A) $1010$, (B) $1011$, (C) $1012$, (D) $1013$, (E) $1014$

Unknowns: The maximum possible number of integers remaining when the board is all odd

Understand

Restated: The integers from $1$ to $2024$ are on a whiteboard. Each move: pick any $4$ numbers, erase them, and write either their sum or their product. After some sequence of moves, every remaining number is odd. What is the largest possible count of numbers still on the board?

Givens: Start: integers $1, 2, 3, \dots, 2024$ — so $1012$ even and $1012$ odd; Each move replaces $4$ numbers by $1$ number, so total count drops by $3$; The replacement value is the sum OR the product of the chosen $4$; Final state: every number on the board is odd; Answer choices: (A) $1010$, (B) $1011$, (C) $1012$, (D) $1013$, (E) $1014$

Plan

Primary tool: #5 Look for a Pattern

Secondary: #7 Identify Subproblems, #3 Eliminate Possibilities

The board changes in a structured way every move, so the work splits into two patterns to find — Tool #5. Pattern 1: the total count drops by $3$ each move, so the final count is fixed mod $3$. Pattern 2: count the odd numbers on the board; check how many odds disappear or appear per move. Both patterns are invariants (one strict, one a monovariant), and together they pin down the answer without any algebra. Tool #7 (Identify Subproblems) splits the work into (a) modular ceiling, (b) odd-count ceiling, (c) a constructive recipe showing $1010$ is reachable. Tool #3 (Eliminate Possibilities) sweeps the five choices using the two ceilings — that is the most elementary AMC move and finishes the problem.

Execute — Answer: A

#7 Identify Subproblems 2.OA.C.3 Step 1
  • Count parity at the start.
  • Among $1, 2, \dots, 2024$ there are $2024 / 2 = 1012$ even numbers and $1012$ odd numbers, for a total of $2024$.
$$\text{evens} = 1012, \quad \text{odds} = 1012, \quad \text{total} = 2024$$

💡 Splitting the starting list into odd and even buckets is the Grade 2 odd/even idea, just on a longer list.

#5 Look for a Pattern 4.OA.C.5 Step 2
  • Pattern 1: total count drops by $3$ each move.
  • Each move erases $4$ numbers and writes $1$, so the net change is $-3$.
  • After $k$ moves the board has $2024 - 3k$ numbers, so the final count $N$ satisfies $N \equiv 2024 \equiv 2 \pmod 3$.
$$N = 2024 - 3k \;\Rightarrow\; N \equiv 2 \pmod 3$$

💡 When every step changes a quantity by the same fixed amount, the leftover after dividing by that amount cannot change — a Grade 4 "continue the pattern" rule.

#3 Eliminate Possibilities 4.OA.B.4 Step 3
  • Use Pattern 1 to eliminate choices.
  • Check $1010, 1011, 1012, 1013, 1014$ modulo $3$: only $1010 \equiv 2$ and $1013 \equiv 2$ survive.
$$1010 \equiv 2, \; 1011 \equiv 0, \; 1012 \equiv 1, \; 1013 \equiv 2, \; 1014 \equiv 0 \pmod 3$$

💡 Divisibility-by-$3$ tests on a Grade 4 multiples chart instantly throw out three of the five choices.

#5 Look for a Pattern 2.OA.C.3 Step 4
  • Pattern 2: track how the odd-count $D$ changes per move.
  • The move's output is odd only in three cases — list them: (i) Product of four odds gives one odd (uses $4$ odds, gains $1$): $D$ drops by $3$.
  • (ii) Sum of three evens and one odd gives one odd (uses $1$ odd, gains $1$): $D$ stays the same.
  • (iii) Sum of three odds and one even gives one odd (uses $3$ odds, gains $1$): $D$ drops by $2$.
  • In every move that ends with an odd written down, the odd-count never increases.
$$\Delta D \in \{-3, \; 0, \; -2\} \;\Rightarrow\; \Delta D \le 0$$

💡 Listing the three odd-producing cases is plain Grade 2 odd-plus-even bookkeeping; the punchline is that none of them grows the odd count.

#3 Eliminate Possibilities 1.NBT.B.3 Step 5
  • Conclude the second ceiling.
  • Since the odd count $D$ starts at $1012$ and never grows, and since the final board is all odd, the final count equals $D_{\text{final}} \le 1012$.
  • So $1013$ is impossible, eliminating choice (D).
  • The only survivor is choice (A) $1010$.
$$N_{\text{final}} = D_{\text{final}} \le 1012 \;\Rightarrow\; N_{\text{final}} \le 1012$$

💡 Comparing the final count to the starting odd count is a Grade 1 two-digit-number comparison.

#7 Identify Subproblems 3.OA.A.3 Step 6
  • Constructive check that $1010$ is actually reachable.
  • Phase A — kill evens cheaply.
  • Use case (iii) of step 4: pick three evens and one odd, take their SUM (odd).
  • Run this $337$ times: each run kills $3$ evens and keeps the odd-count steady at $1012$ (uses $1$ odd, makes $1$ odd).
  • After $337$ runs, $337 \cdot 3 = 1011$ evens are gone, leaving $1$ even and still $1012$ odds.
$$337 \times (\text{E,E,E,O} \to \text{O}): \quad 1012 - 1011 = 1 \text{ even}, \; 1012 \text{ odds}$$

💡 Repeated subtraction in groups of three is just Grade 3 division: $1012 \div 3$ gives quotient $337$ remainder $1$.

#7 Identify Subproblems 2.OA.A.1 Step 7
  • Phase B — kill the last even.
  • Apply case (iii) once more: take the remaining $1$ even and any $3$ odds and SUM them (odd).
  • That move uses $3$ odds and makes $1$, so the odd count drops by $2$ to $1010$.
  • The board is now all odd with $1010$ numbers.
$$(\text{E,O,O,O}) \to \text{O}: \quad 0 \text{ evens}, \; 1012 - 2 = 1010 \text{ odds} \;\Rightarrow\; N = 1010 \;\Rightarrow\; \textbf{(A)}$$

💡 Putting the last piece in place is a Grade 2 take-away word problem: $1012 - 3 + 1 = 1010$.

[1] #7 2.OA.C.3 Count parity at the start. Among $1, 2, \dots, 2024$ there are $2024 / 2 = 1012$
[2] #5 4.OA.C.5 Pattern 1: total count drops by $3$ each move. Each move erases $4$ numbers and
[3] #3 4.OA.B.4 Use Pattern 1 to eliminate choices. Check $1010, 1011, 1012, 1013, 1014$ modulo
[4] #5 2.OA.C.3 Pattern 2: track how the odd-count $D$ changes per move. The move's output is od
[5] #3 1.NBT.B.3 Conclude the second ceiling. Since the odd count $D$ starts at $1012$ and never
[6] #7 3.OA.A.3 Constructive check that $1010$ is actually reachable. Phase A — kill evens cheap
[7] #7 2.OA.A.1 Phase B — kill the last even. Apply case (iii) once more: take the remaining $1$

Review

Reasonableness: Two independent ceilings — "count $\equiv 2 \pmod 3$" and "final count $\le$ starting odd count $= 1012$" — leave only $1010$ among the choices, and the explicit recipe lands on exactly $1010$. Sanity: total moves used $= 338$, total count drop $= 338 \times 3 = 1014$, and $2024 - 1014 = 1010$, matching $N$. Also $1010 \equiv 2 \pmod 3$, consistent with Pattern 1. Both ceilings are met with equality, so (A) is both an upper bound and achievable.

Alternative: Tool #3 (Eliminate Possibilities) standing alone: just test the five choices against the mod-$3$ rule of Pattern 1 — that already discards (B), (C), (E). Then a one-line check of Pattern 2 ("odd count never grows") rules out (D). No construction is needed if you trust the existence claim, but the recipe above makes the achievability concrete.

CCSS standards used (min grade 4)

  • 2.OA.C.3 Determine whether a group of objects has an odd or even number (Counting that the starting board has $1012$ evens and $1012$ odds, and tracking the parity of sums and products of four numbers.)
  • 4.OA.C.5 Generate a number or shape pattern following a given rule (Recognizing that the total board count drops by exactly $3$ each move, so the final count is congruent to $2024 \equiv 2 \pmod 3$.)
  • 4.OA.B.4 Find all factor pairs and recognize multiples; determine prime or composite (Testing each of the five answer choices against divisibility by $3$ to keep only $1010$ and $1013$.)
  • 1.NBT.B.3 Compare two two-digit numbers using symbols (Comparing the final count to the starting odd count $1012$ to rule out $1013$.)
  • 3.OA.A.3 Solve multiplication and division word problems within 100 (Computing $1012 = 3 \times 337 + 1$ to plan how many EEEO-sum moves clear all but one even.)
  • 2.OA.A.1 Solve one- and two-step word problems using addition and subtraction within 100 (Bookkeeping the final odd count: $1012 - 3 + 1 = 1010$ after the last EOOO-sum move.)

⭐ This AMC 10 problem only needs Grade 4 "continue-the-pattern" rules — count drops by $3$ each move, odd count never grows — that you already know!

⭐ This AMC 10 problem only needs Grade 4 "continue-the-pattern" rules — count drops by $3$ each move, odd count never grows — that you already know!