Definition
A Taylor Polynomial is a finite sum of terms from a Taylor series that provides a polynomial approximation of a more complex function near a point .
- How to read: “T-n of x equals the sum from i equals zero to n of the i-th derivative of f at a, over i factorial, times (x minus a) to the i.”
- Meaning: The best degree- polynomial approximation to near , built from derivatives at the center point.
Why It Matters
Approximation is the heart of engineering. We rarely need the ‘exact’ answer; we need an answer that is ‘good enough’ within a certain range. Taylor polynomials provide a rigorous way to trade off computational complexity for accuracy.
Core Concepts
- Degree (): The highest power in the polynomial. As increases, the approximation generally fits the original function over a larger interval and with higher precision.
- Center (): The point where the approximation is exact (i.e., ).
- Agreement of Derivatives: By construction, and its first derivatives match the original function and its first derivatives at the center .
- Truncation Error: The difference between the actual function and the polynomial, .
- How to read: “R-n of x equals f of x minus T-n of x.”
- Meaning: The remainder (error) from cutting off the infinite series at degree . Bounded by Taylor’s Inequality.