Complete Elliptic Integral ODEs
|
Description
|
|
•
|
The general forms of the elliptic ODEs are given by the following:
|
>
|
elliptic_I_ode := diff(x*(1-x^2)*diff(y(x),x),x)-x*y(x)=0;
|
| (1) |
>
|
elliptic_II_ode := (1-x^2)*diff(x*diff(y(x),x),x)+x*y(x)=0;
|
| (2) |
|
See Gradshteyn and Ryzhik, "Tables of Integrals, Series and Products", p. 907. The solution to this type of ODE can be expressed in terms of the EllipticK and EllipticCK functions.
|
|
|
Examples
|
|
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
>
|
|
| (7) |
|
|
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.
|
|