AMC 10 · 2010 · #17

Grade 7 counting
systematic-enumerationcombinations-basicsymmetry-argument casework ↑ Prerequisites: systematic-enumeration
📏 Long solution 💡 3 insights
Problem
Nine digits fill a square grid so every row and every column increases. Count the grids.

Pick an answer.

(A)
18
(B)
24
(C)
36
(D)
42
(E)
60
How to solve
Strategy Make a Systematic List

"How many arrangements" is the classic trigger for Tool #2 (Make a Systematic List). Nine digits in nine cells is too many to list blindly, so first Tool #14 (Extreme Principle) pins the forced cells: the top-left must be the smallest digit and the bottom-right the largest, and the center is squeezed to just three possible values. That splits the count into a few clean cases — Tool #7 (Identify Subproblems) — organized by the center digit. Inside each case the remaining digits fall into small ordered groups that are easy to count with the multiplication principle. Tool #5 (Look for a Pattern) then reuses one case for its mirror image, halving the work.

1STEP 1

Pin the two corners

Two opposite corners are forced immediately.

a = 1, i = 9
2STEP 2

Trap the center

The centre is trapped in a band of three.

a,b,d < e < f,h,i → 4 ≤ e ≤ 6
3STEP 3

Split by the center digit

So the count splits by the centre digit.

Total = N(e=4) + N(e=5) + N(e=6)
4STEP 4

Count center = 4

The smallest centre gives 12 grids.

N(e=4) = 2 × C(4, 2) = 2 × 6 = 12
5STEP 5

Count center = 6 by symmetry

Symmetry gives the largest centre 12 too.

k ↦ 10-k → N(e=6) = N(e=4) = 12
6STEP 6

Count center = 5

The middle centre gives 18.

N(e=5) = (3 × 3) + (3 × 3) = 9 + 9 = 18
7STEP 7

Add the cases

Adding the cases gives 42, choice (D).

12 + 18 + 12 = 42 → (D)
Answer
42
The three cases e=4,5,6 are exhaustive (the center can be nothing else) and mutually exclusive (a grid has one center digit), so adding 12+18+12=42 is legitimate. The symmetry between e=4 and e=6 shows up as equal counts, a good internal consistency check. The total 42 matches choice (D), and it also agrees with the standard result that the number of increasing 3×3 fillings (standard Young tableaux of a 3×3 square) is 9!/(5·4·3·4·3·2·3·2·1) = 362880/8640 = 42.
💡Key takeaway

Lock the forced cells first — 1 in the top-left, 9 in the bottom-right, and the center can only be 4, 5, or 6 — then count each center case separately: 12+18+12=42.

  • Pin the two corners
  • Trap the center
  • Split by the center digit
  • Count center = 4
  • Count center = 6 by symmetry
  • Count center = 5
  • Add the cases