What is the sum of the digits of the square of ?
- A)
- B)
- C)
- D)
- E)
Answer
E
Key insight
Repunit squares form a palindrome that climbs 1, 2, ..., 9 and back down, so the digits sum to 2(1+...+8)+9 = 81.
Solution
Try small cases: , , . A string of ones squared (for ) gives the palindrome : the digits climb from to and then descend back to .
With ,
Its digit sum is
The answer is .
Why this works
Multiplying by itself stacks nine shifted copies of the number; column from the right receives one for each way to write as a sum of two positions, which is . Because no column reaches , there are no carries, and the pattern from small cases extends exactly up to nine ones.
Alternative approach
Since there are no carries, the digit sum equals the total number of products in the long multiplication, which is . Checking that all choices are multiples of (as they must be, since the number is divisible by ) does not narrow it down, so the pattern is needed.
The trap
Trusting a half-remembered pattern like 123456789 (sum 45) and forgetting the descending half of the palindrome.
Common mistakes
- Trusting a half-remembered pattern like 123456789 (sum 45) and forgetting the descending half of the palindrome.
- Extending the palindrome pattern to ten or more ones, where carries break it; here nine ones is exactly the last safe case.
Techniques
Compute small cases, spot the pattern, generalize