Jacobi ODEs
|
Description
|
|
•
|
The general form of the Jacobi ODE is given by the following:
|
>
|
Jacobi_ode := diff(y(x),x,x)*x*(1-x) = (g-(a+1)*x)*diff(y(x),x)+n*(a+n)*y(x);
|
| (1) |
|
where n is an integer. See Iyanaga and Kawada, "Encyclopedic Dictionary of Mathematics", p. 1480.
|
|
|
Examples
|
|
The solution to this type of ODE can be expressed in terms of the hypergeometric function; see hypergeom.
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
![y(x) = _C1*hypergeom([-1-(1/2)*a-(1/2)*(a^2+(-4*n+4)*a+4-4*n^2)^(1/2), -1-(1/2)*a+(1/2)*(a^2+(-4*n+4)*a+4-4*n^2)^(1/2)], [-g], x)+_C2*x^(1+g)*hypergeom([-(1/2)*a-(1/2)*(a^2+(-4*n+4)*a+4-4*n^2)^(1/2)+g, -(1/2)*a+(1/2)*(a^2+(-4*n+4)*a+4-4*n^2)^(1/2)+g], [2+g], x)](/support/helpjp/helpview.aspx?si=7238/file04355/math47.png)
| (4) |
|
|
See Also
|
|
DEtools, odeadvisor, dsolve, and ?odeadvisor,<TYPE> where <TYPE> is one of: quadrature, missing, reducible, linear_ODEs, exact_linear, exact_nonlinear, sym_Fx, linear_sym, Bessel, Painleve, Halm, Gegenbauer, Duffing, ellipsoidal, elliptic, erf, Emden, Jacobi, Hermite, Lagerstrom, Laguerre, Liouville, Lienard, Van_der_Pol, Titchmarsh; for other differential orders see odeadvisor,types.
|
|