Taylor’s Theorem
If f has derivatives up to order (n+1) near a, then:
f(a+h)=f(a)+hf′(a)+2!h2f′′(a)+⋯+n!hnf(n)(a)+Rn+1

Lagrange remainder:
Rn+1=(n+1)!hn+1f(n+1)(ξ)
where ξ lies between a and a+h.
Interpretation: We can approximate smooth functions by polynomials, with the remainder giving the error.
Maclaurin Series
The special case of Taylor series with a=0:
f(x)=f(0)+xf′(0)+2!x2f′′(0)+⋯
Standard Power Series
These series should be memorised:
| Function | Power Series | Convergence |
|---|
| ex | ∑k=0∞k!xk | All x |
| sinx | ∑k=0∞(2k+1)!(−1)kx2k+1 | All x |
| cosx | ∑k=0∞(2k)!(−1)kx2k | All x |
| sinhx | ∑k=0∞(2k+1)!x2k+1 | All x |
| coshx | ∑k=0∞(2k)!x2k | All x |
| ln(1+x) | ∑k=1∞k(−1)k+1xk | −1<x≤1 |
| ln(1−x) | −∑k=1∞kxk | −1≤x<1 |
Binomial Expansion
For ∣x∣<1 and any α∈R:
(1+x)α=1+αx+2!α(α−1)x2+3!α(α−1)(α−2)x3+⋯
Special cases:
- α=n (positive integer): terminates (binomial theorem)
- α=−1: 1+x1=1−x+x2−x3+⋯
- α=21: 1+x=1+2x−8x2+16x3−⋯
Manipulating Series
Addition: ∑anxn+∑bnxn=∑(an+bn)xn
Multiplication: (∑anxn)(∑bnxn)=∑cnxn where cn=∑k=0nakbn−k
Composition: Substitute one series into another
Differentiation: dxd∑anxn=∑nanxn−1 (within radius of convergence)
Integration: ∫∑anxndx=∑n+1anxn+1 (within radius of convergence)
Radius of Convergence
A power series ∑anxn converges absolutely for ∣x∣<R and diverges for ∣x∣>R, where:
R=limn→∞an+1an(ratio test)
At the endpoints x=±R, convergence must be checked separately.
Example Expansions
Expand tanx about x=0:
Since tanx is odd, write y=tanx. Taking derivatives:
- y(0)=0
- y′=sec2x, so y′(0)=1
- y′′=2sec2xtanx, so y′′(0)=0
- y′′′=2sec4x+4sec2xtan2x, so y′′′(0)=2
Thus: tanx=x+3x3+O(x5)
Expand (1+x)ln(1+x):
Using ln(1+x)=x−2x2+3x3−⋯:
(1+x)ln(1+x)=x+(1−21)x2+(31−21)x3+⋯=x+2x2−6x3+⋯
Why Taylor Series Matter
- Approximation: Truncating gives polynomial approximations
- Limits: Evaluate indeterminate forms (L’Hôpital’s rule basis)
- Numerical methods: Derive finite difference schemes
- Physics: Linearisation of nonlinear equations
- ODEs: Power series solutions
The Taylor series is the bridge between “nice” functions (exponential, trig) and polynomials, which we can compute with.