Fiveable

🧠Thinking Like a Mathematician Unit 9 Review

QR code for Thinking Like a Mathematician practice questions

9.5 Sequences and series

9.5 Sequences and series

Written by the Fiveable Content Team • Last updated August 2025
Written by the Fiveable Content Team • Last updated August 2025
🧠Thinking Like a Mathematician
Unit & Topic Study Guides

Definition of sequences

A sequence is an ordered list of numbers following a specific rule. Each number in the list is called a term, and the position of each term matters. Sequences give you a way to study patterns, and they're the starting point for understanding limits and infinite processes in analysis.

Types of sequences

  • Finite sequences contain a set number of terms: (1, 2, 3, 4, 5)
  • Infinite sequences continue without end: (1, 2, 3, 4, ...)
  • Constant sequences repeat the same value: (5, 5, 5, 5, ...)
  • Alternating sequences switch sign from term to term: (-1, 1, -1, 1, ...)

Sequence notation

There are several ways to describe a sequence precisely:

  • General term notation uses subscripts: ana_n represents the nth term
  • Explicit formula defines each term directly as a function of its position: an=f(n)a_n = f(n). For example, an=2n+1a_n = 2n + 1 gives you the sequence 3, 5, 7, 9, ...
  • Recursive formula defines each term using previous terms: an=f(an1)a_n = f(a_{n-1}). You always need an initial condition (like a1=3a_1 = 3) to get started.
  • Set builder notation describes the sequence using set theory: {an:nN}\{a_n : n \in \mathbb{N}\}

Arithmetic sequences

In an arithmetic sequence, each term differs from the previous one by a fixed amount called the common difference (dd). If d=3d = 3 and a1=2a_1 = 2, you get 2, 5, 8, 11, ...

  • General term formula: an=a1+(n1)da_n = a_1 + (n-1)d
  • Sum of the first n terms: Sn=n2(a1+an)S_n = \frac{n}{2}(a_1 + a_n)
  • These model any situation with constant, uniform growth (e.g., adding the same amount to a savings account each month)

Geometric sequences

In a geometric sequence, each term is obtained by multiplying the previous term by a fixed common ratio (rr). If r=2r = 2 and a1=3a_1 = 3, you get 3, 6, 12, 24, ...

  • General term formula: an=a1rn1a_n = a_1 \cdot r^{n-1}
  • Sum of the first n terms: Sn=a11rn1rS_n = a_1\frac{1-r^n}{1-r} for r1r \neq 1
  • These show up in compound interest, population growth, and radioactive decay

Properties of sequences

Once you can identify a sequence, the next step is analyzing its long-term behavior. These properties tell you whether a sequence settles down, blows up, or does something in between.

Convergence and divergence

A convergent sequence approaches a specific finite value (its limit) as nn grows. We write this as:

limnan=L\lim_{n \to \infty} a_n = L

A divergent sequence does not approach any finite limit. It might grow without bound, or it might oscillate forever (like 1, -1, 1, -1, ...).

Bounded vs unbounded sequences

  • A sequence is bounded above if there's some number MM where anMa_n \leq M for all nn
  • It's bounded below if there's some number mm where anma_n \geq m for all nn
  • A sequence that's both bounded above and below is simply called bounded
  • Unbounded sequences have terms that grow arbitrarily large (or arbitrarily negative)

Every convergent sequence is bounded, but not every bounded sequence converges (think of the alternating sequence -1, 1, -1, 1, ...).

Monotonic sequences

A sequence is monotonic if it moves consistently in one direction:

  • Increasing: anan+1a_n \leq a_{n+1} for all nn
  • Strictly increasing: an<an+1a_n < a_{n+1} for all nn
  • Decreasing: anan+1a_n \geq a_{n+1} for all nn
  • Strictly decreasing: an>an+1a_n > a_{n+1} for all nn

A key theorem: every bounded monotonic sequence converges. This is one of the most useful results in analysis.

Recursive sequences

Recursive sequences define each term using previous terms rather than a direct formula. The classic example is the Fibonacci sequence:

Fn=Fn1+Fn2F_n = F_{n-1} + F_{n-2} with F1=F2=1F_1 = F_2 = 1

This gives 1, 1, 2, 3, 5, 8, 13, ... A common goal with recursive sequences is finding a closed-form expression that lets you compute any term directly without calculating all the previous ones.

Series fundamentals

A series is what you get when you add up the terms of a sequence. While a sequence is a list, a series is a sum. This distinction matters because it lets you ask a powerful question: can an infinite sum have a finite value?

Definition of a series

An infinite series is written as:

n=1an=a1+a2+a3+\sum_{n=1}^{\infty} a_n = a_1 + a_2 + a_3 + \cdots

The sigma notation is shorthand for "add up all the terms." Whether this infinite sum actually equals a finite number depends on the behavior of its partial sums.

Partial sums

The nth partial sum is the sum of just the first nn terms:

Sn=k=1nakS_n = \sum_{k=1}^{n} a_k

You can think of partial sums as a sequence themselves: S1,S2,S3,S_1, S_2, S_3, \ldots If this sequence of partial sums converges to a finite value, the series converges. If not, the series diverges.

Convergence of series

A series converges when:

limnSn=S\lim_{n \to \infty} S_n = S

where SS is some finite number. One necessary condition: the individual terms must approach zero, i.e., limnan=0\lim_{n \to \infty} a_n = 0. But be careful: this condition is necessary, not sufficient. The harmonic series shows that terms going to zero doesn't guarantee convergence.

Divergence of series

A series diverges if the partial sums don't settle on a finite value. This can happen in a few ways:

  • The partial sums grow without bound (like the harmonic series)
  • The partial sums oscillate and never settle down
  • The individual terms don't approach zero (which automatically forces divergence)
Types of sequences, Investigating Alternating Sequences | College Algebra

Types of series

Arithmetic series

The sum of an arithmetic sequence. For a finite number of terms:

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

An infinite arithmetic series always diverges (the terms don't approach zero unless d=0d = 0). A classic application: the sum 1+2+3++100=1002(1+100)=50501 + 2 + 3 + \cdots + 100 = \frac{100}{2}(1 + 100) = 5050.

Geometric series

The sum of a geometric sequence. This is one of the most important series to know:

  • Finite sum: Sn=a1rn1rS_n = a\frac{1-r^n}{1-r} for r1r \neq 1
  • Infinite sum: S=a1rS_{\infty} = \frac{a}{1-r}, but only when r<1|r| < 1

For example, n=012n=111/2=2\sum_{n=0}^{\infty} \frac{1}{2^n} = \frac{1}{1 - 1/2} = 2. When r1|r| \geq 1, the infinite geometric series diverges.

Telescoping series

In a telescoping series, most terms cancel when you write out the partial sums. The general form is:

n=1(anan+1)\sum_{n=1}^{\infty} (a_n - a_{n+1})

When you expand this, consecutive terms cancel, leaving only the first and last terms. For instance, n=1(1n1n+1)\sum_{n=1}^{\infty}\left(\frac{1}{n} - \frac{1}{n+1}\right) collapses to 1limn1n+1=11 - \lim_{n\to\infty}\frac{1}{n+1} = 1.

Power series

A power series has the form:

n=0an(xc)n\sum_{n=0}^{\infty} a_n(x-c)^n

This represents a function as an infinite polynomial centered at x=cx = c. Each power series has a radius of convergence RR: it converges for xc<R|x - c| < R and diverges for xc>R|x - c| > R. Power series are the foundation for Taylor and Maclaurin series.

Tests for convergence

When you encounter a new series, you need tools to determine whether it converges. Here are the main tests, each suited to different situations.

Nth term test

The simplest check: if limnan0\lim_{n \to \infty} a_n \neq 0, the series diverges. Period.

But if the limit does equal zero, you can't conclude anything. This test can only prove divergence, never convergence. Use it as a quick first step before trying other tests.

Ratio test

Compute the ratio of consecutive terms:

L=limnan+1anL = \lim_{n \to \infty} \left|\frac{a_{n+1}}{a_n}\right|

  • If L<1L < 1: the series converges
  • If L>1L > 1: the series diverges
  • If L=1L = 1: the test is inconclusive (try something else)

The ratio test works especially well for series involving factorials or exponential terms.

Root test

Take the nth root of each term:

L=limnannL = \lim_{n \to \infty} \sqrt[n]{|a_n|}

The conclusions are the same as the ratio test (converges if L<1L < 1, diverges if L>1L > 1, inconclusive if L=1L = 1). This test is particularly effective when terms involve nth powers.

Integral test

If f(x)f(x) is a positive, continuous, decreasing function where f(n)=anf(n) = a_n, then:

n=1an and 1f(x)dx\sum_{n=1}^{\infty} a_n \text{ and } \int_{1}^{\infty} f(x)\, dx either both converge or both diverge.

This test is the standard way to prove p-series convergence results.

Special series

These series come up so often that you should recognize them on sight.

P-series

n=11np\sum_{n=1}^{\infty} \frac{1}{n^p}

  • Converges when p>1p > 1 (e.g., 1n2\sum \frac{1}{n^2} converges to π26\frac{\pi^2}{6})
  • Diverges when p1p \leq 1

P-series are frequently used as comparison benchmarks when testing other series.

Harmonic series

The p-series with p=1p = 1:

n=11n=1+12+13+14+\sum_{n=1}^{\infty} \frac{1}{n} = 1 + \frac{1}{2} + \frac{1}{3} + \frac{1}{4} + \cdots

This series diverges, even though its terms approach zero. The partial sums grow roughly like ln(n)\ln(n), so they increase without bound, just very slowly. The harmonic series is the classic example showing that liman=0\lim a_n = 0 is not enough for convergence.

Alternating series

Series where terms alternate in sign:

n=1(1)n+1anwith an>0\sum_{n=1}^{\infty} (-1)^{n+1}a_n \quad \text{with } a_n > 0

The alternating series test (Leibniz test) says this converges if two conditions hold:

  1. The terms decrease: an+1ana_{n+1} \leq a_n
  2. The terms approach zero: limnan=0\lim_{n\to\infty} a_n = 0

A bonus: if you approximate the sum using the first nn terms, the error is at most an+1a_{n+1}.

Types of sequences, Alternating Series Test Conditions - Mathematics Stack Exchange

Applications of sequences and series

Taylor series

A Taylor series represents a function as an infinite sum of polynomial terms centered at x=ax = a:

f(x)=n=0f(n)(a)n!(xa)nf(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(a)}{n!}(x-a)^n

Here f(n)(a)f^{(n)}(a) is the nth derivative of ff evaluated at aa. Taylor series let you approximate complicated functions with polynomials, compute difficult limits, and evaluate integrals that have no closed-form antiderivative.

Maclaurin series

A Maclaurin series is just a Taylor series centered at a=0a = 0:

f(x)=n=0f(n)(0)n!xnf(x) = \sum_{n=0}^{\infty} \frac{f^{(n)}(0)}{n!}x^n

Three Maclaurin series worth memorizing:

  • ex=n=0xnn!=1+x+x22!+x33!+e^x = \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + x + \frac{x^2}{2!} + \frac{x^3}{3!} + \cdots
  • sinx=n=0(1)nx2n+1(2n+1)!=xx33!+x55!\sin x = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!} = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \cdots
  • cosx=n=0(1)nx2n(2n)!=1x22!+x44!\cos x = \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \cdots

Fourier series

A Fourier series represents a periodic function as a sum of sines and cosines:

f(x)=a02+n=1(ancos(nx)+bnsin(nx))f(x) = \frac{a_0}{2} + \sum_{n=1}^{\infty} (a_n \cos(nx) + b_n \sin(nx))

The idea is that any periodic function can be decomposed into simple oscillating components. This has major applications in signal processing, heat conduction, and solving partial differential equations.

Limits of sequences and series

Limit laws for sequences

When both limnan\lim_{n \to \infty} a_n and limnbn\lim_{n \to \infty} b_n exist, you can combine them:

  • Sum law: limn(an+bn)=limnan+limnbn\lim_{n \to \infty} (a_n + b_n) = \lim_{n \to \infty} a_n + \lim_{n \to \infty} b_n
  • Product law: limn(anbn)=limnanlimnbn\lim_{n \to \infty} (a_n \cdot b_n) = \lim_{n \to \infty} a_n \cdot \lim_{n \to \infty} b_n
  • Quotient law: limnanbn=limnanlimnbn\lim_{n \to \infty} \frac{a_n}{b_n} = \frac{\lim_{n \to \infty} a_n}{\lim_{n \to \infty} b_n}, provided the denominator limit 0\neq 0

The squeeze theorem is also useful: if cnanbnc_n \leq a_n \leq b_n and both cnc_n and bnb_n converge to the same limit LL, then ana_n also converges to LL.

Limit comparison test

This test compares an unknown series an\sum a_n to a known series bn\sum b_n (with all positive terms):

limnanbn=cwhere 0<c<\lim_{n \to \infty} \frac{a_n}{b_n} = c \quad \text{where } 0 < c < \infty

If this limit exists and is positive and finite, both series either converge or both diverge. You'll typically compare against a p-series or geometric series whose behavior you already know.

Cauchy criterion

A sequence converges if and only if it's a Cauchy sequence: for any ϵ>0\epsilon > 0, there exists NN such that aman<ϵ|a_m - a_n| < \epsilon for all m,n>Nm, n > N.

In plain terms, the terms of a Cauchy sequence get arbitrarily close to each other as you go further out. This criterion is important because it lets you prove convergence without knowing the actual limit. It also connects to the completeness of the real numbers: the fact that every Cauchy sequence of real numbers converges is what makes R\mathbb{R} complete.

Manipulating series

Rearrangement of series

Changing the order of terms in a series can have surprising effects:

  • Absolutely convergent series can be rearranged in any order without changing the sum
  • Conditionally convergent series are dangerous to rearrange. The Riemann rearrangement theorem states that you can rearrange a conditionally convergent series to converge to any real number, or even to diverge

Absolute vs conditional convergence

  • Absolute convergence: an\sum |a_n| converges. This is the stronger condition.
  • Conditional convergence: an\sum a_n converges, but an\sum |a_n| diverges.

The alternating harmonic series (1)n+1n\sum \frac{(-1)^{n+1}}{n} is the standard example of conditional convergence: it converges to ln2\ln 2, but the harmonic series 1n\sum \frac{1}{n} diverges. Absolute convergence is always preferred because it gives you more freedom to manipulate the series.

Operations on series

  • Addition/subtraction: If an\sum a_n and bn\sum b_n both converge, then (an±bn)\sum (a_n \pm b_n) converges to the sum/difference of their respective sums
  • Scalar multiplication: can=can\sum ca_n = c\sum a_n for any constant cc
  • Cauchy product: A method for multiplying two series together
  • Term-by-term differentiation and integration: Valid for power series within their radius of convergence

Sequences and series in calculus

Improper integrals

Improper integrals extend definite integrals to infinite intervals or discontinuous functions. They connect to series through the integral test: the convergence of an\sum a_n can be determined by checking whether 1f(x)dx\int_1^{\infty} f(x)\,dx converges, where f(n)=anf(n) = a_n.

Power series differentiation

You can differentiate a power series term by term:

ddxn=0an(xc)n=n=1nan(xc)n1\frac{d}{dx}\sum_{n=0}^{\infty} a_n(x-c)^n = \sum_{n=1}^{\infty} n\,a_n(x-c)^{n-1}

The radius of convergence stays the same after differentiation (though behavior at the endpoints may change). This technique is valuable for solving differential equations and deriving new series from known ones.

Power series integration

Similarly, you can integrate a power series term by term:

n=0an(xc)ndx=C+n=0ann+1(xc)n+1\int \sum_{n=0}^{\infty} a_n(x-c)^n\,dx = C + \sum_{n=0}^{\infty} \frac{a_n}{n+1}(x-c)^{n+1}

The radius of convergence is preserved (again, endpoints need separate checking). This lets you find antiderivatives and compute definite integrals for functions that are hard to integrate directly.