TheoremComplete

Taylor's Theorem with Lagrange Remainder

Taylor's Theorem generalizes the Mean Value Theorem to higher-order approximations. The Lagrange form of the remainder is proved using Rolle's theorem applied to an auxiliary function. This result is essential for error analysis in numerical methods and understanding convergence of Taylor series.


Statement

Theorem5.1Taylor's Theorem

Let f:[a,b]Rf : [a, b] \to \mathbb{R} be (n+1)(n+1) times differentiable. For x0,x[a,b]x_0, x \in [a, b], there exists cc between x0x_0 and xx such that

f(x)=k=0nf(k)(x0)k!(xx0)k+f(n+1)(c)(n+1)!(xx0)n+1.f(x) = \sum_{k=0}^n \frac{f^{(k)}(x_0)}{k!}(x - x_0)^k + \frac{f^{(n+1)}(c)}{(n+1)!}(x - x_0)^{n+1}.


Proof Sketch

Proof

Define Tn(x)=k=0nf(k)(x0)k!(xx0)kT_n(x) = \sum_{k=0}^n \frac{f^{(k)}(x_0)}{k!}(x - x_0)^k and Rn(x)=f(x)Tn(x)R_n(x) = f(x) - T_n(x). We want to show Rn(x)=f(n+1)(c)(n+1)!(xx0)n+1R_n(x) = \frac{f^{(n+1)}(c)}{(n+1)!}(x - x_0)^{n+1} for some cc between x0x_0 and xx.

Define the auxiliary function

g(t)=f(x)k=0nf(k)(t)k!(xt)kK(xt)n+1,g(t) = f(x) - \sum_{k=0}^n \frac{f^{(k)}(t)}{k!}(x - t)^k - K(x - t)^{n+1},

where KK is chosen so that g(x0)=0g(x_0) = 0. Then g(x)=0g(x) = 0 as well (since the sum telescopes to f(x)f(x) when t=xt = x).

By Rolle's theorem applied repeatedly, there exists cc between x0x_0 and xx such that g(n+1)(c)=0g^{(n+1)}(c) = 0. Computing g(n+1)(c)g^{(n+1)}(c) yields

g(n+1)(c)=f(n+1)(c)+K(n+1)!=0,g^{(n+1)}(c) = -f^{(n+1)}(c) + K(n+1)! = 0,

so K=f(n+1)(c)(n+1)!K = \frac{f^{(n+1)}(c)}{(n+1)!}. Substituting back into g(x0)=0g(x_0) = 0 gives the desired formula.


Summary

Taylor's Theorem extends the MVT to polynomial approximations of arbitrary order. The Lagrange remainder provides error estimates essential for numerical analysis. See Taylor's Theorem concept for applications.