Courses / Mathematics I
Differential Calculus

Taylor Approximation

Complicated functions like x or e^x can be approximated near a point by polynomials built from their derivatives.

Mathematics I 222 words Free to read

Complicated functions like sinx\sin x or exe^x can be approximated near a point by polynomials built from their derivatives. Since polynomials use only basic arithmetic, this is how computers actually evaluate them.

The simplest case is the linear approximation: f(x)f(a)+f(a)(xa)f(x) \approx f(a) + f'(a)(x - a) Here, f(a)f(a) is the value, f(a)f'(a) is the slope, and (xa)(x-a) is the displacement from center aa.

The general Taylor polynomial improves accuracy by adding higher-derivative terms: f(x)f(a)+f(a)(xa)+f(a)2!(xa)2+f(a)3!(xa)3f(x) \approx f(a) + f'(a)(x-a) + \frac{f''(a)}{2!}(x-a)^2 + \frac{f'''(a)}{3!}(x-a)^3 When the expansion center is a=0a = 0, it is specifically called a Maclaurin series.

Terms & Pitfalls

Each term in a Taylor polynomial matches a specific geometric feature of the function at the center point aa.

TermMatchesGeometric Meaning
Constantf(a)f(a)Initial value
Linearf(a)f'(a)Initial slope
Quadraticf(a)f''(a)Initial curvature
FeatureDescription
LocalityAccuracy degrades as xa|x-a| grows.
Common PitfallExpecting a truncated polynomial to hold far from aa. A few terms are great nearby but can be wildly wrong far away.

More terms generally widen the region of accuracy, but a finite polynomial is always a local approximation.

Taylor Approximation

Practise this lesson

The explanation above is free to read. The graded practice for this lesson lives in the Tryals app.

10practice questions
2interactive scenes

Differential Calculus