Sequence Basics (Converge vs Diverge)
A sequence is a function with input n (a positive integer): an.
Converges if limn→∞ an = L (a finite number).
Diverges if it doesn't approach a single finite value.
Series & Sigma Notation
A series adds sequence terms: Σ an.
Define Sk = a1 + a2 + ... + ak.
The series Σ an converges if limk→∞ Sk exists.
Geometric Series (The One You MUST Memorize)
- Each term is multiplied by a constant ratio: r = an+1/an
- Index shift doesn't matter: start at 1 or 0, still geometric
nth-Term Test for Divergence (Fastest Test)
But: if the limit equals 0, you still don't know — you need another test.
Integral Test (Bridge from Unit 8)
If an = f(n), where f(x) is continuous, positive, and decreasing for x ≥ 1, then:
p-Series (Memorize This Rule)
Comparison Tests (How AP expects you to argue)
If 0 ≤ an ≤ bn and Σ bn converges → Σ an converges.
If 0 ≤ bn ≤ an and Σ bn diverges → Σ an diverges.
Choose bn (usually p-series) and compute limn→∞ an/bn = c. If 0 < c < ∞, they behave the same (both converge or both diverge).
Alternating Series (Leibniz Test) + Error
For Σ (−1)n bn (or (−1)n+1): it converges if (1) bn decreases and (2) lim bn = 0.
Ratio & Root Tests (The factorial/exponential detectors)
If L < 1 converge, if L > 1 diverge, if L = 1 inconclusive.
If L < 1 converge, if L > 1 diverge, if L = 1 inconclusive.
Power Series (interval + radius of convergence)
A power series looks like:
- Find the radius R and interval of convergence.
- Use Ratio Test on the general term.
- Always check endpoints separately (they can change!).
Taylor & Maclaurin Series BC
This is the BC "boss level." But the pattern is consistent: memorize the core Maclaurin series and build everything else using algebra + substitution + differentiation/integration.
| Function | Series |
|---|---|
| ex | Σ xn/n! |
| sin x | Σ (−1)n x2n+1/(2n+1)! |
| cos x | Σ (−1)n x2n/(2n)! |
| 1/(1−x) | Σ xn (|x| < 1) |
| ln(1+x) | Σ (−1)n+1 xn/n (|x| < 1, x > −1) |
| arctan x | Σ (−1)n x2n+1/(2n+1) (|x| ≤ 1 endpoints special) |
Want a series for sin(3x)? Replace x with 3x in the sin series.
Want a series for ∫ sin x / x dx? Use series for sin x, divide by x, integrate term-by-term.