AMC 10 · 2025 · #3

Grade 4 algebra
pattern-recognitionsequences-geometricdigit-sum easier-related-problem ↑ Prerequisites: pattern-recognition
📏 Medium solution 💡 2 insights
📘 View easy version →
Problem
A triangle is built like Pascal's Triangle. The first row is just 10, and the second row is 10 followed by 1. In every row after that, the first number is 10 and the last number is 1, and every other number is the sum of the two numbers directly above it. So the first four rows read 10; then 10, 1; then 10, 11, 1; then 10, 21, 12, 1. What is the sum of the digits of the sum of the numbers in the 11th row?

Pick an answer.

(A)
11
(B)
13
(C)
14
(D)
16
(E)
17

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

How to solve
Strategy Look for a Pattern

Building all eleven rows just to add them is heavy, so Tool #9 (Solve an Easier Related Problem) computes the totals of the first few short rows instead. Those totals expose a clean doubling rule, which Tool #5 (Look for a Pattern) extends straight to row 11 without ever writing the giant middle rows. Tool #7 (Identify Subproblems) keeps the two-stage question tidy: first find the row's total, then separately add the digits of that total.

1STEP 1

Add up the first few short rows

Total the short rows already drawn: 10, then 11, then 22, then 44; building row 5 gives 88.

S₁=10, S₂=11, S₃=22, S₄=44, S₅=88
2STEP 2

Spot the doubling rule

From row 2 on, each total is exactly double the one before: 11, 22, 44, 88 — every number feeds two numbers below.

S_n+1=2S_n for n ≥ 2
3STEP 3

Double from row 2 up to row 11

Row 2 totals 11, and reaching row 11 takes 9 more doublings: 11 times 512 = 5632.

S₁₁=11 × 512 = 5632
4STEP 4

Add the digits of the total

The ask is the digit sum, not the total itself: 5+6+3+2 = 16, which is choice (D).

5+6+3+2=16 → (D)
Answer
16
The doubling rule can be checked directly against the given rows: 11→22→44 matches rows 2, 3, 4 exactly, so trusting it for the later rows is safe. Counting the doublings is the only place to slip: row 2 is the 11, and rows 3 through 11 are nine more doublings, landing on 5632. Its digits add to 16, which is one of the listed choices, and every wrong choice (11,13,14,17) fails to be the digit sum of 5632.
💡Key takeaway

Once you notice the row totals just keep doubling, jump straight to the 11th total, then remember to add its digits.

  • Add up the first few short rows
  • Spot the doubling rule
  • Double from row 2 up to row 11
  • Add the digits of the total