A triangular array of coins has coin in the first row, coins in the second row, coins in the third row, and so on up to coins in the th row. What is the sum of the digits of ?
- A)
- B)
- C)
- D)
- E)
Answer
D
Key insight
The rows total N(N+1)/2, so N(N+1) = 4032 = 63 * 64, giving N = 63 and digit sum 9.
Solution
The total number of coins is , so
Since is a product of consecutive integers, is just below . As and , try : indeed .
The sum of the digits of is . The answer is .
Why this works
Triangular numbers are the standard model for "one more each row." Once the equation is written, a quick square-root estimate pins without solving a quadratic; sits between and , so .
The trap
Answering 63 (or its digit sum for a nearby N like 64) instead of the digit sum of N, or misestimating the square root of 4032.
Common mistakes
- Answering 63 (or its digit sum for a nearby N like 64) instead of the digit sum of N, or misestimating the square root of 4032.
- Using or for the triangular sum.
Techniques
Bound the quantity above/below or estimate to pin it down · Set up the equation/formula and compute; no special trick needed