The MultiSeries package
Calling Sequence
Description
Examples
MultiSeries:-command(arguments)
command(arguments)
The MultiSeries package is still under development. It is very likely that the functionality will change in the next release of Maple. Thus code using this package may not be backwards compatible with the next release of Maple.
The MultiSeries package performs asymptotic and series expansions in general asymptotic scales.
The functions provided by the package are:
AddFunction
asympt
FunctionSupported
GetFunction
LeadingTerm
limit
multiseries
RemoveFunction
series
SeriesInfo
taylor
For help with a particular function see MultiSeries:-command, where command is taken from the above list.
The simplest use of the package is by overriding the standard asympt, series, limit using with. The corresponding MultiSeries functions are often more powerful than the default ones, but require more computational time.
The variable is assumed to tend to its limit along a ray coming from the origin. When the limit point is 0, the variable tends to 0+. This direction can be changed by a simple change of variable (see the examples in multiseries).
Two other differences with the original functions are that the O⁡... term corresponds more closely to the classical mathematical definition, and the result is undefined instead of a range for limits of oscillating functions.
The most comprehensive access to multiseries expansion in the MultiSeries package is provided by the function multiseries.
Computations that cannot be performed with the standard limit, series, asympt:
limit⁡ln⁡Γ⁡I⁢xΓ⁡xx⁢ln⁡x,x=∞
limx→∞⁡ln⁡Γ⁡I⁢xΓ⁡xx⁢ln⁡x
asympt⁡binomial⁡n+a,n,n,3
Error, (in asympt) unable to compute series
asympt⁡Γ⁡x+exp⁡−xΓ⁡x−1,x,3
O⁡1x3
series⁡BesselJ⁡a,z,z,3
Error, (in `series/function`) unable to compute series
Computations that lead to a different result:
series⁡11−x⁢ln⁡x,x,3
1+ln⁡x⁢x+ln⁡x2⁢x2+O⁡x3
limit⁡sin⁡x,x=∞
−1..1
The same commands after loading the package:
with⁡MultiSeries
AddFunction,FunctionSupported,GetFunction,LeadingTerm,RemoveFunction,SeriesInfo,asympt,limit,multiseries,series,taylor
−1
cos⁡ln⁡n⁢ℑ⁡aΓ⁡a⁢a+I⁢sin⁡ln⁡n⁢ℑ⁡aΓ⁡a⁢a⁢1n−ℜ⁡a+cos⁡ln⁡n⁢ℑ⁡a⁢a2⁢Γ⁡a+cos⁡ln⁡n⁢ℑ⁡a2⁢Γ⁡a+I⁢sin⁡ln⁡n⁢ℑ⁡a⁢a2⁢Γ⁡a+I⁢sin⁡ln⁡n⁢ℑ⁡a2⁢Γ⁡a⁢1n1−ℜ⁡a+cos⁡ln⁡n⁢ℑ⁡a⁢a38⁢Γ⁡a+cos⁡ln⁡n⁢ℑ⁡a⁢a212⁢Γ⁡a−cos⁡ln⁡n⁢ℑ⁡a⁢a8⁢Γ⁡a−cos⁡ln⁡n⁢ℑ⁡a12⁢Γ⁡a+I⁢sin⁡ln⁡n⁢ℑ⁡a⁢a38⁢Γ⁡a+I⁢sin⁡ln⁡n⁢ℑ⁡a⁢a212⁢Γ⁡a−I⁢sin⁡ln⁡n⁢ℑ⁡a⁢a8⁢Γ⁡a−I⁢sin⁡ln⁡n⁢ℑ⁡a12⁢Γ⁡a⁢1n2−ℜ⁡a+O⁡−a+12576+a+12⁢a288+1288+13456⁢ⅇI⁢ln⁡n⁢ℑ⁡a+ⅇI⁢ln⁡n⁢ℑ⁡a⁢−a+1336+a+12⁢a+1224+a144+1144−−a+122+a+1⁢a+12+112224+1+ⅇI⁢ln⁡n⁢ℑ⁡a⁢2⁢π⁢1n3−ℜ⁡a
ln⁡x−12⁢x−112⁢x2+O⁡ln⁡xx3ⅇx
zaΓ⁡a+1⁢ⅇln⁡2⁢a−z2+a4⁢a+1⁢Γ⁡a+1⁢ⅇln⁡2⁢a+O⁡z4+a
1−ln⁡1x⁢x+ln⁡1x2⁢x2+O⁡x3
undefined
The LeadingTerm command is a useful way to find the leading term in the asymptotic or local behavior of a function:
LeadingTerm⁡ln⁡cot⁡ln⁡xx,x=∞
ln⁡x
See Also
MultiSeries/scale
MultiSeries:-AddFunction
MultiSeries:-multiseries
MultiSeries:-SeriesInfo
type/SERIES
Download Help Document