DEtools
indicialeq
compute the indicial polynomial of a homogeneous linear ODE
Calling Sequence
Parameters
Description
Examples
References
indicialeq(des, ivar, alpha, dvar)
des
-
homogeneous linear ordinary differential equation or its list form
ivar
independent variable
alpha
point
dvar
(optional) dependent variable
This routine is used to determine either the indicial equation at the point ivar=α for a given homogeneous linear ordinary differential equation, or an equivalent list form (either as generated by DEtools[convertAlg] or as a coefficient list). If the ODE is regular singular (also called Fuchsian) at ivar=α, then the degree of the indicial equation equals the order of the ODE; otherwise it is smaller than the order of the ODE. The roots of the indicial equation are called the exponents of the ODE at ivar=α.
des may be in the standard differential equation form, or in one of two list forms: 1) a list as generated by DEtools[convertAlg], or 2) a coefficient list (as in the first element of a list generated by DEtools[convertAlg]).
dvar must be specified when des is input as a differential equation.
The definition of indicial equation is as follows. Let n be a new variable, substitute dvar=ivar−αn into the equation, take the series expansion at ivar=α, and take the coefficient of the first non-zero term. The result will be a polynomial in n, which by definition is the indicial equation (indicialeq replaces n by ivar so that no new variable is needed, and also divides by the leading coefficient). This definition is illustrated by an example below.
This function is part of the DEtools package, and so it can be used in the form indicialeq(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[indicialeq](..).
with⁡DEtools:
Coefficient list form:
coefs≔21⁢x2−x+1,0,100⁢x2⁢x−12:
indicialeq⁡coefs,x,0
x2−x+21100=0
indicialeq⁡coefs,x,1
Differential equation form:
DE≔−72⋅1173⁢x−1+58+263⁢y⁡x+727⁢x⁢x−1−209⁢x−1+3⁢x4⁢diff⁡y⁡x,x+x⁢7⁢x−4⁢x−1⁢diff⁡y⁡x,`$`⁡x,2:
indicialeq⁡DE,x,47,y⁡x
x2−5931764⁢x=0
indicialeq⁡DE,x,1,y⁡x
x2−34⁢x=0
indicialeq⁡DE,x,0,y⁡x
x2−49⁢x=0
This could also have been computed directly from the definition of the indicial equation, as follows:
P≔eval⁡DE,y⁡x=xn:
P≔series⁡normal⁡Pxn,x=0:
P≔subs⁡n=x,tcoeff⁡convert⁡P,polynom,x:
Plcoeff⁡P,x
x2−49⁢x
ConvertAlg form:
Y≔2⁢x2+5⁢x3⁢diff⁡y⁡x,x,x+5⁢x−x2⁢diff⁡y⁡x,x+1+x⁢y⁡x=0:
Y≔convertAlg⁡Y,y⁡x
Y≔1+x,−x2+5⁢x,5⁢x3+2⁢x2,0
indicialeq⁡Y,x,−25,y⁡x
x2−3710⁢x=0
indicialeq⁡Y,x,0,y⁡x
x2+32⁢x+12=0
[1] Ince, E.L. Ordinary Differential Equations, Chapters XVI and XVII. New York: Dover Publications, 1956.
See Also
DEtools/gen_exp
DEtools[convertAlg]
Download Help Document