How does your calculator compute sin(0.3) or e^2.5? These functions aren't directly computable—they're defined by their mathematical properties. The answer involves Taylor series: representing any smooth function as an infinite sum of polynomial terms. Polynomials are easy to compute with just multiplications and additions, and Taylor series convert complex functions into polynomial approximations accurate to any desired precision.

The Big Idea

A Taylor series expands a function f(x) around a point a as: f(x) = f(a) + f'(a)(x−a) + f''(a)(x−a)²/2! + f'''(a)(x−a)³/3! + ··· The nth term involves the nth derivative of f evaluated at a, divided by n!. Each term adds a correction capturing another aspect of the function's behavior near a. The zeroth-order approximation is just f(a)—a constant. Adding the first derivative gives a line tangent to f at a. Adding the second gives the best-fitting parabola. More terms yield increasingly accurate approximations over a wider range.

f(x) = Σ_{n=0}^∞ [f^(n)(a)/n!] × (x−a)^n

Famous Examples

Some Maclaurin series (Taylor series centered at 0) deserve memorization. e^x = 1 + x + x²/2! + x³/3! + ··· (all terms positive; converges everywhere). sin(x) = x − x³/3! + x⁵/5! − ··· (odd terms only, alternating signs). cos(x) = 1 − x²/2! + x⁴/4! − ··· (even terms only, alternating signs). 1/(1−x) = 1 + x + x² + x³ + ··· (the geometric series; converges for |x| < 1). These four series handle most functions encountered in physics and engineering, and their patterns reveal deep connections between seemingly different functions.

e^x = 1 + x + x²/2! + x³/3! + ··· sin(x) = x − x³/3! + x⁵/5! − ···

Euler's Formula

Taylor series reveal one of mathematics' most stunning identities. Substituting ix (where i = √−1) into the exponential series: e^(ix) = (1 − x²/2! + x⁴/4! − ···) + i(x − x³/3! + x⁵/5! − ···) = cos(x) + i·sin(x). This is Euler's formula. Setting x = π: e^(iπ) + 1 = 0, combining the five most fundamental constants in mathematics in a single equation. Taylor series make this connection transparent—they reveal that exponentials and trigonometric functions are not just analogous but literally the same complex exponential function.

e^(ix) = cos(x) + i·sin(x) → e^(iπ) + 1 = 0

Error and Convergence

A Taylor series truncated after n terms is a polynomial approximation with a quantifiable error. Taylor's remainder theorem bounds the error by a term involving the (n+1)th derivative and the distance from the expansion point. For sin(x) near x = 0, the first three terms (x − x³/6 + x⁵/120) give an error less than 0.00003 for |x| < 1. This quantitative error control is what makes Taylor approximations practical—you can achieve any desired accuracy by including enough terms. Calculators typically use optimized Chebyshev polynomial approximations that squeeze maximum accuracy from a given number of terms.

Physics Applications

Taylor series are indispensable in physics for extracting approximate solutions. For small angles, sin(θ) ≈ θ—the first Taylor term—simplifies pendulum analysis and gives the familiar period formula. For speeds much less than light, special relativity's energy E = mc²/√(1 − v²/c²) expands to E ≈ mc² + (1/2)mv² + ···—recovering Newtonian kinetic energy as the leading correction. Quantum perturbation theory uses Taylor expansions in the strength of a small interaction to solve problems that resist exact analytical treatment.

Conclusion

Taylor series reveal that smooth functions are, in a precise sense, made of polynomials. By expanding in derivatives, they expose a function's local structure and enable efficient computation. From the chips in your calculator to quantum perturbation theory, Taylor series provide the essential bridge between abstract mathematical functions and concrete numerical computations—turning the complex into the polynomial, one derivative at a time.