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

Arithmetic Sequences

Learning goals

  • Index a sequence's terms by position
  • Find the common difference from consecutive terms
  • Apply an=a1+(n1)da_n = a_1 + (n-1)d for any term
  • Write the recursive rule beside the explicit one
  • Recover dd from two terms with ak=am+(km)da_k = a_m + (k-m)d
  • Solve for nn to test whether a value appears

Naming the terms of a sequence

A sequence is an ordered list of numbers. Order is part of what a sequence is: the list 2,5,8,112, 5, 8, 11 is a different sequence from 11,8,5,211, 8, 5, 2, even though the same four numbers appear. Each number in the list is called a term.

Because the order matters, we label the terms by their position. We write a1a_1 for the first term, a2a_2 for the second, a3a_3 for the third, and in general ana_n for the term in position nn. The small number written below the line is the subscript, and it is just the position counter, not a multiplication. For the sequence 2,5,8,112, 5, 8, 11,

a1=2,a2=5,a3=8,a4=11.a_1 = 2, \qquad a_2 = 5, \qquad a_3 = 8, \qquad a_4 = 11.

Another way to see this: a sequence is a function whose inputs are the positions 1,2,3,1, 2, 3, \ldots and whose outputs are the terms. Instead of writing f(1)f(1), f(2)f(2), f(3)f(3) the way we did for ordinary functions, we write a1a_1, a2a_2, a3a_3. The subscript notation is only a compact way to write “the output at position nn.” The position nn is always a counting number (1,2,3,1, 2, 3, \ldots), never a fraction or a negative, because there is no “term number one-half.”

What makes a sequence arithmetic

An arithmetic sequence is a sequence in which you get each term by adding the same fixed number to the term before it. That fixed number is called the common difference, written dd. It is the gap between one term and the next, and in an arithmetic sequence that gap never changes.

To find dd, subtract any term from the one that follows it:

d=a2a1=a3a2=a4a3=d = a_2 - a_1 = a_3 - a_2 = a_4 - a_3 = \cdots

Take 3,7,11,15,193, 7, 11, 15, 19. The differences are 73=47 - 3 = 4, then 117=411 - 7 = 4, then 1511=415 - 11 = 4, then 1915=419 - 15 = 4. Every gap is 44, so this is arithmetic with d=4d = 4. The common difference can be negative, which makes the sequence decrease: 20,17,14,1120, 17, 14, 11 has d=1720=3d = 17 - 20 = -3, since each term is three less than the one before. It can also be a fraction or a decimal. The common difference can even be zero: then every term is the same and the sequence is constant, which still counts as arithmetic (it just never changes).

To test whether a sequence is arithmetic, check that all the consecutive differences agree. The sequence 2,4,8,162, 4, 8, 16 is not arithmetic: the first gap is 42=24 - 2 = 2 but the second is 84=48 - 4 = 4, and a single mismatch is enough to disqualify it.

The sequence 5, 8, 11, 14, 17 as equal steps of 3Five equally spaced points on a number line hold the terms 5, 8, 11, 14, 17. Each consecutive pair is joined by a plus 3 arrow, and the four jumps take the first term to the fifth.58111417+3+3+3+3a1a2a3a4a5
An arithmetic sequence marches along the number line in equal steps of size d. Reaching the 5th term takes 4 jumps from the first, which is the reason the nth term takes n-1 of them.

A formula for the nth term

Adding dd over and over does reach any term, but it is slow. To find the 100100th term you would add dd ninety-nine times. There is a shortcut, and the picture above already shows why it works. To land on a later term you take a whole number of equal jumps from the first term, so you only need to count the jumps.

The nnth term is an=a1+(n1)da_n = a_1 + (n-1)d#

Start at the first term and add the common difference one step at a time. The second term is the first term plus one dd:

a2=a1+d.a_2 = a_1 + d.

The third term is the second plus another dd, so it is the first term plus two dd‘s:

a3=a2+d=(a1+d)+d=a1+2d.a_3 = a_2 + d = (a_1 + d) + d = a_1 + 2d.

The fourth term adds one more dd, which makes three dd‘s in all:

a4=a3+d=a1+3d.a_4 = a_3 + d = a_1 + 3d.

A pattern is now plain. The number of dd‘s added is always one less than the position of the term. The second term carries one dd, the third carries two, and the fourth carries three. The reason is easy to say in words. To travel from the first term to the nnth term you take n1n - 1 single steps, and every step adds exactly dd. That count is right because those steps land you on the second term, then the third, and so on up to the nnth. Adding n1n - 1 copies of dd to the first term gives

an=a1+(n1)d.a_n = a_1 + (n-1)\,d.

This closed formula reaches any term straight from its position nn, with no need to build the terms before it.

The formula has a clean meaning. You begin at a1a_1, and then you make (n1)(n - 1) steps of size dd, so the term is the starting value plus the total of those steps, (n1)d(n-1)d. Everything about an arithmetic sequence is captured by just two numbers: the first term a1a_1 and the common difference dd.

Worked example 1 Find the 15th term

Find the 1515th term of the sequence 4,11,18,25,4, 11, 18, 25, \ldots

First read off the two numbers that define the sequence. The first term is a1=4a_1 = 4. The common difference is the gap between consecutive terms, 114=711 - 4 = 7, so d=7d = 7.

Now use the formula with n=15n = 15. The number of steps is n1=14n - 1 = 14:

a15=a1+(151)d=4+14×7.a_{15} = a_1 + (15 - 1)d = 4 + 14 \times 7.

Work out the product before the sum, 14×7=9814 \times 7 = 98, then add:

a15=4+98=102.a_{15} = 4 + 98 = 102.

So the 1515th term is 102102. Notice you never had to list the first fourteen terms.

Check your understanding

An arithmetic sequence has first term a1=40a_1 = 40 and common difference d=3d = -3. What is the 1010th term a10a_{10}?

Answer choices

The recursive rule

The formula an=a1+(n1)da_n = a_1 + (n-1)d is called the explicit (or closed) form, because it gives a term directly from its position. There is a second, equally natural way to describe the same sequence, called the recursive form. It states how each term is built from the one right before it:

an=an1+dfor n2,a_n = a_{n-1} + d \qquad \text{for } n \ge 2,

together with a stated first term a1a_1. Read aloud, it says exactly the definition of arithmetic: “each term is the previous term plus the common difference.” The recursive rule is often the most honest description of a real process (you deposit 2525 more dollars onto last month’s balance). But to reach a far-off term with the recursive rule you must climb through every term in between. The explicit formula is the tool for jumping ahead; the recursive rule is the tool for describing the step.

Climbing through the terms is worth doing once by hand, because it is what makes the n1n - 1 stop being an arbitrary detail. The figure below is a single step on a number line. Both halves of that step are under your control: the number the step starts from, and the number added to it.

Set the start to 5-5 and the number added to 33. The arrow lands on 2-2, so a sequence with a1=5a_1 = -5 and d=3d = 3 has a2=2a_2 = -2. Now move the start to 2-2, where you just landed, and take the same step again. You reach 11, which is a3a_3. Two more re-starts, from 11 and then from 44, carry you to 44 and then to 77. Count the steps you took: four of them, to get from a1a_1 to a5a_5. That is where n1n - 1 comes from. That count is off by one from the position for the plainest possible reason, which is that standing on the first term costs no steps at all. Then set the number added to 3-3 and walk the same route in reverse. Four steps of 3-3 return you from 77 to 5-5, which is why a negative common difference runs the sequence downward without changing anything else about the counting.

Number line walk

-5 + 3 = -2. Adding a positive number moves 3 units to the right. A number line from -5 to 7. A dot marks the starting number and an arrow shows the step to the landing point. Use the controls below the figure to change either one. -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 +3 -5 -2
Start at Then add

-5 + 3 = -2. Adding a positive number moves 3 units to the right.

One step on a number line, with both the number it starts from and the number added to it under your control. Restarting the same step from wherever the last one landed is the recursive rule of an arithmetic sequence, taken one term at a time.

The same counting argument works between any two terms, not only from the first. To get from the mmth term to the kkth term you take kmk - m steps of size dd, so

ak=am+(km)d.a_k = a_m + (k - m)\,d.

This version is what you reach for when you know two terms and want to recover the common difference.

Worked example 2 Find dd and a1a_1 from two terms

In an arithmetic sequence the third term is a3=20a_3 = 20 and the seventh term is a7=44a_7 = 44. Find the common difference and the first term.

Between the third term and the seventh term there are 73=47 - 3 = 4 steps, each of size dd. Using ak=am+(km)da_k = a_m + (k - m)d,

a7=a3+(73)d44=20+4d.a_7 = a_3 + (7 - 3)d \quad\Longrightarrow\quad 44 = 20 + 4d.

Solve for dd by subtracting 2020 and dividing by 44:

4d=24d=6.4d = 24 \quad\Longrightarrow\quad d = 6.

Now back up from the third term to the first. The first term is two steps below the third, so a1=a32da_1 = a_3 - 2d:

a1=202×6=2012=8.a_1 = 20 - 2 \times 6 = 20 - 12 = 8.

The sequence is 8,14,20,26,32,38,44,8, 14, 20, 26, 32, 38, 44, \ldots, and a quick check confirms a3=20a_3 = 20 and a7=44a_7 = 44.

Working backward: which term is it?

The explicit formula also answers the reverse question. Instead of asking “what is term number nn,” you can ask “which term equals a given value,” and you find out by solving for nn. Because nn must be a counting number, this also tells you whether a value appears in the sequence at all.

Worked example 3 Which term equals a given value?

For the sequence 5,8,11,14,5, 8, 11, 14, \ldots, decide which term equals 9898, and whether 100100 ever appears.

Here a1=5a_1 = 5 and d=3d = 3, so the explicit formula is an=5+(n1)3a_n = 5 + (n - 1)\,3. Set it equal to 9898 and solve for nn:

5+3(n1)=983(n1)=93n1=31.5 + 3(n - 1) = 98 \quad\Longrightarrow\quad 3(n - 1) = 93 \quad\Longrightarrow\quad n - 1 = 31.

So n=32n = 32, which is a whole number, and 9898 is the 3232nd term.

Now try 100100 the same way:

5+3(n1)=1003(n1)=95n1=953.5 + 3(n - 1) = 100 \quad\Longrightarrow\quad 3(n - 1) = 95 \quad\Longrightarrow\quad n - 1 = \tfrac{95}{3}.

Since 953\tfrac{95}{3} is not a whole number, there is no position nn that lands on 100100, so 100100 is not a term of this sequence. A value belongs to the sequence only when solving for nn gives a positive whole number.

A real-world pattern

Worked example 4 Seats in a theater

A theater has 1818 seats in its front row, and each row behind it holds 22 more seats than the row in front. How many seats are in row 1212, and which row is the first to hold 5454 seats?

The seat counts by row form an arithmetic sequence with first term a1=18a_1 = 18 (the front row) and common difference d=2d = 2. The number of seats in row nn is

an=18+(n1)2.a_n = 18 + (n - 1)\,2.

For row 1212, put n=12n = 12, so there are n1=11n - 1 = 11 steps:

a12=18+11×2=18+22=40 seats.a_{12} = 18 + 11 \times 2 = 18 + 22 = 40 \text{ seats}.

To find the row with 5454 seats, set an=54a_n = 54 and solve for nn:

18+2(n1)=542(n1)=36n1=18.18 + 2(n - 1) = 54 \quad\Longrightarrow\quad 2(n - 1) = 36 \quad\Longrightarrow\quad n - 1 = 18.

So n=19n = 19, and row 1919 is the one with 5454 seats. The same two ideas, plug in a position or solve for a position, handle almost every arithmetic-sequence question you will meet.

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 hundred loaves of bread must be divided among five workers, and no two shares may be the same. Each share is larger than the next by a fixed amount. How much bread does every worker receive?

That question is remarkably old. It sits in the Rhind Papyrus, a scroll of practical arithmetic from ancient Egypt. A scribe named Ahmes copied the surviving scroll out around 1650 BCE, working from an older roll that is now lost. The scroll is a working handbook rather than a book of theory. Its problems are the ones an official really faced: grain to measure, wages to pay, and food to hand out by rank.

Fair, here, did not mean equal. Rank determined the size of your share, so the shares had to climb by a steady amount. Ahmes had no symbol for an unknown quantity and no formula for a distant term, yet he solved the problem anyway. He worked the shares out one gap at a time.

Notice how little information he actually needed. He needed the size of one share, and the gap from each share to the next. Every remaining number in the problem follows from those two. That pair is exactly what this lesson calls the first term and the common difference. Thirty-six centuries of better notation have changed how we write the pair down, but they have never added a third number to it.