IntegrateSols - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


LinearOperators

  

IntegrateSols

  

check for the existence of a primitive element, and perform accurate integration

 

Calling Sequence

Parameters

Description

Examples

References

Calling Sequence

IntegrateSols(L, x, case)

Parameters

L

-

an Ore operator

x

-

the name of the independent variable

case

-

a parameter indicating the case of the equation ('differential' or 'shift')

Description

• 

The LinearOperators[IntegrateSols] function performs "accurate integration". That is, it solves the following problem. Let y satisfy L(y)=0 and g satisfy delta(g)=y, where delta means the usual derivative in the differential case and the first difference in the shift case. The routine builds an annihilator S for g of the same degree as that of L, and an operator K such that g=K(y) if both exist. Otherwise, it returns NULL.

• 

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+xD+x+1D2+D3.

• 

There are routines in the package that convert between Ore operators and the corresponding Maple expressions. See LinearOperators[converters].

Examples

withLinearOperators:

exprsqrtxlogx2

exprxlnx2

(1)

An annihilator for expr is

LFactoredAnnihilatorexpr,x,differential

LFactoredOrePoly32x,1,12x,1,12x,1

(2)

which can be written in non-factored form as

LFactoredOrePolyToOrePolyL,x,differential

LOrePoly18x3,14x2,32x,1

(3)

IntegrateSolsL,x,differential

OrePoly278x3,134x2,32x,1,OrePoly26x27,4x29,8x327

(4)

References

  

Abramov, S. A., and van Hoeij, M. "Integration of Solutions of Linear Functional Equations." Integral Transforms and Special Functions. (1999): 3-12.

See Also

DEtools/integrate_sols

LinearOperators

LinearOperators[converters]

LinearOperators[FactoredAnnihilator]

LinearOperators[FactoredOrePolyToOrePoly]