FunctionAdvisor/series
return the series expansion of a given mathematical function
Calling Sequence
Parameters
Description
Examples
FunctionAdvisor(series, math_function)
series
-
literal name; 'series'
math_function
Maple name of mathematical function
The FunctionAdvisor(series, math_function) command returns the series expansion of the function when the system can compute it. Otherwise, the command returns NULL.
The order of the series expansion in the output is set to four. On the left-hand side there is the corresponding function call to compute the series in Maple to facilitate copy and paste. If you change the order in the calling sequence, it returns the number of terms requested.
FunctionAdvisor⁡series,JacobiTheta3
series⁡JacobiTheta3⁡z,q,z,4=2⁢∑_k1=1∞⁡q_k12+1−4⁢∑_k1=1∞⁡q_k12⁢_k12⁢z2+O⁡z4,series⁡JacobiTheta3⁡z,q,q,4=1+2⁢cos⁡2⁢z⁢q+O⁡q4
FunctionAdvisor⁡series,sin
series⁡sin⁡z,z,4=z−16⁢z3+O⁡z5
The variables used by the FunctionAdvisor command to create the function calling sequences are local variables. Therefore, the previous example does not depend on z.
depends⁡,z
false
To make the FunctionAdvisor command return results using global variables, pass the function call itself.
FunctionAdvisor⁡series,sin⁡z
true
Note that for some functions Maple knows how to compute the series expansion with respect to more than one function parameter. In these cases, a sequence of series expansions is returned.
FunctionAdvisor⁡series,Β
series⁡Β⁡x,y,x,4=x−1+−Ψ⁡y−γ+π212+γ22−Ψ⁡1,y2+Ψ⁡y22+Ψ⁡y⁢γ⁢x+−ζ⁡33−π2⁢γ12−γ36−Ψ⁡2,y6+Ψ⁡1,y⁢Ψ⁡y2−Ψ⁡y36+γ⁢Ψ⁡1,y2−γ⁢Ψ⁡y22−Ψ⁡y⁢γ22−Ψ⁡y⁢π212⁢x2+O⁡x3
See Also
depends
FunctionAdvisor
FunctionAdvisor/asymptotic_expansion
FunctionAdvisor/topics
Download Help Document