DEtools
singularities
compute the regular and irregular singular points of a homogeneous linear ordinary differential equation (ODE)
Calling Sequence
Parameters
Description
Examples
References
singularities(ODE, y(x))
singularities(L, x)
ODE
-
linear homogeneous ordinary differential equation
y(x)
optional, the dependent variable, required when the ODE contains derivatives of more than one unknown function
L
list with the coefficients of y, y', ... entering the ODE
x
independent variable, required only when there is more than one symbol entering the list with the ODE coefficients
The singularities command computes the regular and irregular singular points of a given homogeneous linear ODE. The ODE could be given as a standard differential equation in, say, y⁡x, or as a list with the coefficients of y⁡x,y'⁡x,y''⁡x,... (see DEtools[convertAlg]).
Given a nth order linear homogeneous ODE with rational coefficients Ai, i ranging from 0 to n and An=1,
A0⁢y+A1⁢y⁢' +...+yn=0
x0 is a singular point of the equation if any of the coefficients Ai has a singularity at it. Otherwise, all the Ai are analytic at x0 and the point is an ordinary point.
A singular point x0 of a nth order linear ODE can be regular or irregular. The singularity is regular whenever
x−x0n−i⁢Ai
is analytic at x=x0 for all Ai. For example, in the case of second order linear ODEs, a singularity at x0 is regular if both
x−x02⁢A0,
x−x0⁢A1
are analytic at x=x0.
The singularities command returns results as a list of equations with the singular points and their classification
rⅇgular=x0,x1,…,ⅈrrⅇgular=x3,x4,…,FAIL=x6,x7,…
The regular={...} and irregular={...} equations are present in the output regardless of the sets in their right-hand sides being empty. The equation FAIL={...} is present only when the command failed in classifying some of the singular points.
The nature of the point x0=∞ is determined by changing variables x=1t: the original ODE in x has a (regular or irregular) singularity at infinity whenever the changed ODE in t has a (regular or irregular) singularity at t0=0.
This function is part of the DEtools package, and so it can be used in the form singularities(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[singularities](..).
with⁡DEtools,singularities,hyperode,convertAlg,dpolyform
singularities,hyperode,convertAlg,dpolyform
The 2F1 hypergeometric equation, that is, the linear ODE whose solutions involve special functions of the 2F1 class
ODE_2F1≔hyperode⁡hypergeom⁡a,b,c,x,y⁡x=0
ODE_2F1≔y⁡x⁢a⁢b+a+b+1⁢x−c⁢ⅆⅆxy⁡x+x2−x⁢ⅆ2ⅆx2y⁡x=0
has three regular singular points.
singularities⁡ODE_2F1
regular=0,1,∞,irregular=∅
The equation that has special functions of the 1F1 class as a solution, that is, the confluent 1F1 hypergeometric equation
ODE_1F1≔hyperode⁡hypergeom⁡a,c,x,y⁡x=0
ODE_1F1≔a⁢y⁡x+−c+x⁢ⅆⅆxy⁡x−x⁢ⅆ2ⅆx2y⁡x=0
has one regular singularity at zero and one irregular at infinity.
singularities⁡ODE_1F1
regular=0,irregular=∞
You can input the ODE as a list of coefficients of the unknown of the equation and its derivatives (see DEtools[convertAlg])
L≔convertAlg⁡ODE_1F1,y⁡x
L≔a,−c+x,−x,0
singularities⁡L,x
Bessel equation and its singularities
Bessel_ODE≔op⁡1,1,dpolyform⁡y⁡x=BesselJ⁡a,x,no_Fn
Bessel_ODE≔ⅆ2ⅆx2y⁡x=−ⅆⅆxy⁡xx+a2−x2⁢y⁡xx2
singularities⁡Bessel_ODE
Fractional linear transformations, also called Mobius transformations, do not change the structure of the singularities, they only move the locations of the poles. So, this other equation, obtained by changing variables x -> α⁢x+βγ⁢x+δ in the Bessel_ODE, also has one regular and one irregular singularity:
ODE2≔diff⁡y⁡x,x,x=−2⁢α⁢γ⁢x+α⁢δ+γ⁢βα⁢x+β⁢γ⁢x+δ⁢diff⁡y⁡x,x+α⁢δ−γ⁢β2⁢−β−α⁢x+δ⁢a+γ⁢x⁢a⁢β+α⁢x+δ⁢a+γ⁢x⁢aγ⁢x+δ4⁢α⁢x+β2⁢y⁡x
ODE2≔ⅆ2ⅆx2y⁡x=−2⁢α⁢γ⁢x+α⁢δ+γ⁢β⁢ⅆⅆxy⁡xα⁢x+β⁢γ⁢x+δ+α⁢δ−γ⁢β2⁢γ⁢x⁢a+δ⁢a−α⁢x−β⁢γ⁢x⁢a+δ⁢a+α⁢x+β⁢y⁡xγ⁢x+δ4⁢α⁢x+β2
singularities⁡ODE2
regular=−βα,irregular=−δγ
An example with four regular singular points
ODE3≔−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,x=0
ODE3≔−792⁢x73−37500536792⁢y⁡x+72⁢x⁢x−17−53⁢x36+209⁢ⅆⅆxy⁡x+x⁢7⁢x−4⁢x−1⁢ⅆ2ⅆx2y⁡x=0
singularities⁡ODE3
regular=0,1,47,∞,irregular=∅
Ince, E.L. Ordinary Differential Equations. New York: Dover Publications, 1956.
See Also
DEtools[convertAlg]
DEtools[dpolyform]
DEtools[hyperode]
DEtools[indicialeq]
FunctionAdvisor,singularities
singular
Download Help Document