James's Math Hub
Algebra 2

Lesson 5 / 5 · 12 min read

Sequences and Series

Arithmetic, geometric, and the sums that close-form themselves.

Sequences

A sequence is an ordered list of numbers: a1,a2,a3,a_1, a_2, a_3, \ldots. Algebra 2 focuses on two types.

Arithmetic sequence

Each term differs from the previous by a constant dd (the common difference).

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

Example. 3,7,11,15,3, 7, 11, 15, \ldots has a1=3a_1 = 3 and d=4d = 4. So a10=3+94=39a_{10} = 3 + 9 \cdot 4 = 39.

Geometric sequence

Each term is the previous times a constant rr (the common ratio).

an=a1rn1a_n = a_1 \cdot r^{\,n-1}

Example. 2,6,18,54,2, 6, 18, 54, \ldots has a1=2a_1 = 2 and r=3r = 3. So a8=237=4374a_8 = 2 \cdot 3^7 = 4374.

Series — summing a sequence

Arithmetic series

Sn=n2(a1+an)S_n = \dfrac{n}{2}\,\bigl(a_1 + a_n\bigr)

Read it: the average of the first and last term, times the number of terms.

Example. Sum of 1+2+3++1001 + 2 + 3 + \cdots + 100. n=100n = 100, a1=1a_1 = 1, a100=100a_{100} = 100:

S100=1002(1+100)=50101=5050S_{100} = \dfrac{100}{2}(1 + 100) = 50 \cdot 101 = 5050

Geometric series (finite)

Sn=a11rn1r,r1S_n = a_1 \cdot \dfrac{1 - r^n}{1 - r}, \quad r \neq 1

Example. Sum of 2+6+18+54+1622 + 6 + 18 + 54 + 162. a1=2a_1 = 2, r=3r = 3, n=5n = 5:

S5=2124313=22422=242S_5 = 2 \cdot \dfrac{1 - 243}{1 - 3} = 2 \cdot \dfrac{-242}{-2} = 242

Infinite geometric series

If r<1|r| < 1, the infinite series converges:

S=a11rS_\infty = \dfrac{a_1}{1 - r}

If r1|r| \geq 1, it doesn't converge.

Example. 1+12+14+18+1 + \dfrac{1}{2} + \dfrac{1}{4} + \dfrac{1}{8} + \cdots, with a1=1a_1 = 1, r=1/2r = 1/2:

S=111/2=2S_\infty = \dfrac{1}{1 - 1/2} = 2

Recursive vs. explicit

Explicit: plug nn in directly. an=3+4(n1)a_n = 3 + 4(n-1).

Recursive: define each term from the previous. a1=3a_1 = 3, an=an1+4a_n = a_{n-1} + 4.

Both describe the same sequence; pick whichever is convenient.

Key takeaways

  • Arithmetic: constant difference dd; an=a1+(n1)da_n = a_1 + (n - 1)d.
  • Geometric: constant ratio rr; an=a1rn1a_n = a_1 r^{n-1}.
  • Arithmetic sum: average of endpoints times count of terms.
  • Geometric sum: a11rn1ra_1 \dfrac{1 - r^n}{1 - r}; the infinite version converges only when r<1|r| < 1.