LinearOperators
Apply
apply an Ore polynomial to a function
Calling Sequence
Parameters
Description
Examples
References
Apply(L,expr, x, case)
L
-
Ore polynomial
expr
algebraic expression
x
name of the independent variable
case
parameter indicating the case of the equation ('differential' or 'shift')
The LinearOperators[Apply] function applies the polynomial L to the expression expr. The polynomial can be an OrePoly or a FactoredOrePoly structure.
A completely factored Ore operator is represented by a structure that consists of the keyword FactoredOrePoly and a sequence of lists. Each list consists of two elements and describes a first degree factor. The first element provides the zero degree coefficient and the second element provides the first degree coefficient. For example, in the differential case with a differential operator D, FactoredOrePoly([-1, x], [x, 0], [4, x^2], [0, 1]) describes the operator −1+xD⁡x⁡x2⁢D+4⁡D.
An Ore operator is a structure that consists of the keyword OrePoly with a sequence of coefficients starting with the one of degree zero. The coefficients must be rational functions in x. For example, in the differential case with the differential operator D, OrePoly(2/x, x, x+1, 1) represents the operator 2x+x⁢D+x+1⁢D2+D3.
There are routines in the package that convert between Ore operators and the corresponding Maple expressions. See LinearOperators[converters].
This command is part of the LinearOperators package, so it can be used in the form Apply(..) only after executing the command with(LinearOperators). However, it can always be used in the form LinearOperators[Apply](..).
expr≔exp⁡xx−1+sqrt⁡x2+1
expr≔ⅇxx−1+x2+1
L≔LinearOperatorsFactoredAnnihilator⁡expr,x,differential
L≔FactoredOrePoly⁡x4+6⁢x2−2⁢x+3x3−x2+x+1⁢x2+1⁢x−1,1,1x−12,1
LinearOperatorsApply⁡L,expr,x,differential
0
Abramov, S. A., and Zima, E. V. "Minimal Completely Factorable Annihilators." In Proceedings of ISSAC '97, pp. 290-297. Edited by Wolfgang Kuchlin. New York: ACM Press, 1997.
See Also
LinearOperators[converters]
LinearOperators[FactoredAnnihilator]
Download Help Document