DEtools
DFactorLCLM
write a linear differential operator as an LCLM
Calling Sequence
Parameters
Description
Examples
DFactorLCLM(L, domain)
L
-
differential operator
domain
(optional) list containing two names
The DFactorLCLM routine accepts a differential operator L with rational function coefficients as its first argument.
The routine returns an LCLM factorization, which is a list of operators [L1, .., Lr] such that L is a rational function times LCLM(L1, .., Lr), and the order of L is the sum of the orders of L1, .., Lr. The operators L1, .., Lr may have a non-trivial factorization (use DFactor), but they do not have a non-trivial LCLM factorization.
The bases of solutions of L1, .., Lr form a basis of the solutions of L.
The second argument domain describes the differential algebra. If this argument is the list [Dx,x], then the differential operators will be notated with the symbols Dx and x. They are viewed as elements of the differential algebra C(x)[Dx] where C is the field of constants.
If the argument domain is omitted, then the differential specified by the environment variable _Envdiffopdomain will be used. If this environment variable is not set, then the argument domain may not be omitted.
This function is part of the DEtools package, and so it can be used in the form DFactorLCLM(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[DFactorLCLM](..).
with⁡DEtools:
_Envdiffopdomain≔DF,x:
L≔DF4−2⁢x⁢DF2−2⁢DF+1+x2
L≔DF4−2⁢DF2⁢x+x2−2⁢DF+1
ode≔diffop2de⁡L,y⁡x
ode≔x2+1⁢y⁡x−2⁢ⅆⅆxy⁡x−2⁢x⁢ⅆ2ⅆx2y⁡x+ⅆ4ⅆx4y⁡x
v≔DFactorLCLM⁡L
v≔DF2−x−I,DF2−x+I
sol_ode≔map⁡i↦op⁡dsolve⁡diffop2de⁡i,y⁡x,output=basis,v
sol_ode≔AiryAi⁡I+x,AiryBi⁡I+x,AiryAi⁡x−I,AiryBi⁡x−I
See Also
DEtools[DFactor]
DEtools[eigenring]
DEtools[LCLM]
diffop
Download Help Document