Infinite numeric series and power series expansions:
Series, Normal, Simplify and other functions.
Example 1. Generating a power series expansion of a given function by the build-in function Series[ ]. Here we expand the function about the point 0 (standard Taylor serie) to order 5. The form of the rеsidual member is also given.
Power series expansion for the same function about the point 1. To show it without the residual member we use the function Normal[ ].
Example 2. Taylor series expansion for the function .
The same as Example 2, but written in standard form.
Series[Exp[x],{x,0,7}]
Normal[%]
Example 3. Power series expansion of a trigonometric function. Showing the result with decimal fractions shows how fast the coefficients tend towards zero.
Series[Sin[2t],{t,0,20}]
N[Normal[%]]
Example 4. Here Mathematica will multiply two power series in advance and will show the expansion of the obtained function. We can use the function Simplify[ ] to get some simplification.
Example 5. Formal power series expansions with functions in the form of formulas.
Clear[a,f]
Series[f[t],{t,0,5}]
Series[f[t],{t,a,5}]
Example 6. Unspecified transformations with series are possible.
red2=Normal[Series[Tan[-a*x]*(1+Cos[2x]),{x,0,4}]]
red3=red2 *2 *(1-red2)
Simplify[%]
Example 7. In the obtained expansion in the upper example we can group the members according to ' x ' or ' a '. In the before last operator calculates the tangible value at a=1, whereas in the last a=1 and x=2 are replaced by using the symbol ' /. ' (forward inclined line and dot).
Example 8. Series for functions of two variables.
Example 9. Series can be manipulated like expressions:
Example 10. Series can be invesed by InverseSeries[ ] build-in function.
Created by Mathematica (December 21, 2007)