Look for this session in /home/ceng303/maple/sessions as: ch1_10.mw
Session 1.10 Series Approximations
>taylor(tan(x),x,3); Taylor series of tan(x) around x. Maple assumes the center point to be the origin. The 3 in the arugument list gives the number of terms in the series.
>taylor(tan(x),x,7); Specifying the order of the first neglected term to be 7 gives two more terms in the series.
>taylor(x/(x^2+3*x+2),x,5); Another series centered at the origin.
> taylor(x/(x^2+3*x+2),x=-1,5);
Attempt to determine Taylor series around x=-1, but there is a pole there.
Error, does not have a
taylor expansion, try series()
> series(x/(x^2+3*x+2),x=-1,5);
The series is defined around x=-1. The first term is the pole at -1.
Defaults and problems with using the taylor and series functions
>taylor(sin(x),x); No order or point at the center specified. Maple assumes a default value of 6 for the order and the origin as the center.
>taylor(1/(1+x),x); Default order : 6
>series(sin(x)); No variable specified as series variable
Error, wrong number (or
type) of parameters in function series
>