Chapter 22 — Key Takeaways
This is the hardest single chapter in the book, and almost all of the difficulty is choosing the right test. So we lead with the decision framework, then state each test precisely, then collect the facts worth memorizing.
The Decision Framework (which test, when)
Run a brand-new series $\sum a_n$ down this list in order; the first matching rule usually wins. This is the condensed form of §22.10 — the single most valuable thing in the chapter.
| Step | Ask | If yes → | Section |
|---|---|---|---|
| 0 | Does $a_n \to 0$? | No → diverges, stop. (Necessary, not sufficient.) | §22.10 |
| 1 | Geometric $r^n$ / $p$-series $1/n^p$ / telescoping? | Use the formula, stop. | §22.2.1, Ch. 21 |
| 2 | Signs alternate? | Alternating series test; for abs/cond, test $\sum|a_n|$. | §22.7 |
| 3 | Factorials, exponentials, or $n^n$? | Ratio test. | §22.5 |
| 4 | Whole term is $(\cdots)^n$? | Root test. | §22.6 |
| 5 | Terms behave like $1/n^p$ (ratio of polynomials/roots)? | Limit comparison vs. $1/n^p$. | §22.4 |
| 6 | Decreasing, easy integrand (especially $\ln$-types)? | Integral test. | §22.2 |
| 7 | Boundable by a known series via an honest inequality? | Direct comparison. | §22.3 |
The one habit to build: name the test before you compute. Experts are not faster at any single test — they are faster at recognizing which test the series is asking for.
Each Test, Stated Precisely
Divergence test (§22.1). If $a_n \not\to 0$, then $\sum a_n$ diverges. (If $a_n \to 0$, the test says nothing.)
Integral test (§22.2). If $f$ is positive, continuous, and decreasing on $[1,\infty)$ with $a_n=f(n)$, then $\sum a_n$ and $\int_1^\infty f(x)\,dx$ (an improper integral, Chapter 17) converge or diverge together. Yields the $p$-series rule.
Direct comparison test (§22.3). If $0\le a_n\le b_n$: $\sum b_n$ converges $\Rightarrow \sum a_n$ converges; $\sum a_n$ diverges $\Rightarrow \sum b_n$ diverges. (Bound above by convergent for convergence; below by divergent for divergence.)
Limit comparison test (§22.4). For $a_n,b_n>0$ with $\lim a_n/b_n = c$: if $0 Ratio test (§22.5). $\rho=\lim|a_{n+1}/a_n|$: $\rho<1$ converges absolutely; $\rho>1$ diverges; $\rho=1$ inconclusive. Built for factorials and exponentials. Root test (§22.6). $\rho=\lim|a_n|^{1/n}$: same verdicts as the ratio test. Built for $n$-th powers; strictly stronger than the ratio test. Alternating series test / Leibniz (§22.7). For $\sum(-1)^{n+1}b_n$ with $b_n>0$: if $b_n$ is eventually decreasing and $b_n\to 0$, the series converges. For a convergent alternating series satisfying both Leibniz conditions,
$$\boxed{\;|L - S_N| \le b_{N+1}\;}$$
The truncation error is at most the first omitted term, and it carries that term's sign. To approximate $L$ to within $\varepsilon$, sum until $b_{N+1}<\varepsilon$. This certified, computable bound is what makes alternating tails prized in numerical computing (Case Study 1). It applies only when the signs alternate and $b_n$ is decreasing to $0$ — verify both first. Classification recipe: if the series converges, test $\sum|a_n|$. Converges → absolute. Diverges → conditional. The densest chapter in Part IV: seven tests with overlapping applicability, where the real skill is recognition, not execution. That skill develops only through volume — work many series, run each through the framework above, and by the time you reach Chapter 23 the convergence questions will feel mechanical, freeing you to focus on what the answer means.
The Alternating Series Error Bound
Absolute vs. Conditional Convergence (§22.8)
Facts Worth Memorizing
Common Errors
Connections
Reflection