AMC 10 · 2010 · #18

Grade 8 countinggeometry-2d
lattice-pathscombinations-basicsymmetry-argument identify-subproblemscasework ↑ Prerequisites: lattice-paths
📏 Long solution 💡 3 insights
Problem
Every step moves one unit right or up, and the path must stay off a forbidden central square. Count the paths.

Pick an answer.

(A)
92
(B)
144
(C)
1568
(D)
1698
(E)
12,800
How to solve
Strategy Identify Subproblems

Counting the good paths directly is hopeless because the ban is a condition on all 17 points of a path at once. The fix is to find one point per path that decides everything (Tool #7 Identify Subproblems). Tracking s = x+y (Tool #4) shows s climbs by exactly 1 per step, so every path meets the line x+y=0 at exactly one point M — a built-in label. Listing the possible M (Tool #2) leaves only six legal choices. The move that makes the whole plan pay off is a boundary check (Tool #14): for each legal M, the two legs are pinned into a half-plane that misses the forbidden block entirely, so no path through a legal M ever needs to be thrown away. That turns each case into a plain product of two grid-path counts, and a reflection in y=x halves the work.

1STEP 1

Turn the square into nine banned points

The forbidden region is really nine lattice points.

banned = {(x,y) : x ∈ {-1,0,1}, y ∈ {-1,0,1}}, |banned| = 9
2STEP 2

Each step raises x+y by exactly one

Each step raises the coordinate sum by one.

s₀ = -8, s_k = -8 + k, s₁₆ = 8 ⟹ s_k = 0 for k = 8 only
3STEP 3

Six legal crossing points

So each path crosses the middle diagonal once.

M ∈ {(-4,4), (-3,3), (-2,2), (2,-2), (3,-3), (4,-4)}
4STEP 4

A legal crossing forces a legal path

A legal crossing point makes the whole path legal.

M=(-2,2): leg 1 keeps x ≤ -2, leg 2 keeps y ≥ 2, banned needs x ≥ -1 and y ≤ 1
5STEP 5

Count the three upper-left groups

One side of the picture holds 849 paths.

1 + C(8, 1)² + C(8, 2)² = 1 + 64 + 784 = 849
6STEP 6

Mirror the picture and add

Mirroring doubles it to 1698, choice (D).

(x,y) ↦ (y,x) ⟹ total = 2(1 + C(8, 1)² + C(8, 2)²) = 2 · 849 = 1698 → (D)
Answer
1698
Without any restriction there are C(16, 8) = 12870 paths, and 1698 is about 13% of them — believable, since the forbidden block sits dead centre and only the two thin detours survive. The distractors confirm the structure. Choice (E) 12,800 would mean only 70 paths are blocked, impossible when the block straddles the middle. Choice (C) 1568 = 2 · 784 is exactly what you get by counting only the (-2,2) and (2,-2) crossings and forgetting the two thinner outer routes. Choices (A) 92 and (B) 144 are far too small — the (-2,2) group alone already has 784 paths. One more check on the crux: a path crossing at (-1,1) would land on a banned point at step 8, so excluding those three crossings is not an approximation, it is forced.
💡Key takeaway

Every step raises x+y by one, so each path meets the line x+y=0 exactly once; sort paths by that crossing point, check that a legal crossing already traps both halves away from the forbidden block, and count 2(1 + 8² + 28²) = (D) 1698.

  • Turn the square into nine banned points
  • Each step raises x+y by exactly one
  • Six legal crossing points
  • A legal crossing forces a legal path
  • Count the three upper-left groups
  • Mirror the picture and add