Patterns & Reasoning

Problem

Sum consecutive numbers via the middle

We must add six numbers that increase by 1 each time: 251, 252, 253, 254, 255, and 256, and report their total.
OperationsBase-ten numbers
Your answer
How to solve
Strategy Look for a Pattern — Consecutive numbers have a balancing pattern: pairing the smallest with the largest gives equal partial sums. Spotting this turns six additions into a simple multiplication.
1STEP 1

Pair from the outside in

Pair the first with the last, the second with the fifth, and the third with the fourth. Each pair adds to the same total.

251+256 = 507, 252+255 = 507, 253+254 = 507
2STEP 2

Count the equal pairs

Six numbers split into three pairs, and every pair equals 507. So the total is three copies of 507.

507 × 3
3STEP 3

Multiply to get the sum

Compute 507 times 3 to get the final total.

507 × 3 = 1521
Answer
1521
507 × 3 = 1521
The six numbers cluster around 253.5, so the sum should be near 6 x 253.5 = 1521. Our answer 1521 matches exactly, and it is an even total which fits adding six numbers around 253. The magnitude is sensible.
Takeaway

Pair the ends of consecutive numbers - they all match, so you just multiply one pair by how many pairs there are!

  • Pair from the outside in
  • Count the equal pairs
  • Multiply to get the sum
Where next?
Another one like thissuggested
Step back and solidifysuggested

▶ Practice — 11 problems