AMC 10 · 2002 · #22

Grade 8 number-theory
perfect-squarespattern-recognitionfloor-function pattern-recognition ↑ Prerequisites: perfect-squares
📏 Long solution 💡 3 insights
Problem
You start with 100 tiles numbered 1 through 100. One operation does two things: first throw away every tile whose number is a perfect square (1,4,9,…), then renumber the tiles that are left 1,2,3,… with no gaps. Repeat the whole operation over and over. Count how many operations it takes until only one tile remains.

Pick an answer.

(A)
10
(B)
11
(C)
18
(D)
19
(E)
20

AMC 10 2002 problem © Mathematical Association of America (MAA AMC). Reproduced for educational use.

How to solve
Strategy Look for a Pattern

Simulating all the way from 100 tile-by-tile is slow, so tool #5 (Look for a Pattern) leads: run the operation a couple of times and watch the count drop from 100. The key thing to notice is that only the number of tiles matters, because after each step the tiles are renumbered 1,2,3,… again. To see WHY the pattern holds, tool #4 (Introduce a Variable) lets us call the count n and note that one operation removes exactly the perfect squares ≤ n. Tool #9 (Solve an Easier Related Problem) sharpens this: test what happens when the count is a perfect square n=k², and a clean rule appears — two operations always turn k² tiles into (k-1)² tiles. Then counting the operations is just counting how many times you step a perfect square down from 10² to 1².

1STEP 1

Run the operation twice and watch the count

Only the count matters: 100 tiles hold 10 squares, leaving 90; 90 tiles hold 9 squares, leaving 81=9².

100 → 90 → 81; 100=10², 81=9²
2STEP 2

Count removals with a square root

Call the count n. The squares up to n are 1²,…,⌊√(n)⌋², so each operation strips ⌊√(n)⌋ tiles: n → n-⌊√(n)⌋. At n=90 it strips 9 tiles.

n ⟶ n-⌊√(n)⌋; ⌊√(90)⌋=9
3STEP 3

Two operations drop one perfect square

Try n=k²: dropping k leaves k²-k, just above (k-1)². The next drops k-1 and lands exactly on (k-1)²: two operations, one square down.

k² → k²-k → k²-2k+1=(k-1)²
4STEP 4

Step the squares down and count

The base falls 10²→9²→…→1², and 1²=1 tile is the stop: 9 drops × 2 operations each = 18, choice (C).

10²→ 9²→…→ 1²₉ drops, 9 × 2 = 18 → (C)
Answer
18
Simulate the count straight through to be sure: 100→ 90→ 81→ 72→ 64→ 56→ 49→ 42→ 36→ 30→ 25→ 20→ 16→ 12→ 9→ 6→ 4→ 2→ 1. Counting the arrows gives 18 operations, and every perfect-square value (81,64,49,36,25,16,9,4,1) shows up exactly where the two-step rule predicts. The answer 18 also sits sensibly among the choices: a naive guess might be 10 (once per starting square) or 20 (twice per square for ten squares), but the process ends at 1² after only 9 square-drops, so 18, not 20, is right.
💡Key takeaway

Only the tile count matters, and every two operations knock the perfect-square count down one step, so 10² tiles need 9 × 2=18 operations to reach a single tile.

  • Run the operation twice and watch the count
  • Count removals with a square root
  • Two operations drop one perfect square
  • Step the squares down and count