This site is a work in progress. New lessons are added regularly.
Contact us
Arithmetic Series
Learning goals
Read ∑k=1nak as a sum with index and limits
Prove Sn=2n(a1+an) by reversing and adding
Use the d form when the last term is unknown
Count n−m+1 terms in a range
Derive 1+2+⋯+n=2n(n+1)
From a sequence to a series
A sequence is an ordered list of terms. A series is what you get when you add those terms
together. The two ideas are close but not the same: the sequence 2,5,8,11 is a list, while the
series 2+5+8+11 is a single number, the sum 26.
When the terms come from an arithmetic sequence, their sum is called a finite arithmetic series. We
write Sn for the sum of the first n terms:
Sn=a1+a2+a3+⋯+an.
The subscript on Sn counts how many terms are being added. So S5 is the sum of the first five
terms, and S100 is the sum of the first hundred. The terms come from a sequence with a first term
a1 and a common difference d. Because of that structure, we will be able to fold this whole sum
into a short formula.
Summation notation
Writing out a1+a2+⋯+an every time is clumsy, so mathematicians pack it into a single
symbol built from the Greek capital letter sigma, ∑. The expression
k=1∑nak
is read “the sum of ak as k runs from 1 to n,” and it is just shorthand for the same expanded
sum you already know:
k=1∑nak=a1+a2+a3+⋯+an.
Every part of the symbol has a job:
The index is the letter k, a counter that steps through the whole numbers one at a time.
The lower limit is the number below the sigma, here 1, which says where the counter starts.
The upper limit is the number above the sigma, here n, which says where the counter stops.
The summand is the expression after the sigma, here ak, the thing being added, written once with
the index inside it.
To turn a sigma back into an ordinary sum, you substitute each value of the index in turn and add the
results. For instance, with the summand 2k+1 and the index running from 1 to 4,
The letter chosen for the index does not matter, because it vanishes once the sum is written out:
∑k=14(2k+1) and ∑i=14(2i+1) are the very same number. For that reason the index is
often called a dummy variable. A finite arithmetic series is simply this notation applied to an
arithmetic sequence, with ak=a1+(k−1)d as the summand:
Sn=k=1∑nak=a1+a2+⋯+an.
The reverse-and-add shortcut
Adding the terms one by one always works, but it is slow. The clever idea is to write the sum twice, once
forward and once backward, and add the two copies together. When the terms are evenly spaced, the
backward copy lines up with the forward copy so neatly that the total becomes easy.
Write the series out in order, from the first term to the last:
Sn=a1+a2+a3+⋯+an−1+an.
Now write the very same sum a second time, but with the terms listed in reverse order, from the last term
back to the first. The total is unchanged, because addition does not care about the order:
Sn=an+an−1+an−2+⋯+a2+a1.
Add the two lines column by column. The first column is a1+an. Watch what happens as you move one
column to the right. The top entry climbs by one common difference d (from a1 to a2), while the
bottom entry drops by the same d (from an to an−1). The gain and the loss cancel, so the column
total never changes. Every single column adds to the same value, a1+an.
There are n columns, one for each term, so adding the two lines produces n copies of a1+an:
2Sn=n(a1+an).
The left side is two copies of the series, so dividing both sides by 2 isolates one copy:
Sn=2n(a1+an).
∎
This formula has a reading worth remembering. Since 2a1+an is the average of the first
and last terms, the sum equals the number of terms times that average. Evenly spaced terms balance around
their middle, so replacing all of them by their average and multiplying by how many there are gives the
exact total.
Writing the series above its own reverse lines the terms up so every column totals the same first-plus-last value. Here the five columns each add to 16, so twice the sum is 5 times 16, which is 80, and the sum is 40.
A second form using the common difference
Sometimes you do not know the last term an, only the first term and the common difference. You can
still find the sum by replacing an with its formula from the previous lesson, an=a1+(n−1)d:
This is the same total reached from a different starting point. The two forms answer to two situations.
Use Sn=2n(a1+an) when you already know the first and last terms. Use
Sn=2n(2a1+(n−1)d) when you know the first term and the common difference but not
the last term.
Worked example 1Sum the first 25 terms
Find the sum of the first 25 terms of 3,7,11,15,…
The first term is a1=3 and the common difference is d=7−3=4. You know a1 and d but not
the last term, so reach for the form that needs only those two:
S25=225(2⋅3+(25−1)⋅4)=225(6+96)=225⋅102.
Since 102÷2=51,
S25=25×51=1275.
You can confirm this with the other form by first finding the last term. The 25th term is
a25=3+(25−1)⋅4=3+96=99, so
S25=225(3+99)=225×102=1275.
Both routes give 1275, which is a good habit for catching slips.
Worked example 2The sum 1 + 2 + 3 + ... + 100
Add all the whole numbers from 1 to 100.
This is an arithmetic series with first term a1=1, last term a100=100, and n=100 terms.
Both the first and last terms are known, so use
S100=2n(a1+an)=2100(1+100).
The first and last terms add to 101, and there are 100 of them, so
S100=2100×101=50×101=5050.
The pairing view says the same thing: match 1 with 100, 2 with 99, 3 with 98, and so on down
the line. That makes 50 pairs, each adding to 101, and 50×101=5050.
Check your understanding
An arithmetic series has first term a1=5, last term an=95, and n=10 terms. What is the sum S10?
You know the first term, the last term, and how many terms there are, so use Sn=2n(a1+an) with n=10.
S10=210(5+95)=210×100=500
The first and last terms average to 50, and ten terms averaging 50 total 500.
Summing a range of terms
Not every series starts at the first term. To add, say, the 10th through the 30th terms, two ideas
work, and it is worth seeing both. First, any run of consecutive terms of an arithmetic sequence is itself
an arithmetic series. So the same formula applies, as long as you use that run’s own first term, its own
last term, and the right count. The number of terms from position m to position n is n−m+1, not
n−m, because both endpoints are counted. Second, you can find the range sum by subtracting partial
sums. The terms from m to n are everything up to term n with everything up to term m−1 removed,
so their total is Sn−Sm−1.
Worked example 3Sum the 10th through 30th terms
For the arithmetic sequence with a1=4 and d=3, find the sum of the terms from the 10th through
the 30th.
Start with the explicit formula for a single term, an=a1+(n−1)d=4+3(n−1). The two end terms
of the range are
a10=4+3(10−1)=4+27=31,a30=4+3(30−1)=4+87=91.
Count the terms carefully. From position 10 to position 30 there are 30−10+1=21 terms, because
both ends are included. This range is its own arithmetic series with first term 31, last term 91, and
21 terms:
S=221(31+91)=221×122=21×61=1281.
The subtraction method is a good check. The sum of the first 30 terms is
S30=230(4+91)=1425, and the sum of the first 9 terms is
S9=29(4+28)=144, using a9=4+3(9−1)=28. Taking one from the other strips off
terms 1 through 9 and leaves exactly terms 10 through 30:
S30−S9=1425−144=1281.
Both methods land on 1281.
Series in the real world
Worked example 4Seats in a section
A theater section has 12 rows. The front row holds 18 seats, and each row behind it holds 2 more
seats than the row in front. How many seats are in the whole section?
The seat counts by row form an arithmetic sequence with a1=18 and d=2, and the section total is
the arithmetic series of those 12 row counts. First find the back row, the 12th term:
a12=18+(12−1)⋅2=18+22=40.
The rows run from 18 seats up to 40 seats, and there are 12 of them, so the total is
S12=212(18+40)=212×58=6×58=348 seats.
Adding the twelve row counts one at a time would give the same 348, but the series formula reaches it in
a single step. The very same method totals stacked logs, the rows of a stadium, or a saving plan that
grows by a fixed amount each period.
Common mistakes
Practice
Multiple Choice Questions (MCQ)
Progressively harder sets of questions. Each opens on its own page.
Longer questions in parts, to be worked out on paper. Progressive hints, the answer on its
own so you can check yourself and try again, then the full worked solution, plus a rubric
to mark your own work against.
A teacher who wants an hour of quiet sets the class a very long addition. That, the story goes, is how
the shortcut in this lesson was found.
The boy was Carl Friedrich Gauss, later one of the great mathematicians, and he was about nine years
old. His schoolmaster in Brunswick, a German town, told the class to add a long run of evenly spaced
numbers. Gauss laid his slate on the table almost at once, with a single number written on it.
What had he noticed? Take the list from one to a hundred, the version usually attached to the story. The
smallest number and the largest add to a hundred and one. So do the second smallest and the second
largest, because one climbs by exactly as much as the other falls. Fifty such pairs, each worth a
hundred and one, come to five thousand and fifty. He never had to add anything a hundred times.
Treat the details of that afternoon gently. The earliest published account appeared in 1856, the year
after Gauss died. It does not say which numbers the schoolmaster chose. Later tellers supplied them, and
different tellers supply different ones. The pairing survives every version, though, and it is exactly
what the reverse-and-add proof performs. Writing the series above its own reverse builds all the pairs
at once. That is why every column in that proof carries the same total.