may1-display

Let f(x)=e ^ x

Compare e^x and the line tangent to e^x at x=0. Near 0, they look alike, but they don't stay close for very long.

> plot([exp(x), 1+x],x = -3 .. 3,color = [black, red]...

[Maple Plot]

The tangent line happens to be the 1st degree polynomial which agrees with e^x at x=0, and whose first derivative also agrees with e^x at x=0.

What if we create a 2nd degree polynomial which agrees with e^x at x=0, and whose two first two derivatives match the first two derivatives of e^x at x=0?

> plot([exp(x), 1+x, 1+x+x^2/2!],x = -3 .. 3,color = ...

[Maple Plot]

Now look at how well a 6th degree polynomial whose 6 derivatives match the first 6 derivatives of exp(x) at x=0 matches the curve!

> plot([exp(x), 1+x, 1+x+x^2/2!, 1+x+x^2/2!+x^3/3!+x^...
plot([exp(x), 1+x, 1+x+x^2/2!, 1+x+x^2/2!+x^3/3!+x^...

[Maple Plot]

> %?