MathBored

Essential Math Primer
← Back to Primer Overview
H41 • Lesson 63 of 105

Sequences - Arithmetic

Arithmetic sequences, common difference, formulas

High School Essentials • 9-12

Prerequisites: E11

Key Concepts

  • arithmetic
  • sequence
  • formula

Arithmetic Sequences

An arithmetic sequence is a list of numbers where each term is obtained by adding the same fixed value -- called the common difference -- to the previous term. These sequences model situations with constant, steady change: saving $50 per week, climbing stairs of equal height, or counting by threes.

Identifying Arithmetic Sequences

A sequence is arithmetic if the difference between consecutive terms is always the same.

Arithmetic

3, 7, 11, 15, 19, ... (d = 4)

20, 17, 14, 11, 8, ... (d = -3)

NOT Arithmetic

2, 4, 8, 16, 32, ... (differences double)

1, 1, 2, 3, 5, 8, ... (Fibonacci)

Formulas

FormulaExpressionUse
Explicit (nth term)an = a1 + (n - 1)dJump directly to any term
Recursivean = an-1 + d, with a1 givenDefine each term from the previous one
Sum of n termsSn = n/2 · (a1 + an)Total of the first n terms

Sum Formula Intuition

The sum formula works by pairing the first and last terms (which add to the same value), then multiplying by the number of pairs. Gauss famously used this trick as a child to sum 1 + 2 + 3 + ... + 100 = 100/2 × (1 + 100) = 5,050.

Worked Example 1 -- Finding the nth Term

Find the 20th term of the sequence 5, 9, 13, 17, ...

  • Identify: a1 = 5, d = 9 - 5 = 4.
  • Apply: a20 = 5 + (20 - 1)(4) = 5 + 76 = 81.

Worked Example 2 -- Finding d and a1

An arithmetic sequence has a5 = 22 and a12 = 43. Find d and a1.

  • Use the explicit formula for both known terms: a5 = a1 + 4d = 22 and a12 = a1 + 11d = 43.
  • Subtract the first equation from the second: 7d = 21, so d = 3.
  • Substitute back: a1 + 4(3) = 22, so a1 = 10.

Worked Example 3 -- Sum

Find the sum of the first 30 terms of the sequence 2, 5, 8, 11, ...

  • a1 = 2, d = 3. Find a30 = 2 + 29(3) = 89.
  • S30 = 30/2 × (2 + 89) = 15 × 91 = 1,365.

Common Mistake

In the formula an = a1 + (n - 1)d, note it is (n - 1), not n. The first term a1 uses zero steps of d. A frequent error is writing an = a1 + nd, which gives you the (n+1)th term instead.

Practice Problems

  1. Find the 15th term of: -3, 1, 5, 9, ...
    Show Solution

    a1 = -3, d = 4. a15 = -3 + 14(4) = -3 + 56 = 53.

  2. Write the explicit formula for: 100, 93, 86, 79, ...
    Show Solution

    a1 = 100, d = -7. an = 100 + (n - 1)(-7) = 107 - 7n.

  3. How many terms are in the sequence 4, 11, 18, ..., 200?
    Show Solution

    an = 4 + (n - 1)(7) = 200. So 7(n - 1) = 196, n - 1 = 28, n = 29.

  4. Find the sum: 1 + 2 + 3 + ... + 200.
    Show Solution

    S200 = 200/2 × (1 + 200) = 100 × 201 = 20,100.

  5. An arithmetic sequence has a3 = 14 and a7 = 30. Find a10.
    Show Solution

    From a3 to a7: 4 steps, difference = 30 - 14 = 16, so d = 4. a1 = 14 - 2(4) = 6. a10 = 6 + 9(4) = 42.

Summary

Overview