DEtools
RiemannPsols
find solutions of a second order linear ode
Calling Sequence
Parameters
Description
Examples
RiemannPsols(lode, v)
RiemannPsols(coeff_list, x)
lode
-
second order linear differential equation
v
dependent variable of the lode
coeff_list
list of coefficients of a linear ode
x
independent variable of the lode
The RiemannPsols routine returns either a list of solutions of a second order linear differential equation having three regular singular points or an equation of which the solutions have been multiplied by an exponential integral.
There are two input forms. The first has as the first argument a linear differential equation in diff or D form and as the second argument the variable in the differential equation.
A second input sequence accepts for the first argument a list of coefficients of the linear ode, and for the second argument the independent variable of the lode. This input sequence is useful for programming with the RiemannPsols routine.
In the second calling sequence, the list of coefficients is given in order from low differential order to high differential order and does not include the nonhomogeneous term.
This function is part of the DEtools package, and so it can be used in the form RiemannPsols(..) only after executing the command with(DEtools). However, it can always be accessed through the long form of the command by using DEtools[RiemannPsols](..).
with⁡DEtools:
ode≔x⁢1−x⁢diff⁡y⁡x,`$`⁡x,2+c−a+b+1⁢x⁢diff⁡y⁡x,x−a⁢b⁢y⁡x
ode≔x⁢1−x⁢ⅆ2ⅆx2y⁡x+c−a+b+1⁢x⁢ⅆⅆxy⁡x−a⁢b⁢y⁡x
RiemannPsols⁡ode,y⁡x
hypergeom⁡a,b,c,x,x−c+1⁢hypergeom⁡1+a−c,1+b−c,2−c,x
A≔−a⁢b,c−a+b+1⁢x,x⁢1−x
RiemannPsols⁡A,x
hypergeom⁡a,b,c,x,x−c+1⁢hypergeom⁡1+b−c,1+a−c,2−c,x
ode≔1−x2⁢diff⁡y⁡x,`$`⁡x,2−2⁢x⁢diff⁡y⁡x,x+v⁢v+1−u21−x2⁢y⁡x
ode≔−x2+1⁢ⅆ2ⅆx2y⁡x−2⁢x⁢ⅆⅆxy⁡x+v⁢v+1−u2−x2+1⁢y⁡x
hypergeom⁡−v+u,u+v+1,1+u,x2+12⁢x+1u2⁢x−1u2,x2+12−u⁢hypergeom⁡v+1,−v,1−u,x2+12⁢x+1u2⁢x−1u2
See Also
dcoeffs
dsolve
Download Help Document