Solving Some Second Order Linear ODEs that Admit Hypergeometric 2F1, 1F1, and 0F1 Function Solutions
|
Description
|
|
|
This page presents a Maple set of routines - called hyper3 - implementing a systematic method for solving some second order homogeneous linear ODEs that admit non-Liouvillian hypergeometric 2F1, 1F1, and 0F1 function solutions. The implementation follows the presentation done in "On Solving second order linear ODEs admitting non-Liouvillian solutions." by L. Chan and E.S. Cheb-Terrab, Report for NSERC University research award, Department of Mathematics, Simon Fraser University, September 2001.
|
|
Given a second order homogeneous linear ODE
|
|
Concerning the ODE seeds admitting 2F1, 1F1, and 0F1 function solutions, particular forms of them appear quite frequently in varied problems in mathematical physics.
|
|
This is Gauss's hypergeometric equation. It has 3 regular singularities at 0, 1, and infinity, and admits the solution 2F1(a,b; c; x), in Maple written as . This 2F1 seed include as particular cases the ODEs whose solution are Legendre, Jacobi, Gegenbauer, or Chebyshev polynomials as well as Elliptic integrals of the first or second kind and all arc-trigonometric functions.
|
2.
|
The second ODE seed used by hyper3 is the confluent hypergeometric equation
|
|
which has a regular singularity at 0 and an irregular one at infinity; and whose solution is 1F1( a; c; x), in Maple written as or . This 1F1 ODE includes as particular cases the ODEs whose solutions are, for example, the Kummer, Hermite, Laguerre, Cylinder, and Whittaker functions.
|
3.
|
The third linear ODE seeds admits the solution 0F1( ; c; x), in Maple written as and is given by
|
|
This ODE has a regular singularity at 0 and also an irregular one at infinity. This 0F1 ODE includes as particular cases, for instance, the ODEs whose solutions are the Bessel, Hankel, Airy, Kelvin (all of these actually Bessel related), and all trigonometric functions.
|
|
The independent solutions to these three seed ODEs are of course known. Hence, once the equivalence under tr between an input ODE and one of these seed is resolved, (that is, the hyper3 routines find such a transformation tr) the solution to the input ODE is obtained by applying that transformation to the solution of the seed ODE.
|
|
Apart from the natural relevance these seeds have in mathematical physics problems, two other reasons motivate working with them.
|
4.
|
They generate, through class transformations, ODE families with many of the members only admitting non-Liouvillian solutions - this is the case when these hypergeometric or special functions cannot be expressed in polynomial form or using elementary functions. Recall that for ODEs admitting Liouvillian solutions, you can use Kovacic's algorithm (See DEtools[kovacicsols].). This means hyper3 does not intersect with the target of Kovacic's algorithm (unless the hypergeometric solution admits a Liouvillian form) but mostly complements it by targeting a different problem (when the hypergeometric solution does not admit a Liouvillian form).
|
5.
|
These three DEs are distinguished by types of singularities. This establishes a simple classification scheme of the DEs which in turn helps determine the correct seed.
|
|
|
Examples
|
|
None of the following 12 varied type of examples are solvable in Maple 7.
First set up the display scheme and the infolevel information to see where the solutions are obtained.
>
|
|
| (1) |
>
|
|
| (2) |
Class 2F1
The following ODE has rational coefficients, no radicals, and no symbols. This ODE is mappable into "2F1".
>
|
|
| (3) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a quadrature
checking if the LODE has constant coefficients
checking if the LODE is of Euler type
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
-> hypergeometric
-> heuristic approach
-> hyper3: Equivalence to 2F1, 1F1 or 0F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 2F1 ODE
pFq equation: _a*_b*y(x)+((_b+_a+1)*x-_c)*diff(y(x),x)+(x^2-x)*diff(y(x),x,x) = 0
Transformation resolving the equivalence: {x = -3/2*t^2/(t^2+5), y(x) = 1/t^(1/4)/(t^2+5)^(1/8)/(t^2+2)^(1/2)*u(t)}
Values of hypergeometric parameters: [_a = 1/4, _b = 1/2], [_c = 3/4]
<- hypergeometric successful
<- special function solution successful
| |
| (4) |
These results can be tested as usual using odetest.
>
|
|
| (5) |
Fractional powers are also handled.
>
|
|
| (6) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying an equivalence, under non-integer power transformations,
to LODEs admitting Liouvillian solutions.
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
-> hypergeometric
-> heuristic approach
-> hyper3: Equivalence to 2F1, 1F1 or 0F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 2F1 ODE
pFq equation: _a*_b*y(x)+((_b+_a+1)*x-_c)*diff(y(x),x)+(x^2-x)*diff(y(x),x,x) = 0
Transformation resolving the equivalence: {x = t^(2/7), y(x) = 1/t^(45/98)/(t^(2/7)-1)^(103/84)*u(t)}
Values of hypergeometric parameters: [_a = 2/3, _b = 3/2], [_c = 5/7]
<- hypergeometric successful
<- special function solution successful
| |
| (7) |
>
|
|
| (8) |
The following example is constructed here using the Maple PDEtools[dpolyform] command in such a way that it admits a JacobiP solution and has all coefficients rational and depending on three symbolic parameters . Let the ODE solution be:
>
|
|
| (9) |
The differential polynomial form for this JacobiP function is given by:
>
|
|
| (10) |
>
|
|
| (11) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a quadrature
checking if the LODE has constant coefficients
checking if the LODE is of Euler type
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Kummer
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
-> hypergeometric
-> heuristic approach
-> hyper3: Equivalence to 2F1, 1F1 or 0F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 2F1 ODE
pFq equation: _a*_b*y(x)+((_b+_a+1)*x-_c)*diff(y(x),x)+(x^2-x)*diff(y(x),x,x) = 0
Transformation resolving the equivalence: {x = 2*t^2/(t^2-1), y(x) = 1/(t^(-2*a))/((t^2-1)^a)*u(t)}
Values of hypergeometric parameters: [_a = -a, _b = -b-a], [_c = -2*a-b-c]
<- hypergeometric successful
<- special function solution successful
| |
| (12) |
>
|
|
| (13) |
An example having rational coefficients depending on two parameters where the hypergeometric solution can be expressed in terms of Legendre functions:
>
|
|
| (14) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a quadrature
checking if the LODE has constant coefficients
checking if the LODE is of Euler type
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
-> hypergeometric
-> heuristic approach
-> hyper3: Equivalence to 2F1, 1F1 or 0F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 2F1 ODE
pFq equation: _a*_b*y(x)+((_b+_a+1)*x-_c)*diff(y(x),x)+(x^2-x)*diff(y(x),x,x) = 0
Transformation resolving the equivalence: {x = -t^2/(-2+t^2), y(x) = 1/(t^(-b+1/2))/((1/(-2+t^2))^(-1/2*b+1/2))/((1/(-2+t^2)*(t^2-1))^(a+1/2))/(-2+t^2)*u(t)}
Values of hypergeometric parameters: [_a = a+1/2, _b = a-b+1/2], [_c = -b+1]
<- hypergeometric successful
<- special function solution successful
| |
| (15) |
>
|
|
| (16) |
Class 1F1
An example with pure rational coefficients:
>
|
|
| (17) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a quadrature
checking if the LODE has constant coefficients
checking if the LODE is of Euler type
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 1F1 ODE
<- Whittaker successful
<- special function solution successful
| |
| (18) |
>
|
|
| (19) |
The following ODE has rational coefficients, no radicals, and no symbols.
>
|
|
| (20) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a quadrature
checking if the LODE has constant coefficients
checking if the LODE is of Euler type
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 1F1 ODE
<- Whittaker successful
<- special function solution successful
| |
| (21) |
>
|
|
| (22) |
Two examples from Kamke's book (2.16 and 2.215) involving symbolic powers:
>
|
|
| (23) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying an equivalence, under non-integer power transformations,
to LODEs admitting Liouvillian solutions.
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 1F1 ODE
<- Whittaker successful
<- special function solution successful
| |
| (24) |
>
|
|
| (25) |
>
|
|
| (26) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying an equivalence, under non-integer power transformations,
to LODEs admitting Liouvillian solutions.
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 1F1 ODE
<- Whittaker successful
<- special function solution successful
| |
| (27) |
>
|
|
| (28) |
An ODE example with powers where the exponents are algebraic (constant) expressions depending on a parameter :
>
|
|
| (29) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying an equivalence, under non-integer power transformations,
to LODEs admitting Liouvillian solutions.
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 1F1 ODE
<- Whittaker successful
<- special function solution successful
| |
| (30) |
>
|
|
| (31) |
The solution for Example 9 above can be entirely expressed using Bessel functions. Therefore, the solution is also of type hypergeometric 0F1.
>
|
|
| (32) |
Class 0F1
This example with rational coefficients is mappable into "0F1". This means that its solution can be entirely expressed using Bessel functions.
>
|
|
| (33) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a quadrature
checking if the LODE has constant coefficients
checking if the LODE is of Euler type
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
-> hypergeometric
-> heuristic approach
-> hyper3: Equivalence to 2F1, 1F1 or 0F1 under 'a power @ Moebius'
<- hyper3 successful: received ODE is equivalent to the 0F1 ODE
pFq equation: y(x)-x*diff(y(x),x,x)-diff(y(x),x)*_c = 0
Transformation resolving the equivalence: {x = 14/5*t^2/(3*t^2-14), y(x) = 1/(3*t^3-14*t)^(1/2)*u(t)}
Values of hypergeometric parameters: [], [_c = 1]
<- hypergeometric successful
<- special function solution successful
| |
| (34) |
>
|
|
| (35) |
>
|
|
| (36) |
Some examples solvable by ~hyper3~ by reformulating the problem into one solvable using power @ Moebius transformations
The hyper3 routines can solve a restricted but well defined problem as explained in the Description section. Nonetheless, there are some cases where the information gathered when tackling the problem is enough to solve it even when it is not of form shown in the Description section. We called this process of "indirect equivalence" in that a simple additional change of variables makes the problem fit the one hyper3 can solve. Two different type of ODE examples illustrating this situation - written in normal form to avoid superfluous variations - where the equivalence transformation tr is not of the form "power @ Moebius", but the routines solve the ODE are as follows.
>
|
|
| (37) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a quadrature
checking if the LODE has constant coefficients
checking if the LODE is of Euler type
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
-> hypergeometric
-> heuristic approach
-> hyper3: Equivalence to 2F1, 1F1 or 0F1 under 'a power @ Moebius'
<- hyper3 successful: indirect Equivalence to 0F1 under ``^ @ Moebius`` is resolved
pFq equation: y(x)-x*diff(y(x),x,x)-diff(y(x),x)*_c = 0
Transformation resolving the equivalence: {x = 1/36*(t+1)^3/(t-1)^3, y(x) = 1/(t+1)*u(t)}
Values of hypergeometric parameters: [], [_c = 4/3]
<- hypergeometric successful
<- special function solution successful
| |
| (38) |
>
|
|
| (39) |
>
|
|
| (40) |
>
|
|
Methods for second order ODEs:
--- Trying classification methods ---
trying a quadrature
checking if the LODE has constant coefficients
checking if the LODE is of Euler type
trying a symmetry of the form [xi=0, eta=F(x)]
checking if the LODE is missing 'y'
-> Trying a Liouvillian solution using Kovacic's algorithm
<- No Liouvillian solutions exists
-> Trying a solution in terms of special functions:
-> Bessel
-> elliptic
-> Legendre
-> Whittaker
-> hyper3: Equivalence to 1F1 under 'a power @ Moebius'
-> hypergeometric
-> heuristic approach
-> hyper3: Equivalence to 2F1, 1F1 or 0F1 under 'a power @ Moebius'
<- hyper3 successful: indirect Equivalence to 0F1 under ``^ @ Moebius`` is resolved
pFq equation: _a*y(x)+(x-_c)*diff(y(x),x)-x*diff(y(x),x,x) = 0
Transformation resolving the equivalence: {x = 1/16*I*2^(1/2)*(-5+t)^2/(t-1)^2, y(x) = 1/(-5+t)/exp(1/4*I*2^(1/2)*(-3+t)/(t-1)^2)*u(t)}
Values of hypergeometric parameters: [_a = 3/4-9/64*I*2^(1/2)], [_c = 3/2]
<- hypergeometric successful
<- special function solution successful
| |
| (41) |
>
|
|
| (42) |
|
|
See Also
|
|
Airy, arc-trigonometric functions, Bessel, Chebyshev, combine, convert, Cylinder, DEtools, DEtools[kovacicsols], dsolve, dsolve,algorithms, dsolve,education, dsolve,references, Elliptic, Gegenbauer, Hankel, Hermite, hypergeom, Jacobi, Kelvin, Kummer, Laguerre, Legendre, odetest, PDEtools, PDEtools[dpolyform], trigonometric functions, Whittaker
|
|