DEtools[singularities] - compute the regular and irregular singular points of a homogeneous linear ordinary differential equation (ODE)
|
Calling Sequence
|
|
singularities(ODE, y(x))
singularities(L, x)
|
|
Parameters
|
|
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
|
|
|
|
|
Description
|
|
•
|
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, , or as a list with the coefficients of (see DEtools[convertAlg]).
|
•
|
A singular point of a nth order linear ODE can be regular or irregular. The singularity is regular whenever
|
|
are analytic at .
|
•
|
The singularities command returns results as a list of equations with the singular points and their classification
|
•
|
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](..).
|
|
|
Examples
|
|
>
|
|
| (1) |
The 2F1 hypergeometric equation, that is, the linear ODE whose solutions involve special functions of the 2F1 class
>
|
|
| (2) |
has three regular singular points.
>
|
|
| (3) |
The equation that has special functions of the 1F1 class as a solution, that is, the confluent 1F1 hypergeometric equation
>
|
|
| (4) |
has one regular singularity at zero and one irregular at infinity.
>
|
|
| (5) |
You can input the ODE as a list of coefficients of the unknown of the equation and its derivatives (see DEtools[convertAlg])
>
|
|
| (6) |
>
|
|
| (7) |
Bessel equation and its singularities
>
|
|
| (8) |
>
|
|
| (9) |
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 -> in the Bessel_ODE, also has one regular and one irregular singularity:
>
|
|
| (10) |
>
|
|
| (11) |
An example with four regular singular points
>
|
|
| (12) |
>
|
|
| (13) |
|
|
References
|
|
|
Ince, E.L. Ordinary Differential Equations. New York: Dover Publications, 1956.
|
|
|