AMC 10 · 2011 · #4

Grade 4 counting
sequences-arithmetictelescoping-sum pattern-recognitioncomplementary-counting ↑ Prerequisites: sequences-arithmetic
📏 Short solution 💡 2 insights
📘 View easy version →
Problem
Two lists of even numbers are added up: X = 10+12+14+…+100 and Y = 12+14+16+…+102. Find how much bigger the second total is than the first, that is Y-X.

Pick an answer.

(A)
92
(B)
98
(C)
100
(D)
102
(E)
112

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

How to solve
Strategy Look for a Pattern

Adding up 46 numbers twice would be slow and error-prone. Tool #5 (Look for a Pattern) spots the real structure instead: each number in Y is exactly 2 more than the matching number in X, so the whole difference is just (number of terms) times 2. Tool #7 (Identify Subproblems) handles the one supporting job — counting how many terms there are. Tool #16 (Change Focus) gives a fast cross-check by lining the two sums up and cancelling the block they share.

1STEP 1

Match the lists term by term

Line the two sums up and pair them term by term: every term of Y is exactly 2 more than its partner in X.

12-10 = 2, 14-12 = 2, 16-14 = 2, …
2STEP 2

Count how many terms there are

Count X's terms: (100-10) ÷ 2 = 45, plus 1 for the starting number, so 46 terms — and Y has just as many.

(100-10)/2 + 1 = 45 + 1 = 46 terms
3STEP 3

Add up the differences

All 46 pairs are ahead by 2, so Y-X is just the total of those gaps: 46 × 2 = 92, choice (A).

Y-X = 46 × 2 = 92 → (A)
Answer
92
The difference should be small compared with the totals, because the two lists are almost identical — only their ends differ. A per-term gap of 2 across 46 terms lands at 92, which is choice (A). The larger choices (98, 100, 102, 112) would each need a per-term gap bigger than 2 or more than 46 terms, and neither is true.
💡Key takeaway

When two lists are the same except shifted over, don't add them up — just multiply how far each number moved by how many numbers there are.

  • Match the lists term by term
  • Count how many terms there are
  • Add up the differences