Complicated functions like or 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: Here, is the value, is the slope, and is the displacement from center .
The general Taylor polynomial improves accuracy by adding higher-derivative terms: When the expansion center is , 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 .
| Term | Matches | Geometric Meaning |
|---|---|---|
| Constant | Initial value | |
| Linear | Initial slope | |
| Quadratic | Initial curvature |
| Feature | Description |
|---|---|
| Locality | Accuracy degrades as grows. |
| Common Pitfall | Expecting a truncated polynomial to hold far from . 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.