Differential Equations - Maple Help

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : System : Information : Updates : Maple 11 : Differential Equations

Updates to Differential Equation (DE) Solvers in Maple 11

 

Summary

Exact Solutions

Numeric Solutions and related Plotting

Summary

  

The differential equation (DE) theme for Maple 11 is the exploration of the geometrical structure underlying a DE. Thus for 2nd order nonlinear Ordinary Differential Equations (ODEs), new algorithms were developed to solve entire classes in terms of elliptic functions.

  

For 1st order ODEs, the nonlinear Abel AIR class, as well as those admitting conformal symmetries, are now all entirely solvable in terms of hypergeometric and elliptic functions.

  

For Partial Differential Equations (PDEs) the geometrical structure is also reflected in their symmetries, which is the subject of this release, together with the related group invariant solutions, representing the most important advancement of the last 5 years in the Maple libraries for the exact solution of PDEs.

Exact Solutions

Ordinary Differential Equations (ODEs)

New solutions in terms of elliptic functions for 2nd order nonlinear equations

  

New solving algorithms for various classes of nonlinear 2nd order ODEs admitting solutions expressible in terms of the WeierstrassP or any of the 12 JacobiPQ elliptic functions. These classes of equations admit only one point symmetry and the related reduction of order leads to 1st order nonlinear Abel ODEs, a problem for which Maple 11 also presents new algorithms.

  

Examples

PDEtools:-declare(y(x), prime=x);

yxwill now be displayed asy

derivatives with respect toxof functions of one variable will now be displayed with '

(1)

diff(y(x), x, x) = 4/x*diff(y(x), x) + 6/x^2*y(x)^2 - 6/x^2*y(x) - 1/2*x^2*a;

y''=4y'x+6y2x26yx2x2a2

(2)

dsolve((2));

y=WeierstrassPx+_C1,a,_C2x2

(3)

diff(y(x), x, x) = 2/x*a/(x+a)*diff(y(x), x) + 2*k^2/x^2/(x+a)^4*y(x)^3 + (-2*x^3*a+(-k^2-1-6*a^2)*x^2 - 6*a^3*x - 2*a^4)/x^2/(x+a)^4*y(x);

y''=2ay'xx+a+2k2y3x2x+a4+2x3a+6a2k21x26a3x2a4yx2x+a4

(4)

dsolve((4));

y=_C2k2+1k2_C22+1xJacobiSN1x+a+_C1k2+1k2_C22+1,k_C2

(5)
  

The algorithm underlying the output above can compute solutions free of integrals whenever they are linear in WeierstrassP or any of the 12 JacobiPQ functions.

New option singsol = <none, essential, all> and new elliptic function solutions for high degree 1st order nonlinear ODE

  

High-degree equations are nonlinear in the highest derivative. In addition to their general solution, these equations admit singular solutions automatically computed by dsolve.

  

The novelty in Maple 11 is twofold. You can now specify whether to compute all, none, or only the essential singular solutions by passing an extra argument singsol. Also, instead of the standard general solution composing fractional powers with RootOf of elliptic functions or uncomputed integrals, dsolve now computes these general solutions with no RootOfs and no uncomputed integrals but directly as explicit solutions linear in JacobiPQ, WeierstrassP, and WeierstrassPPrime elliptic functions when that is possible.

  

Examples

  

Two examples quadratic in y'. To see the general solution, pass only singsol=none (it also saves the time dsolve would spend splitting the problem into cases and computing the singular solutions).

(-2/x^3*y(x)+1/x^2*diff(y(x),x))^2-1-b^2/x^8*y(x)^4-(-b^2-1)/x^4*y(x)^2 = 0;

2yx3+y'x221b2y4x8b21y2x4=0

(6)

dsolve((6), singsol = none);

y=JacobiSNx+_C1&comma;bx2

(7)
  

The singular solutions for these high-degree ODEs are frequently the roots of some related high-degree polynomial.  To see this polynomial representing an implicit singular solution instead of their roots, use the optional argument implicit.

(-2/x^3*y(x)+1/x^2*diff(y(x),x))^2+1/x^2*y(x)*a-4/x^6*y(x)^3+b = 0;

2yx3+y'x22+yax24y3x6+b=0

(8)

dsolve((8), implicit);    # implicit avoids computing the roots of the cube

y314bx614yax4=0,y=WeierstrassPx+_C1&comma;a&comma;bx2

(9)
  

An example cubic in y' where the solution involves WeierstrassPPrime

-(x+a)^6*(y(x) + x*diff(y(x),x))^3 + 1/2*a^3/b^3 - 27/2*x^4*y(x)^4 - 27*b/c*x^2*y(x)^2 - 27/2*b^2/c^2 - 3/2*a/b*(x+a)^4*(y(x)+x*diff(y(x),x))^2 = 0;

x+a6y'x+y3+a32b327x4y4227bx2y2c27b22c23ax+a4y'x+y22b=0

(10)

[dsolve((10), implicit)];

y454b4x2y2c+a3c227b527x4b3c2=0&comma;y=WeierstrassPPrime1x+a+_C1&comma;ab&comma;bcx

(11)

map(odetest, (11), (10));  # verify these results for correctness

0&comma;0

(12)

New solutions in terms of hypergeometric functions for 1st order Abel equations of the AIR class

  

The new solving algorithms for first order Abel ODEs of the 3-parameter AIR class can solve the entire class of equations having rational coefficients by resolving an equivalence to the seed representative (see references) under changes of variables of the form x -> F(x), y(x) -> (P(x) y(x) + Q(x))/(R(x) y(x) + S(x)), for rational mappings F, P, Q, R, S. In addition, for restricted subclasses, the algorithms implemented can compute the solution also when these mappings, and the coefficients in the corresponding ODE, are non-rational. The Abel AIR class is presented as entirely solvable for the first time in the literature now with Maple 11.

  

Examples

  

Two examples involving non-rational coefficients

diff(y(x),x) = y(x)/x/(ln(x)*y(x)+(-ln(x)+b)*(-ln(x)+c));

y'=yxlnxy+lnx+blnx+c

(13)

dsolve((13));

_C1+lnxKummerMb&comma;1+cb&comma;ybKummerMb+1&comma;1+cb&comma;ylnxKummerUb&comma;1+cb&comma;y+bcKummerUb+1&comma;1+cb&comma;y=0

(14)
  

An example whose implicit solution can be obtained in terms of HeunC

diff(y(x),x) = y(x)*(y(x)-1)*exp(x)/(y(x)*a+exp(2*x)-exp(x)*c);

y'=yy1&ExponentialE;xya+&ExponentialE;2x&ExponentialE;xc

(15)

sol := dsolve((15));

sol_C1+HeunCPrime0&comma;c&comma;−1&comma;0&comma;a+12&comma;yy1y&ExponentialE;2xy1HeunC0&comma;c&comma;−1&comma;0&comma;a+12&comma;yy1&ExponentialE;xy1cy1&ExponentialE;2x&ExponentialE;x+cHeunC0&comma;c&comma;−1&comma;0&comma;a+12&comma;yy1+yHeunCPrime0&comma;c&comma;−1&comma;0&comma;a+12&comma;yy1yc=0

(16)
  

To see this solution in terms of hypergeometric functions enter convert(sol, hypergeom);.  For more details, see convert/to_special_function. An example of this class where the solution is expressed directly in terms of hypergeometric functions

diff(y(x),x) = ((3+3*x^4+3*x^2-6*x^3+6*x)*y(x)^2 + (3*x^5+30*x^4-26*x^6-3*x^3-15*x^7+2*x^8)*y(x) - x^7*(29*x^3-31-27*x+x^5+21*x^2+5*x^4))/((x^4+x^2+1)*y(x) + x^3*(x^3+x-3*x^2+x^5-1-x^4))/x;

y'=3x46x3+3x2+6x+3y2+2x815x726x6+3x5+30x43x3yx7x5+5x4+29x3+21x227x31x4+x2+1y+x3x5x4+x33x2+x1x

(17)

dsolve((17));

_C136x3x4+3x3+y13x3x2+12x+1hypergeom24+1&comma;24+1&comma;73&comma;4x33x4+9x3+3y2+hypergeom24&comma;24&comma;43&comma;4x33x4+9x3+3yx2+x+1x4+3x3+y6x2x+1x4+3x3+yhypergeom2413&comma;1324&comma;23&comma;4x33x4+9x3+3y+2hypergeom2324&comma;24+23&comma;53&comma;4x33x4+9x3+3yx3x2+12x+1=0

(18)

New solutions for 1st order equations admitting conformal symmetries

  

In his original symmetry work, Sophus Lie was the first to observe that nonlinear first ODEs with conformal symmetries can have their solutions computed by quadratures. The infinitesimal generators [xi(x, y), eta(x, y)] of a conformal symmetry satisfy the conditions xi[x] = eta[y] and xi[y] = -eta[x], where [x] means differentiation with respect to x. In the framework of the Maple libraries, the key observation is that ODEs possessing this type of symmetry can systematically be transformed into equations admitting infinitesimals separable by product - a problem for which Maple implemented solving algorithms in Maple 6 (see references).

  

Examples

  

Kamke's example number 1.83

diff(y(x),x) = tan(x*y(x));

y'=tanyx

(19)

dsolve((19), implicit);

_C1+erf2x+Iy2erf2xIy2=0

(20)

Enhanced computation of solutions in terms of hypergeometric functions for 3rd and higher order linear equations

  

There are improvements in the solving algorithms for third and higher order linear ODEs to compute solutions expressible in terms of hypergeometric functions.

diff(y(x),x,x,x,x) = -15/2*x/(x^4+3)*diff(y(x),x)-45/2*x^2/(x^4+3)*diff(y(x),x,x)-10*x^3/(x^4+3)*diff(y(x),x,x,x)+15/16*y(x)/(x^4+3);

y''''=15xy'2x4+345x2y''2x4+310x3y'''x4+3+15y16x4+3

(21)

dsolve((21));

y=_C1hypergeom38&comma;58&comma;78&comma;98&comma;34&comma;54&comma;32&comma;3x4x32+_C2hypergeom18&comma;38&comma;58&comma;78&comma;12&comma;34&comma;54&comma;3x4x+_C3xhypergeom