Recursion Operators - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DifferentialGeometry Tutorials

 

Recursion Operators for Integrable Equations

 

 

Overview

Procedures Illustrated

The program InverseTotalDiff

The  KdV Equation

The  Sine-Gordon Equation

Conservation Laws for the Sine-Gordon Equation

Overview

 

In the subject of integrable systems of differential equations there are many different definitions of  integrability.  One definition declares a system of pde to be integrable if the equation admits an infinite hierarchy of higher order symmetries.  For evolution equations, these higher order symmetries can be viewed as higher order evolution equations who (local) flows commute with the flow of the given  evolution equation.

 

The higher order symmetries of an integrable equation can be generated inductively by a recursion operator which maps one higher order symmetry to the next one in the hierarchy.  Recursion operators for integrable equations typically involve the formal inverse of the total derivative operator

 

In this application you will learn to create the recursion operators for some well-known integrable equations and to use these operators to generate higher order generalized symmetries. We shall also verify directly that the higher order symmetries so constructed are indeed symmetries.

 

For a detailed discussion of higher order or generalized symmetries and recursion operators, see P. J. Olver,  Applications of Lie Groups to Differential Equations

(2nd Edition)  Chapter 5.

 

The Maple code in the section "The program InverseTotalDiff must be executed prior to executing the examples.

 

Procedures Illustrated

This tutorial illustrates the use of the following packages and procedures

DifferentialGeometry, JetCalculus, DGsetup, TotalDiff, HorizontalHomotopy, GeneralizedLieBracket, Transformation, DifferentialEquationData, Prolong, LieDerivative, EulerLagrange, Noether,  HorizontalExteriorDerivative

 

The program InverseTotalDiff

Let g = g(x, u, ux, u_xx.. ) is a function of a single independent variable x, a dependent variable u and its derivatives ux, u_xx..  to some order k(that is, a function on the jet space J^k(R,R) ) and let f= D_x(g), where D_x is total differentiation with respect to x. Then the program InverseTotalDiff(f) given below reproduces g (up to an additive constant). This command is easily constructed from the horizontal homotopy operator in the variational bicomplex which is implemented in the JetCalculus package.

 

euclid>

with(DifferentialGeometry): with(JetCalculus):

Preferences("JetNotation", "JetNotation2");

JetNotation1

(3.1)

InverseTotalDiff := proc(f)

local L;

if  Tools:-DGinfo("FrameBaseDimension") <> 1 then

error("Number of Independent Variables in Current Frame  Must Be 1");

fi;     

L := f &mult Tools:-DGvolume("biform");

HorizontalHomotopy(L);

end:

 

We test the program InverseTotalDiff with an example:

DGsetup([x], [u], E, 1);

frame name: E

(3.2)
E > 

g:= u[1]*u[2]^2;

E > 

 

gu1u22

(3.3)
E > 

f := TotalDiff(u[1]*u[2]^2,x);

fu23&plus;2u1u2u3

(3.4)
E > 

InverseTotalDiff(f);

u1u22

(3.5)
E > 

 

 

The  KdV Equation

 

The KdV equation is the evolution equation u_t = u_xxx + u*u_x.  The recursion operator is  for the  KdV equation is:

R(f) = D_xx(f) + 2/3*u[0]*f +1/3*u_x*D_x^(-1)(f).

DGsetup([x], [u], M, 1):

 

Define the KdV flow by the  right-hand side of the KdV equation.

M > 

KdVFlow := u[3] + u[0]*u[1];

KdVFlowu3&plus;u0u1

(4.1)

 

Define the KdV recursion operator:

M > 

KdVRecursion := exp ->  expand(TotalDiff(exp,[2]) +2/3*u[0]*exp +1/3*u[1]*InverseTotalDiff(exp));

KdVRecursionexp&rarr;expandJetCalculus:-TotalDiffexp&comma;2&plus;23u0exp&plus;13u1InverseTotalDiffexp

(4.2)

 

Define the first generalized symmetry Q_0 for the KdV equation and generate the higher symmetries using the recursion operator.

M > 

Q0 := u[1];

Q0u1

(4.3)

3rd order (the KdV flow itself)

M > 

Q1:= KdVRecursion(Q_0);

Q123u0Q_0&plus;13u1xQ_0

(4.4)

5th order:

M > 

Q2:= KdVRecursion(Q_1);

Q223u0Q_1&plus;13u1xQ_1

(4.5)

7th order:

M > 

Q3:= KdVRecursion(Q_2);

Q323u0Q_2&plus;13u1xQ_2

(4.6)

9th order:

M > 

Q4 := KdVRecursion(Q_3);

Q423u0Q_3&plus;13u1xQ_3

(4.7)

 

Check that each of the flows Q0, Q1, Q2, Q3 commute with the KdV flow using the generalized Lie bracket command. For this we use the functions KdVFlow, Q0, Q1, ... to define generalized vector fields:

M > 

GeneralizedLieBracket( KdVFlow*D_u[0], Q0*D_u[0]);

0D_x

(4.8)
M > 

GeneralizedLieBracket( KdVFlow*D_u[0], Q1*D_u[0]);

u1u0Q_0Q_0u3D_u0

(4.9)
M > 

GeneralizedLieBracket( KdVFlow*D_u[0], Q2*D_u[0]);

u1u0Q_1Q_1u3D_u0

(4.10)
M > 

GeneralizedLieBracket( KdVFlow*D_u[0], Q3*D_u[0]);

u1u0Q_2Q_2u3D_u0

(4.11)
M > 

GeneralizedLieBracket( KdVFlow*D_u[0], Q4*D_u[0]);

u1u0Q_3Q_3u3D_u0

(4.12)

 

 

The  Sine-Gordon Equation

For the Sine-Gordon equation u_xt = sin(u), the recursion operator is:

R(f) = D_xx(f) + u_x*f -u_xD_x^(-1)(u_xx*f).

 

We use this operator to generate the first few higher order symmetries in the Sine-Gordon hierarchy.

M > 

with(DifferentialGeometry):with(JetCalculus):

M > 

DGsetup([x], [u], M, 1):

 

Define the Sine-Gordon recursion operator:

M > 

SGRecursion := exp ->expand(TotalDiff(exp,[2]) + u[1]^2*exp - u[1]*InverseTotalDiff(u[2] *exp));

SGRecursionexp&rarr;expandJetCalculus:-TotalDiffexp&comma;2&plus;u12expu1InverseTotalDiffu2exp

(5.1)

 

Define the first generalized symmetry P0 and generate the higher symmetries.

M > 

P0 := u[1];

P0u1

(5.2)

 

3rd order

M > 

P1 := SGRecursion(P0);

P1u3&plus;12u13

(5.3)

 

5th order

M > 

P2 := SGRecursion(P1);

P252u1u22&plus;52u12u3&plus;u5&plus;38u15

(5.4)

 

7th order

M > 

P3 := SGRecursion(P2);

P3352u22u3&plus;354u22u13&plus;14u1u2u4&plus;212u1u32&plus;358u3u14&plus;u7&plus;72u12u5&plus;516u17

(5.5)
M > 

 

Now we change these into evolutionary vector fields on the jet space for u, viewed as function of the two variables x, t. For this we need the transformation phi

defined below.

DGsetup([x,t], [u], SG,1);

frame name: SG

(5.6)
SG > 

phi := Transformation(SG, M,[x=x, u[0]=u[0,0]]);

&phi;x&equals;x&comma;u0&equals;u0&comma;0

(5.7)
SG > 

phi7 := Prolong(phi,7,Matrix([[1,0],[0,0]]));

&phi;7x&equals;x&comma;u0&equals;u0&comma;0&comma;u1&equals;u1&comma;0&comma;u2&equals;u2&comma;0&comma;u3&equals;u3&comma;0&comma;u4&equals;u4&comma;0&comma;u5&equals;u5&comma;0&comma;u6&equals;u6&comma;0&comma;u7&equals;u7&comma;0

(5.8)
SG > 

Y[0] := evalDG(Pullback(phi7,P0)*D_u[0,0]);

Y0u1&comma;0D_u0&comma;0

(5.9)
SG > 

Y[1] := evalDG( Pullback(phi7,P1) * D_u[0,0]);

Y1u3&comma;0&plus;12u1&comma;03D_u0&comma;0

(5.10)
SG > 

Y[2] := evalDG( Pullback(phi7,P2) * D_u[0,0]);

Y252u1&comma;0u2&comma;02&plus;52u1&comma;02u3&comma;0&plus;u5&comma;0&plus;38u1&comma;05D_u0&comma;0

(5.11)
SG > 

Y[3] := evalDG( Pullback(phi7,P3) * D_u[0,0]);

Y3352u2&comma;02u3&comma;0&plus;354u2&comma;02u1&comma;03&plus;14u1&comma;0u2&comma;0u4&comma;0&plus;212u1&comma;0u3&comma;02&plus;358u3&comma;0u1&comma;04&plus;u7&comma;0&plus;72u1&comma;02u5&comma;0&plus;516u1&comma;07D_u0&comma;0

(5.12)
SG > 

 

To check that these are symmetries, first construct the differential equation data structure for the Sine-Gordon equation, prolong this to the 7 jet, and convert to a transformation.

 

Delta0 := [u[1,1] -sin(u[0,0])];

&Delta;0u1&comma;1sinu0&comma;0

(5.13)
SG > 

Delta:= DifferentialEquationData(Delta0, [u[1,1]]);

&Delta;u1&comma;1&comma;u1&comma;1sinu0&comma;0

(5.14)
SG > 

Phi := Transformation(Delta, 7):

 

We now apply the test for a generalized vector field  X to be be higher order symmetries. We prolong the vector X to order 2, Lie differentiate the Sine Gordon equation with respect to the prolonged vector field, and  substitute from the differential equation and its derivatives (via the Pullback command)

SG > 

CheckSymmetry := X-> simplify(Pullback(Phi,LieDerivative(Prolong(X,2), Delta0[1]))):

SG > 

seq(CheckSymmetry(Y[i]), i =0..3);

0&comma;0&comma;0&comma;0

(5.15)

 

 

Conservation Laws for the Sine-Gordon Equation

This is a continuation of the  previous section.  First we show that each of the generalized symmetries of the Sine-Gordon equation actually a variational symmetry. We recall that a vector field  X is a variational symmetry of  a Lagrangian if the Lie derivative of the Lagrangian with respect to the prolongation of the vector field is a total derivative. This latter condition may be checked by applying the EulerLagrange and checking that the result is zero

 

SG > 

lambda := evalDG((1/2*u[1,0]*u[0,1] - cos(u[0,0]) )*Dx &w Dt);

&lambda;12u1&comma;0u0&comma;1cosu0&comma;0Dx`^`Dt

(6.1)

 

The Euler-Lagrange form  for lambda yields the sine-Gordon equations.

SG > 

Delta := EulerLagrange(lambda);

SG > 

 

&Delta;sinu0&comma;0u1&comma;1Dx`^`Dt`^`Cu0&comma;0

(6.2)
SG > 

CheckVariationalSymmetry := EulerLagrange @ LieDerivative;

CheckVariationalSymmetryEulerLagrange&commat;LieDerivative

(6.3)
SG > 

seq(CheckVariationalSymmetry(Prolong(Y[i],1), lambda), i=0..3);

SG > 

 

0Dx`^`Dt`^`Cu0&comma;0&comma;0Dx`^`Dt`^`Cu0&comma;0&comma;0Dx`^`Dt`^`Cu0&comma;0&comma;0Dx`^`Dt`^`Cu0&comma;0

(6.4)

 

The conservation laws for these higher order symmetries can be found using from Noether's theorem which is implemented in the command Noether. We check that the horizontal exterior derivative of these forms vanish on solutions to the sine-Gordon equation -- as required.

SG > 

omega[0] := Noether(Y[0],Delta);

&omega;014u1&comma;0214u0&comma;0u2&comma;0Dx&plus;114u1&comma;0u0&comma;114u0&comma;0u1&comma;1cosu0&comma;0Dt

(6.5)
SG > 

HorizontalExteriorDerivative(omega[0]);

u1&comma;0u1&comma;1sinu0&comma;0Dx`^`Dt

(6.6)
SG > 

omega[1] := Noether(Y[1],Delta);

&omega;1116u1&comma;04316u0&comma;0u1&comma;02u2&comma;0&plus;14u1&comma;0u3&comma;014u0&comma;0u4&comma;0Dx&plus;316u0&comma;0u1&comma;02u1&comma;112cosu0&comma;0u1&comma;02&plus;sinu0&comma;0u2&comma;014u0&comma;0u3&comma;1&plus;12u1&comma;0u2&comma;114u0&comma;1u3&comma;0116u0&comma;1u1&comma;0312u2&comma;0u1&comma;1Dt

(6.7)
SG > 

factor(HorizontalExteriorDerivative(omega[1]));

122u3&comma;0&plus;u1&comma;03sinu0&comma;0u1&comma;1Dx`^`Dt

(6.8)

We remark that the formulas for this conservations can be simplified by the addition of an exact 1-form.