Summing Consecutive Numbers
Adding 1 + 2 + ... + 200 by hand would take all afternoon. One formula does it in a line, and two small adjustments handle sums that start elsewhere or count in tens.
Adding 1 + 2 + ... + 200 by hand would take all afternoon. One formula does it in a line, and two small adjustments handle sums that start elsewhere or count in tens.
Adding by hand would take all afternoon. One formula does it in a single line — and with two small adjustments the same formula handles sums that start somewhere other than
, or count in tens.
The reason is worth a moment. Pair the numbers from to
from the outside in:
That is the formula in disguise: pairs, each worth
. Multiplying them gives
.
a)
b) The first natural numbers
Always halve the even factor before multiplying. is far easier than working out
.
Find .
Any evenly spaced sum can be reduced this way. Pull out the step size and what remains is an ordinary consecutive sum.
Evaluate .
The order of operations still governs everything. Resolve the bracket to a single number, then apply the power.
a)
b)
Note the second subtraction stops at , not
. The sum is meant to include
, so only the numbers strictly below it are removed. Using
here is the commonest slip in this topic.