If derivatives capture the slope of a function at a point, Taylor series capture the entire function at a point — by stacking up an infinite number of derivatives. They are the bridge between calculus and numerical computing: every time your calculator computes , it is summing a Taylor series under the hood.
The Taylor series formula
The Taylor series of a function centered at is:
That is: evaluate , , , , … at the point , then build a polynomial whose -th term is .
When , the series is called a Maclaurin series — the most common case.
Why does this work?
Around the point , a function looks like its tangent line ( term), then like a parabola including curvature (), then a cubic, and so on. Each higher derivative captures finer-grained shape information. Add infinitely many and (for "nice" functions) you recover exactly.
Three classic Maclaurin expansions
Memorise these three — they show up constantly:
The exponential's series has all powers; sine has odd powers only; cosine has even powers only. That symmetry is a direct consequence of which derivatives are zero at .
Worked example: building from scratch
Let . At :
- The pattern repeats every 4 derivatives.
Plug into the Taylor formula:
which simplifies to . Same as the formula above.
Approximation in practice
For small near 0, even the first few terms are extremely accurate:
- (true value: ).
This is why small-angle approximation is valid: the next term is tiny when is small.
Convergence — when does it actually equal ?
Taylor series have a radius of convergence . For the series equals ; outside it, the series diverges. Some functions (, , ) have . Others, like centred at 0, have .
Common mistakes
- Forgetting the factorial denominators .
- Mixing up series expansions — sin has odd, cos has even, has all.
- Assuming convergence without checking the radius.
Try with the AI Series Solver
Use the Series Calculator to compute Taylor expansions for any function — it shows the derivative steps, the resulting polynomial, and a numerical sanity check.
Related links:
- Derivative Calculator — the building blocks of every Taylor series
- Limit Calculator — convergence is a limit question
- Integral Calculator — Taylor series can be integrated term-by-term