AMC 10 · 2010 · #9

Grade 4 number-theory
place-valuedigit-sumsystematic-enumeration bound-inequality-then-enumerate ↑ Prerequisites: place-value
📏 Medium solution 💡 2 insights
📘 View easy version →
Problem
A palindrome reads the same forwards and backwards, like 83438. A number x is a three-digit palindrome, and x+32 is a four-digit palindrome. Find the sum of the digits of x.

Pick an answer.

(A)
20
(B)
21
(C)
22
(D)
23
(E)
24

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

How to solve
Strategy Extreme Principle

The key pressure is the size jump: adding only 32 pushes a three-digit number up to four digits, so x must sit right at the top of the three-digit range. Pinning down that boundary shrinks the search to just a handful of large palindromes, and then each one can be tested directly by adding 32 and checking whether the result reads the same both ways.

1STEP 1

Force x near the top

Four digits means x+32 is at least 1000, so x is at least 968 — and at most 999.

x+32 ≥ 1000 → x ≥ 968
2STEP 2

List the palindromes there

First and last digit must match, so between 968 and 999 the palindromes are 969, 979, 989, 999.

969, 979, 989, 999
3STEP 3

Add 32 and check each

Adding 32 gives 1001, 1011, 1021, 1031 — only 969 lands on a palindrome, 1001.

969+32=1001, 979+32=1011, 989+32=1021, 999+32=1031
4STEP 4

Add the digits of x

With x=969, the digits give 9+6+9=24, which is choice (E).

9+6+9=24
Answer
24
Check the found number against every rule: 969 is a three-digit palindrome, and 969+32=1001 is a four-digit palindrome, so both conditions hold. The digit sum 24 is the largest option, which fits because x was forced to be near 999 where the digits are big. Only choice (E) is reachable.
💡Key takeaway

When a small addition forces a number into more digits, the starting number must be sitting right at the edge, so look there first.

  • Force x near the top
  • List the palindromes there
  • Add 32 and check each
  • Add the digits of x