|
Summary
|
|
•
|
The theme for exact, symbolic Ordinary Differential Equation solving in Maple 16 is the development of new solving methods for 1st, 2nd, and higher order nonlinear ODEs. The new methods extend the ability to solving 1st order Abel and other families of equations, and a number of 2nd and higher order families of equations not admitting point symmetries, or admitting them but in cases where they are of no practical use. The Maple 16 ODE solver keeps pushing the frontier in exact solutions for ODEs. Maple remains the state of the art in computing exact solutions for ODEs with computer algebra software.
|
–
|
For 1st order ODEs, dsolve can additionally solve two new 1-parameter Abel ODE classes and two other entire new ODE classes depending on one arbitrary function that happen to be linearizable through integral transformations.
|
–
|
For each of the 2nd, 3rd, and 4th order ODEs problems, in Maple 16 dsolve can additionally solve two new nonlinear ODE families depending on arbitrary functions.
|
|
Recalling, each new solvable class of equations includes infinitely many different equations that can be transformed into each other through the transformations of the dependent and independent variables that define the class.
|
•
|
For both Ordinary and Partial Differential Equations, a theme in Maple 16 is a thorough revision of the existing symmetry algorithms and their extension to automatically handle problems involving anticommutative variables. This extension includes the dsolve and pdsolve commands, all the commands of the PDEtools[Library] and many of the symmetry commands in PDEtools, making all this DE functionality be naturally available for the first time for working on problems in Physics that involve anticommutative variables.
|
|
|
Ordinary Differential Equations (ODEs)
|
|
|
Using new algorithms, the dsolve command can additionally solve new nonlinear ODE families of order 1st, 2nd, 3rd and 4th, all of them parametrized by arbitrary functions of the independent variable and out of reach in previous Maple releases.
|
|
New solvable 1st order nonlinear ODE families
|
|
•
|
For 1st order ODEs, the simplest problem beyond the reach of complete solving algorithms is known as Abel equations. These are equations of the form
|
|
where is the unknown and the and are arbitrary functions of . The biggest subclass of Abel equations known to be solvable was discovered by our research team and is the AIR 4-parameter class. New in Maple 16, two additional 1-parameter classes of Abel equations, beyond the AIR class, are now also solvable.
|
>
|
PDEtools[declare](y(x), prime=x);
|
| |
| (1) |
|
This equation, of type Abel 2nd kind, depending on one parameter , is now solved in terms of hypergeometric functions
|
>
|
ode[1] := diff(y(x),x) = -y(x)*(-3+x)*((-9+2*alpha)*y(x)-9)/(x*(54-36*x+6*x^2-3*alpha+2*alpha*x)*y(x)+9*alpha+81-54*x+9*x^2);
|
| (2) |
| (3) |
|
The related class of Abel equations that is now entirely solvable consists of the set of equations that can be obtained from equation (2) by changing variables
|
|
where and the four are arbitrary rational functions of ; this is the most general transformation that preserves the form of Abel equations and thus generates Abel ODE classes.
|
•
|
The following ODE family depending on an arbitrary function is representative of the next difficult problem beyond Abel equations, that is, a problem involving 4th powers of in the right-hand side, now under focus
|
>
|
ode[2] := diff(y(x),x) = 1/2*(G(x)^2*y(x)^4-diff(G(x),x)*y(x)^2+x)/G(x)/y(x);
|
| (4) |
•
|
We solve it here in implicit form to avoid square roots obscuring the solution
|
>
|
sol[2] := dsolve(ode[2], y(x), implicit);
|
| (5) |
>
|
odetest(sol[2], ode[2], y(x));
|
•
|
A generalization of the problem above, solvable in Maple 16, involving an arbitrary function
|
>
|
ode[3] := diff(y(x),x) = 2*G(y(x))*x/(2-D(G)(y(x))*x^2+G(y(x))^2*x^4-2*y(x)*G(y(x))*x^2);
|
| (7) |
>
|
sol[3] := dsolve(ode[3]);
|
| (8) |
>
|
odetest(sol[3], ode[3]);
|
|
|
New solvable nonlinear ODE families of 2nd, 3rd, and 4th order
|
|
|
Using new algorithms developed by our research team, the dsolve command in Maple 16 can additionally solve two new nonlinear ODE families for each of the 2nd, 3rd and 4th order problems, with the ODE families involving arbitrary functions of the independent () or dependent () variables.
|
>
|
ode[4] := diff(y(x), x$4) = 5*y(x)*diff(y(x), x$3) + (10*diff(y(x), x) - 10*y(x)^2-1/x)*diff(y(x), x$2) - 15*y(x)*diff(y(x), x)^2+(10*y(x)^3 + 3/x*y(x))*diff(y(x),x) - y(x)^5 - 1/x*y(x)^3;
|
| (10) |
>
|
PDEtools:-DeterminingPDE(ode[4]);
|
| (11) |
•
|
Using new algorithms, this problem is nevertheless solvable in explicit form in terms of Bessel functions
|
| (12) |
•
|
Another problem not admitting point symmetries, of 3rd order
|
>
|
ode[5] := diff(y(x), x$3) = (4*y(x)-1/x)*diff(y(x), x$2) + 3*diff(y(x), x)^2 + (-6*y(x)^2+3/x*y(x)-x)*diff(y(x), x) + y(x)^4 - 1/x*y(x)^3 + y(x)^2*x - y(x);
|
| (13) |
| (14) |
•
|
A 2nd order nonlinear ODE problem for which point symmetries exist but are of no use for integration purposes (they involve an unsolved 4th order linear ODE).
|
>
|
ode[6] := diff(y(x), x, x) = x*(diff(y(x), x))^3*y(x)+x^2*(x-1)*(diff(y(x), x))^3+(-3*x+1)*(diff(y(x), x))^2;
|
| (15) |
>
|
sol[6] := dsolve(ode[6]);
|
| (16) |
>
|
odetest(sol[6], ode[6]);
|
•
|
A 3rd order ODE problem illustrating improvements in existing algorithms: in previous releases this equation was only solved in terms of uncomputed integrals of unresolved RootOf expressions; now the solution is computed explicitly as a rational function
|
>
|
ode[7] := diff(y(x), x$3) + 4*y(x)*diff(y(x), x$2) + 3*diff(y(x), x)^2 + 6*y(x)^2*diff(y(x), x) + y(x)^4 = 0;
|
| (18) |
>
|
sol[7] := dsolve(ode[7]);
|
| (19) |
>
|
odetest(sol[7], ode[7]);
|
>
|
Setup(anticommutativepre = {theta, Q});
|
| |
| |
| (22) |
•
|
Consider this ordinary differential equation for the anticommutative function of a commutative variable
|
>
|
diff(Q(x), x, x) - Q(x)*diff(Q(x), x) = 0;
|
•
|
Its solution using dsolve involves an anticommutative constant , analogous to the commutative constants
|
| (24) |
|
|
|
Partial Differential Equations (PDEs)
|
|
|
Many of the commands in PDEtools can now naturally handle anticommutative variables, these are: D_Dx, DeterminingPDE, dsubs, Eta_k, FromJet, FunctionFieldSolutions, InfinitesimalGenerator, Infinitesimals, InvariantSolutions, PolynomialSolutions, ReducedForm, ToJet as well as all the routines within the PDEtools[Library]. This makes it possible to tackle super PDE problems, that is, PDE systems involving anticommutative functions and variables. In addition, this permits the use of the PDE mathematical tools with the Physics package. (Related to these developments, see also the new Physics commands Coefficients, ToFieldComponents, ToSuperfields and PerformOnAnticommutativeSystem.)
|
|
During the development of this generalization of PDEtools commands to handle anticommutative variables, the symmetry ones were also improved in a number of places, all this setting a new benchmark for the state-of-the-art in symmetry analysis and computation of exact solutions for partial differential equations.
|
|
Examples
|
|
>
|
|
>
|
|
| |
| |
| (25) |
|
Consider this partial differential equation for the anticommutative function of commutative and anticommutative variables
|
>
|
|
| (27) |
|
Note the introduction of an anticommutative constant , analogous to the commutative constants where n is an integer. The arbitrary functions introduced are all commutative as usual and the Grassmannian parity (on right-hand-side if compared with the one on the left-hand-side) is preserved
|
>
|
|
|
A PDE system example with one unknown anticommutative function of four variables, two commutative and two anticommutative; to avoid redundant typing in the input that follows and redundant display of information on the screen, use PDEtools:-declare, and PDEtools:-diff_table, that also handles anticommutative variables by automatically using Physics:-diff when Physics is loaded
|
>
|
|
| (29) |
>
|
|
|
Now we can enter derivatives directly as the function's name indexed by the differentiation variables and see the display the same way; two PDEs
|
>
|
|
| (30) |
|
The solution to this system:
|
>
|
|
| (32) |
•
|
The dsubs command also works with anticommutative variables, though natively without using the approach explained in PerformOnAnticommutativeSystem. By inspection, it is clear that the derivatives in pde[2] can be substituted in pde[1] reducing the problem to a simpler one:
|
| (34) |
|
Substituting this result for back into pde[2], then multiplying by and subtracting from the above also leads to the PDE system solution.
|
>
|
|
>
|
|
| (36) |
•
|
With the core functionality in place, most the symmetry commands that work on top can now also handle anticommutative variables, most of them natively, without going through PerformOnAnticommutativeSystem.
|
|
Set for instance the generic form of the infinitesimals for a PDE system like this one formed by pde[1] and pde[2]. For this purpose, we need anticommutative infinitesimals for the dependent variable and two of the independent variables, and ; we use here the capital greek letters and for the anticommutative infinitesimal symmetry generators and the corresponding lower case greek letters for commutative ones
|
>
|
|
| |
| |
| (37) |
>
|
|
| (38) |
| |
| |
| (39) |
>
|
|
| (40) |
|
The table-function that returns the prolongation of the infinitesimal for is computed with Eta_k, assign it here to the lower case to use more familiar notation (recall )
|
|
The first prolongations of with respect to and
|
| (42) |
| (43) |
|
The second mixed prolongations of with respect to and
|
| (44) |
| (45) |
>
|
|
| (46) |
|
To compute now the exact form of the symmetry infinitesimals you can either solve this PDE system for the commutative and anticommutative functions using pdsolve, or directly pass the system to Infinitesimals that will perform all the steps automatically
|
| (47) |
|
Substituting into S, you get the symmetry infinitesimal lists
|
| (48) |
•
|
Infinitesimals also works with anticommutative variables natively; the related result comes specialized
|
>
|
|
| (49) |
|
To verify this result you can use SymmetryTest - it also handles anticommutative variables natively.
|
>
|
|
|
To see these three list of symmetry infinitesimals with a label in the left-hand-side, you can use map
|
>
|
|
| (51) |
|
|
|
|