Andromeda
Note

Taylor Polynomials

Definition

A Taylor Polynomial Tn(x)T_n(x) is a finite sum of terms from a Taylor series that provides a polynomial approximation of a more complex function f(x)f(x) near a point aa. Tn(x)=i=0nf(i)(a)i!(xa)iT_n(x) = \sum_{i=0}^{n} \frac{f^{(i)}(a)}{i!} (x-a)^i

  • 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-nn polynomial approximation to ff near x=ax = a, 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 (nn): The highest power in the polynomial. As nn increases, the approximation generally fits the original function over a larger interval and with higher precision.
  • Center (aa): The point where the approximation is exact (i.e., Tn(a)=f(a)T_n(a) = f(a)).
  • Agreement of Derivatives: By construction, Tn(x)T_n(x) and its first nn derivatives match the original function and its first nn derivatives at the center aa.
  • Truncation Error: The difference between the actual function and the polynomial, Rn(x)=f(x)Tn(x)R_n(x) = f(x) - T_n(x).
    • 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 nn. Bounded by Taylor’s Inequality.

Connected Concepts