sequences and series
Sequences and Series
You should know: functions
Overview
A sequence is an ordered list of numbers, a₁, a₂, a₃, ..., each indexed by a positive integer — formally, a function from the natural numbers to the reals. A series is the sum of the terms of a sequence, S = a₁ + a₂ + a₃ + .... Sequences describe discrete processes step by step (compound interest each period, populations each generation), while series answer the natural follow-up question: what do you get when you add all those steps together, and does that sum settle down to a finite value or grow without bound?
Intuition
Think of a sequence as a numbered list of stops along a path, and a series as the total distance traveled after visiting each stop in order. Some series behave like walking toward a wall you never quite reach — the partial sums creep toward a fixed number and converge — while others behave like walking in a straight line forever, growing without bound (diverging). Which behavior happens depends entirely on how fast the underlying sequence's terms shrink.
Interactive Graph
Formal Definition
A sequence is a function a: ℕ → ℝ, usually written aₙ. Its associated series is the sum of its terms, tracked via partial sums:
The series converges if this limit exists (is finite); otherwise it diverges
Notation
| Notation | Meaning |
|---|---|
| The n-th term of the sequence | |
| Summation notation — the sum of terms from k=1 to n | |
| The n-th partial sum — the sum of the first n terms |
Properties
Recursive definition
Explicit (closed) form
Convergence requires terms → 0
Linearity of series
Applications
Worked Examples
Substitute n = 1, 2, 3, 4, 5 into the explicit formula.
Answer: 1, 3, 5, 7, 9 (the odd numbers)
Practice Problems
Write the first 4 terms of the recursively defined sequence a₁=3, aₙ=aₙ₋₁+5.
Find the 3rd partial sum of the series with terms aₙ = n².
Common Mistakes
Assuming that if the terms of a sequence go to 0, the series must converge.
Terms going to 0 is necessary but NOT sufficient. The harmonic series Σ(1/n) has terms → 0 but its partial sums grow without bound (it diverges) — a classic counterexample.
Confusing a sequence (an ordered list of terms) with a series (the sum of those terms).
A sequence {aₙ} is just the list 1, 4, 9, 16, .... The related series Σaₙ is the running total 1, 5, 14, 30, .... They are related but distinct objects with different notation.
Summary
- A sequence {aₙ} is an ordered, indexed list of numbers; it can be defined explicitly (aₙ=g(n)) or recursively.
- A series Σaₙ is the sum of a sequence's terms, tracked via partial sums Sₙ.
- An infinite series converges if the sequence of partial sums Sₙ approaches a finite limit; otherwise it diverges.
- Terms approaching 0 is necessary but not sufficient for convergence (e.g. the harmonic series diverges).
- Sequences and series underlie recurrence relations, annuities, and discrete models of growth and decay.
References
- BookSullivan, M. Algebra and Trigonometry, 10th ed. Ch. 12 — Sequences, Induction, and Probability.
- WebsiteWikipedia — Sequence
Mathematics