The purpose of this lab is to use Maple to introduce you to Taylor polynomial approximations to functions, including some applications.
The general form of the Taylor polynomial approximation of order
to
is given by the following
cp ~bfarr/.mapleinit ~If nothing happens when you press enter then you did it correctly. Otherwise try again. This will give you access to the package and therefore you can call it up on the Maple screen with the command
>with(CalcP7);
The exponential function can be approximated at a base point zero with a polynomial of order four using the following command.
>Taylor(exp(x),x=0,4);You might want to experiment with changing the order. To see
>TayPlot(exp(x),x=0,{4},x=-4..4);This plots the exponantial and three approximating polynomials.
>TayPlot(exp(x),x=0,{2,3,4},x=-2..2);Notice that the further away from the base point, the further the polynomial diverges from the function. the amount the polynomial diverges i.e. its error, is simply the difference of the function and the polynomial.
>plot(abs(exp(x)-Taylor(exp(x),x=0,3)),x=-2..2);This plot shows that in the domain x from -2 to 2 the error around the base point is zero and the error is its greatest at x = 2 with a difference of over one. You can experiment with the polynomial orders to change the accuracy. If your work requires an error of no more than 0.2 within a given distance of the base point then you can plot your accuracy line y = 0.2 along with the difference of the function and the Taylor approximation polynomial.
>plot([0.2,abs(exp(x)-Taylor(exp(x),x=0,3))],x=-2..2,y=0..0.25);We knew this would have some of its error well above 0.2. Change the order from three to four. As you can see there are still some values in the domain close to x = 2 whose error is above 0.2. Now try an order of 5. Is the error entirely under 0.2 between x = -2 and x = 2? Larger orders will work as well but order five is the minimum order that will keep the error under 0.2 within the given domain.
A theorem
from complex variables says that the radius of convergence of the
Taylor series of a function like is the distance between the base
point (
in this case) and the nearest singularity of the
function. By singularity, what is meant is a value of
where the
function is undefined. Where is
undefined? Is the distance between
this point and the base point consistent with your guess of the radius
of convergence from the plot?