A Taylor series represents a function as an infinite sum of terms, calculated from the values of the function's derivatives at a single point a.
Expanded, this looks like:
Here, f(n)(a) is the nth derivative of f evaluated at the point a.
A Maclaurin series is a special case of the Taylor series, centered at a = 0. This is the most common type of power series expansion.
Expanded, this looks like:
Memorizing or having these handy is crucial. Most problems involve manipulating these known series rather than deriving them from scratch.
| Function | Series Expansion | Interval of Convergence |
|---|---|---|
| $$ \frac{1}{1-x} $$ | $$ \sum_{n=0}^{\infty} x^n = 1 + x + x^2 + x^3 + \cdots $$ | $$ (-1, 1) $$ |
| $$ e^x $$ | $$ \sum_{n=0}^{\infty} \frac{x^n}{n!} = 1 + \frac{x}{1!} + \frac{x^2}{2!} + \frac{x^3}{3!} + \cdots $$ | $$ (-\infty, \infty) $$ |
| $$ \sin(x) $$ | $$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{(2n+1)!} = x - \frac{x^3}{3!} + \frac{x^5}{5!} - \cdots $$ | $$ (-\infty, \infty) $$ |
| $$ \cos(x) $$ | $$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n}}{(2n)!} = 1 - \frac{x^2}{2!} + \frac{x^4}{4!} - \cdots $$ | $$ (-\infty, \infty) $$ |
| $$ \ln(1+x) $$ | $$ \sum_{n=1}^{\infty} \frac{(-1)^{n-1} x^n}{n} = x - \frac{x^2}{2} + \frac{x^3}{3} - \cdots $$ | $$ (-1, 1] $$ |
| $$ \arctan(x) $$ | $$ \sum_{n=0}^{\infty} \frac{(-1)^n x^{2n+1}}{2n+1} = x - \frac{x^3}{3} + \frac{x^5}{5} - \cdots $$ | $$ [-1, 1] $$ |
| $$ (1+x)^k $$ (Binomial Series) |
$$ 1 + kx + \frac{k(k-1)}{2!}x^2 + \frac{k(k-1)(k-2)}{3!}x^3 + \cdots $$ | $$ (-1, 1) $$ |
You can use the known series above to find new ones through simple algebraic manipulation.
x with another function.
Example: To find the series for e^{-x^3}, substitute u = -x^3 into the series for e^u.
x.
Example: To find the series for x^2 \cos(x), multiply the series for cos(x) by x^2.
Example: The series for \frac{1}{(1-x)^2} is the derivative of the series for \frac{1}{1-x}.