AMC 10 · 2009 · #11

Grade 7 arithmetic
permutations-basicsystematic-enumerationparity systematic-enumeration ↑ Prerequisites: permutations-basic
📏 Short solution 💡 2 insights
Problem
Using exactly the seven digits 2, 2, 3, 3, 5, 5, 5, count how many 7-digit palindromes (numbers that read the same left-to-right and right-to-left) can be built.

Pick an answer.

(A)
6
(B)
12
(C)
24
(D)
36
(E)
48

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

How to solve
Strategy Make a Systematic List

The question asks "how many ways," which points to Tool #2 (Make a Systematic List). But listing all 7-digit numbers blindly is hopeless, so first use Tool #5 (Look for a Pattern) to see that a palindrome is fixed by just its first half plus the middle digit. Then Tool #3 (Eliminate Possibilities) settles which digit is forced into the middle. What remains is a small, clean count of arrangements that Tool #2 finishes off.

1STEP 1

See the palindrome's mirror structure

A 7-digit palindrome is d₁d₂d₃d₄d₃d₂d₁, so d₁, d₂, d₃ each appear twice while only d₄ stands alone in the middle.

d₁ d₂ d₃ d₄ d₃ d₂ d₁
2STEP 2

Force the middle digit

The 2s and 3s come in pairs, but three 5s is odd, so the lone middle is forced to d₄ = 5, leaving {d₁,d₂,d₃} = {2,3,5}.

counts: 2{:}2, 3{:}2, 5{:}3 → d₄=5, {d₁,d₂,d₃}={2,3,5}
3STEP 3

Count the arrangements

Three different values in three front slots give 3! = 6 orders, and each builds exactly one palindrome — choice (A).

3! = 3 × 2 × 1 = 6 → (A)
Answer
6
List all six and check each uses two 2s, two 3s, three 5s: 2355532, 2535352, 3255523, 3525253, 5235325, 5325235. Every one is a palindrome and uses the exact digit supply, and there are no others because the front trio (d₁,d₂,d₃) has only 6 orderings. So 6 is right, matching (A).
💡Key takeaway

A palindrome is a mirror, so pick only the front half and the middle — the odd-count digit takes the center, and the rest is just counting the ways to order what's left.

  • See the palindrome's mirror structure
  • Force the middle digit
  • Count the arrangements