asympt
asymptotic expansion
Calling Sequence
Parameters
Description
Examples
Compatibility
asympt(f, x)
asympt(f, x, n)
f
-
algebraic expression in x
x
name
n
positive integer (truncation order)
oterm
(optional) truefalse
The function asympt computes the asymptotic expansion of f with respect to the variable x (as x approaches infinity).
The third argument n specifies the truncation order of the series expansion. If no third argument is given, the value of the global variable Order (default Order = 6) is used.
Specifically, asympt is defined in terms of the series function
subs⁡x=1x,series⁡subs⁡x=1x,f,x=0,n
However, the expression returned will be in sum-of-products form rather than in the series form.
If the optional argument oterm=false is given, then convert(result,polynom) is applied before returning.
asympt⁡x1−x−x2,x
−1x+1x2−2x3+3x4−5x5+O⁡1x6
asympt⁡n!sqrt⁡2⁢π,n,3
11n+1n12+1n32288+O⁡1n521nn⁢ⅇn
asympt⁡exp⁡x2⁢1−erf⁡x,x
1π⁢x−12⁢π⁢x3+34⁢π⁢x5+O⁡1x7
asympt⁡sqrt⁡π2⁢BesselJ⁡0,x,x,3
sin⁡x+π4⁢1x−cos⁡x+π4⁢1x328−9⁢sin⁡x+π4⁢1x52128+O⁡1x72
series⁡ln⁡xx−1,x,8
−ln⁡x−ln⁡x⁢x−ln⁡x⁢x2−ln⁡x⁢x3−ln⁡x⁢x4−ln⁡x⁢x5−ln⁡x⁢x6−ln⁡x⁢x7+O⁡x8
asympt⁡ln⁡xx−1,x,8
ln⁡xx+ln⁡xx2+ln⁡xx3+ln⁡xx4+ln⁡xx5+ln⁡xx6+ln⁡xx7+O⁡1x8
asympt⁡ln⁡xx−1,x,8,oterm=false
ln⁡xx+ln⁡xx2+ln⁡xx3+ln⁡xx4+ln⁡xx5+ln⁡xx6+ln⁡xx7
The asympt command was updated in Maple 2016; see Advanced Math.
The asympt command was updated in Maple 2024.
The oterm option was introduced in Maple 2024.
For more information on Maple 2024 changes, see Updates in Maple 2024.
See Also
limit
series
Download Help Document