MATH 136 -- AP Calculus
Taylor polynomial examples
December 1, 2003
Taylor polynomials for
> | p3:=convert(taylor(sin(x),x=0,4),polynom); |
> | p5:=convert(taylor(sin(x),x=0,6),polynom); |
> | p7:=convert(taylor(sin(x),x=0,8),polynom); |
> | plot([p3,sin(x)],x=-2..2,color=[blue,red]); |
> | plot([p5,sin(x)],x=-3..3,color=[blue,red]); |
> | plot([p7,sin(x)],x=-4..4,color=[blue,red]); |
For this function, as the degree of the Taylor polynomial increases,
we get a better and better approximation to the function, on a larger
and larger interval of x - values.