This site is a work in progress. New lessons are added regularly. Contact us

Arithmetic Series

Learning goals

  • Read k=1nak\sum_{k=1}^{n} a_k as a sum with index and limits
  • Prove Sn=n(a1+an)2S_n = \tfrac{n(a_1 + a_n)}{2} by reversing and adding
  • Use the dd form when the last term is unknown
  • Count nm+1n - m + 1 terms in a range
  • Derive 1+2++n=n(n+1)21 + 2 + \cdots + n = \tfrac{n(n+1)}{2}

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,112, 5, 8, 11 is a list, while the series 2+5+8+112 + 5 + 8 + 11 is a single number, the sum 2626.

When the terms come from an arithmetic sequence, their sum is called a finite arithmetic series. We write SnS_n for the sum of the first nn terms:

Sn=a1+a2+a3++an.S_n = a_1 + a_2 + a_3 + \cdots + a_n.

The subscript on SnS_n counts how many terms are being added. So S5S_5 is the sum of the first five terms, and S100S_{100} is the sum of the first hundred. The terms come from a sequence with a first term a1a_1 and a common difference dd. Because of that structure, we will be able to fold this whole sum into a short formula.

Summation notation

Writing out a1+a2++ana_1 + a_2 + \cdots + a_n every time is clumsy, so mathematicians pack it into a single symbol built from the Greek capital letter sigma, \sum. The expression

k=1nak\sum_{k=1}^{n} a_k

is read “the sum of aka_k as kk runs from 11 to nn,” and it is just shorthand for the same expanded sum you already know:

k=1nak=a1+a2+a3++an.\sum_{k=1}^{n} a_k = a_1 + a_2 + a_3 + \cdots + a_n.

Every part of the symbol has a job:

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+12k + 1 and the index running from 11 to 44,

k=14(2k+1)=(21+1)+(22+1)+(23+1)+(24+1)=3+5+7+9=24.\begin{aligned} \sum_{k=1}^{4} (2k + 1) &= (2\cdot 1 + 1) + (2\cdot 2 + 1) + (2\cdot 3 + 1) + (2\cdot 4 + 1) \\ &= 3 + 5 + 7 + 9 = 24. \end{aligned}

The letter chosen for the index does not matter, because it vanishes once the sum is written out: k=14(2k+1)\sum_{k=1}^{4}(2k+1) and i=14(2i+1)\sum_{i=1}^{4}(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+(k1)da_k = a_1 + (k-1)d as the summand:

Sn=k=1nak=a1+a2++an.S_n = \sum_{k=1}^{n} a_k = a_1 + a_2 + \cdots + a_n.

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.

Reverse and add: 2Sn=n(a1+an)2S_n = n(a_1 + a_n)#

Write the series out in order, from the first term to the last:

Sn=a1+a2+a3++an1+an.S_n = a_1 + a_2 + a_3 + \cdots + a_{n-1} + a_n.

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+an1+an2++a2+a1.S_n = a_n + a_{n-1} + a_{n-2} + \cdots + a_2 + a_1.

Add the two lines column by column. The first column is a1+ana_1 + a_n. Watch what happens as you move one column to the right. The top entry climbs by one common difference dd (from a1a_1 to a2a_2), while the bottom entry drops by the same dd (from ana_n to an1a_{n-1}). The gain and the loss cancel, so the column total never changes. Every single column adds to the same value, a1+ana_1 + a_n.

There are nn columns, one for each term, so adding the two lines produces nn copies of a1+ana_1 + a_n:

2Sn=n(a1+an).2 S_n = n\,(a_1 + a_n).

The left side is two copies of the series, so dividing both sides by 22 isolates one copy:

Sn=n(a1+an)2.S_n = \frac{n(a_1 + a_n)}{2}.

This formula has a reading worth remembering. Since a1+an2\frac{a_1 + a_n}{2} 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.

Reverse and add for 2 + 5 + 8 + 11 + 14A top row holds 2, 5, 8, 11, 14 and the row below holds the reverse 14, 11, 8, 5, 2. Every column sums to 16, and there are five columns, so twice the series is 80 and the series is 40.S =+S =258111414118521616161616
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 ana_n, only the first term and the common difference. You can still find the sum by replacing ana_n with its formula from the previous lesson, an=a1+(n1)da_n = a_1 + (n-1)d:

Sn=n(a1+an)2=n(a1+a1+(n1)d)2=n2(2a1+(n1)d).S_n = \frac{n(a_1 + a_n)}{2} = \frac{n\big(a_1 + a_1 + (n-1)d\big)}{2} = \frac{n}{2}\big(2a_1 + (n-1)d\big).

This is the same total reached from a different starting point. The two forms answer to two situations. Use Sn=n(a1+an)2S_n = \frac{n(a_1 + a_n)}{2} when you already know the first and last terms. Use Sn=n2(2a1+(n1)d)S_n = \frac{n}{2}\big(2a_1 + (n-1)d\big) when you know the first term and the common difference but not the last term.

Worked example 1 Sum the first 25 terms

Find the sum of the first 2525 terms of 3,7,11,15,3, 7, 11, 15, \ldots

The first term is a1=3a_1 = 3 and the common difference is d=73=4d = 7 - 3 = 4. You know a1a_1 and dd but not the last term, so reach for the form that needs only those two:

S25=252(23+(251)4)=252(6+96)=252102.S_{25} = \frac{25}{2}\big(2\cdot 3 + (25 - 1)\cdot 4\big) = \frac{25}{2}(6 + 96) = \frac{25}{2}\cdot 102.

Since 102÷2=51102 \div 2 = 51,

S25=25×51=1275.S_{25} = 25 \times 51 = 1275.

You can confirm this with the other form by first finding the last term. The 2525th term is a25=3+(251)4=3+96=99a_{25} = 3 + (25 - 1)\cdot 4 = 3 + 96 = 99, so

S25=25(3+99)2=25×1022=1275.S_{25} = \frac{25(3 + 99)}{2} = \frac{25 \times 102}{2} = 1275.

Both routes give 12751275, which is a good habit for catching slips.

Worked example 2 The sum 1 + 2 + 3 + ... + 100

Add all the whole numbers from 11 to 100100.

This is an arithmetic series with first term a1=1a_1 = 1, last term a100=100a_{100} = 100, and n=100n = 100 terms. Both the first and last terms are known, so use

S100=n(a1+an)2=100(1+100)2.S_{100} = \frac{n(a_1 + a_n)}{2} = \frac{100\,(1 + 100)}{2}.

The first and last terms add to 101101, and there are 100100 of them, so

S100=100×1012=50×101=5050.S_{100} = \frac{100 \times 101}{2} = 50 \times 101 = 5050.

The pairing view says the same thing: match 11 with 100100, 22 with 9999, 33 with 9898, and so on down the line. That makes 5050 pairs, each adding to 101101, and 50×101=505050 \times 101 = 5050.

Check your understanding

An arithmetic series has first term a1=5a_1 = 5, last term an=95a_n = 95, and n=10n = 10 terms. What is the sum S10S_{10}?

Answer choices

Summing a range of terms

Not every series starts at the first term. To add, say, the 1010th through the 3030th 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 mm to position nn is nm+1n - m + 1, not nmn - m, because both endpoints are counted. Second, you can find the range sum by subtracting partial sums. The terms from mm to nn are everything up to term nn with everything up to term m1m - 1 removed, so their total is SnSm1S_n - S_{m-1}.

Worked example 3 Sum the 10th through 30th terms

For the arithmetic sequence with a1=4a_1 = 4 and d=3d = 3, find the sum of the terms from the 1010th through the 3030th.

Start with the explicit formula for a single term, an=a1+(n1)d=4+3(n1)a_n = a_1 + (n-1)d = 4 + 3(n - 1). The two end terms of the range are

a10=4+3(101)=4+27=31,a30=4+3(301)=4+87=91.a_{10} = 4 + 3(10 - 1) = 4 + 27 = 31, \qquad a_{30} = 4 + 3(30 - 1) = 4 + 87 = 91.

Count the terms carefully. From position 1010 to position 3030 there are 3010+1=2130 - 10 + 1 = 21 terms, because both ends are included. This range is its own arithmetic series with first term 3131, last term 9191, and 2121 terms:

S=21(31+91)2=21×1222=21×61=1281.S = \frac{21(31 + 91)}{2} = \frac{21 \times 122}{2} = 21 \times 61 = 1281.

The subtraction method is a good check. The sum of the first 3030 terms is S30=30(4+91)2=1425S_{30} = \frac{30(4 + 91)}{2} = 1425, and the sum of the first 99 terms is S9=9(4+28)2=144S_{9} = \frac{9(4 + 28)}{2} = 144, using a9=4+3(91)=28a_9 = 4 + 3(9 - 1) = 28. Taking one from the other strips off terms 11 through 99 and leaves exactly terms 1010 through 3030:

S30S9=1425144=1281.S_{30} - S_{9} = 1425 - 144 = 1281.

Both methods land on 12811281.

Series in the real world

Worked example 4 Seats in a section

A theater section has 1212 rows. The front row holds 1818 seats, and each row behind it holds 22 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=18a_1 = 18 and d=2d = 2, and the section total is the arithmetic series of those 1212 row counts. First find the back row, the 1212th term:

a12=18+(121)2=18+22=40.a_{12} = 18 + (12 - 1)\cdot 2 = 18 + 22 = 40.

The rows run from 1818 seats up to 4040 seats, and there are 1212 of them, so the total is

S12=12(18+40)2=12×582=6×58=348 seats.S_{12} = \frac{12(18 + 40)}{2} = \frac{12 \times 58}{2} = 6 \times 58 = 348 \text{ seats}.

Adding the twelve row counts one at a time would give the same 348348, 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.

Free Response Questions (FRQ)

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.

Free response Work it out on paper 5 questions Start →
More practice (optional)

Extra sets, as hard as the Challenge set. Each one opens on its own page.

More resources (optional)

Other explanations of this lesson, if you want a second take.

A bit of history (Optional)

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.