Sequence Basics (Converge vs Diverge)
A sequence is a function with input n (a positive integer): a_n.
Converges if lim_{n→∞} a_n = L (a finite number).
Diverges if it doesn’t approach a single finite value.
Series & Sigma Notation
A series adds sequence terms: Σ a_n.
Define S_k = a_1 + a_2 + ... + a_k.
The series Σ a_n converges if lim_{k→∞} S_k exists.
Geometric Series (The One You MUST Memorize)
- Each term is multiplied by a constant ratio: r = a_{n+1}/a_n
- 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 a_n = 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≤a_n≤b_n and Σ b_n converges → Σ a_n converges.
If 0≤b_n≤a_n and Σ b_n diverges → Σ a_n diverges.
Choose b_n (usually p-series) and compute lim_{n→∞} a_n/b_n = c. If 0<c<∞, they behave the same (both converge or both diverge).
Alternating Series (Leibniz Test) + Error
For Σ (-1)^n b_n (or (-1)^{n+1}): it converges if (1) b_n decreases and (2) lim b_n = 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 |
|---|---|
| e^x | Σ x^n/n! |
| sin x | Σ (-1)^n x^{2n+1}/(2n+1)! |
| cos x | Σ (-1)^n x^{2n}/(2n)! |
| 1/(1-x) | Σ x^n (|x|<1) |
| ln(1+x) | Σ (-1)^{n+1} x^n/n (|x|<1, x>-1) |
| arctan x | Σ (-1)^n x^{2n+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.