|
Calling Sequence
|
|
convert(f, FormalPowerSeries, eq, n, opts)
convert(f, FormalPowerSeries, eq, a(n), opts)
convert(f, FPS, eq, n, opts)
convert(f, FPS, eq, a(n), opts)
|
|
Parameters
|
|
f
|
-
|
algebraic expression
|
eq
|
-
|
equation (e.g. z=z0) or name (e.g. z); optional if f contains only one variable
|
n
|
-
|
(optional) name of the summation variable in the output
|
a(n)
|
-
|
(optional) name for the nth series coefficient in the output, which will be a recursive formula for these coefficients instead of a formal power series
|
opts
|
-
|
sequence of optional equations of the form keyword=value; possible keywords are method, differentialorder, recurrence, or output
|
|
|
|
|
Returns
|
|
•
|
When a hypergeometric type representation is returned, it can either be a single inert Sum, or a linear combination of such Sums, possibly plus some initial terms that are linear combinations of rational powers of or .
|
•
|
When such a representation cannot be obtained, or when a recursive formula is requested, the output is a sequence of two expressions. The first return value is similar to the representation described above, except that the coefficients of one of the Sums are indeterminate, such as, e.g., . The second return value is an REsol data structure giving a recurrence relation for , including initial conditions.
|
|
|
Options
|
|
•
|
differentialorder: positive integer or list of two positive integers ; upper bound(s) for the order of the differential equation(s) (DE) internally computed for f. Default: for holonomic DEs and for quadratic DEs. If differentialorder= is given, then the upper bound for holonomic DEs is , and the upper bound for quadratic DEs is if , if , and otherwise.
|
•
|
method: one of hypergeometric, holonomic, quadratic, or default; specifies the underlying computational method that will be used. method=hypergeometric looks for a closed-form formula of the representation whereas holonomic and quadratic look for a recursive formula from a holonomic or a quadratic differential equation satisfied by f. The default method applies the three methods one after the other and stops once a result is found.
|
•
|
recurrence: either true or false (default). If recurrence=true then a recursive formula with the coefficient a(n) is sought. This reduces the methods applied to only the two options holonomic and/or quadratic. If a(n) is specified as the 4th argument, then the default is recurrence=true. If both options method and recurrence are given, the former takes precedence.
|
•
|
output: expanded or combined (default); controls the presentation of hypergeometric type power series (method=hypergeometric). output=combined gathers series of same power in one summation, whereas output=expanded puts linearly (rationally) independent coefficients in different summations.
|
|
|
Description
|
|
•
|
This command computes the power series representation of linear combinations of meromorphic functions and some special functions.
|
•
|
convert(f, FormalPowerSeries, z=z0), or, equivalently, convert(f, FPS, z=z0), tries to find a formal power series expansion for f with respect to the variable z at the point of expansion z0.
|
•
|
If eq is just a name z, then the expansion point is assumed.
|
•
|
The output series is a hypergeometric type power series, or a recursive formula of the representation sought when a hypergeometric type representation cannot be computed. The user may also specify the desired representation using the method option.
|
•
|
See the references for a precise definition of what is called hypergeometric type power series. It generalizes the family of Laurent-Puiseux series having hypergeometric term coefficients.
|
•
|
The command first looks for a holonomic differential equation satisfied by f (see DEtools[FindODE]); hence Maple must know the derivatives of f.
|
•
|
If the summation variable n is not specified, then one of of the variable names n, n0, n1, etc. is chosen.
|
•
|
For a complete list of known functions, see inifcns.
|
|
|
Examples
|
|
Illustration for the output option
Illustration for the method option. All the outputs below can be obtained by the default option. However, one can directly specify the method that yields the result in order to save time. and are holonomic but not of hypergeometric type.
and are not holonomic. Bernoulli numbers:
Different results from the three methods
The quadratic method detects non-trivial identities
Illustration for the recurrence option. One of and is used for the method.
More examples.
|
|
References
|
|
|
Bertrand Teguia Tabuguia and Wolfram Koepf, Symbolic conversion of holonomic functions to hypergeometric type power series. Computer Algebra issue of the Journal of Programming and Computer Software, February 2022.
|
|
Bertrand Teguia Tabuguia, Power Series Representations of Hypergeometric Type and Non-Holonomic Functions in Computer Algebra. Ph.D. thesis, University of Kassel, Germany, May 2020.
|
|
Bertrand Teguia Tabuguia and Wolfram Koepf, Power series representations of hypergeometric type functions. In Corless R., Gerhard J., Kotsireas I. (eds): Maple in Mathematics Education and Research. MC 2020. Communications in Computer and Information Science, Springer, July 2021.
|
|
Koepf, Wolfram, Power series in computer algebra. Journal of Symbolic Computation, Vol. 13, (1992): 581-603.
|
|
|
Compatibility
|
|
•
|
The output option was added in Maple 2022.
|
•
|
The method=holonomic, method=quadratic, and method=default options were added in in Maple 2022.
|
•
|
The option was added in Maple 2022.
|
•
|
method=exponential and method=rational were workaround methods for when method=hypergeometric could not find a representation. However, this is no longer the case; the new method=hypergeometric always finds a better and a nicer power series representation. method=exponential or method=rational are still accepted and are equivalent to method=hypergeometric.
|
•
|
The dir option is no longer supported. It is ignored when specified. As a workaround, one can make corresponding assumptions on the main variable.
|
•
|
The makereal option is not necessary because the algorithm prioritizes real (rational) coefficients. It is ignored when specified.
|
•
|
The convert/FormalPowerSeries command was updated in Maple 2022.
|
|
|
|