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

Online Help

All Products    Maple    MapleSim


JetCalculus[Noether] - find the conservation law for the Euler-Lagrange equations from a given symmetry of the Lagrangian

Calling Sequences

     Noether(X, l)

Parameters

     X         -  a vector field representing a symmetry of the Lagrangian λ

     λ         - a Lagrangian for a variational principle, defined as a top degree horizontal form of the jet space JkE of a bundle π:EM

 

Description

Examples

Description

• 

The celebrated theorem of E. Noether provides a formula for the calculation of a first integral or conservation law for any symmetry of the Lagrangian. This formula, which is very complicated for high order Lagrangians is easily implemented using the horizontal homotopy for the variational bicomplex.

• 

Within the framework of the JetCalculus package conservation laws are represented by differential forms of degree n1, where n is the dimension of M, whose horizontal or total exterior derivative vanishes by virtue of the Euler Lagrange equations.

• 

The vector field X is a symmetry of the Lagrangian λ if the Lie derivative of l with respect to the prolongation of X (to the order of λ) vanishes.

• 

The command Noether is part of the DifferentialGeometry:-JetCalculus package. It can be used in the form Noether(...) only after executing the commands with(DifferentialGeometry) and with(JetCalculus), but can always be used by executing DifferentialGeometry:-JetCalculus:-Noether(...).

Examples

with(DifferentialGeometry): with(JetCalculus):

 

Example 1.

We set a simple single integral problem with 2 dependent variables and compute the Euler-Lagrange equations

DGsetup([t], [x,y], E, 2):

E > 

L := 1/2*(x[1]^2 + y[1]^2 -1/sqrt(x[]^2 + y[]^2));

Lx122+y12212x2+y2

(2.1)
E > 

EL := EulerLagrange(L);

ELx2x2+y232x1,1,y2x2+y232y1,1

(2.2)
E > 

Eq := solve(EL, {x[1,1], y[1,1]});

Eqx1,1=x2+y2x2x4+2x2y2+y4,y1,1=x2+y2y2x4+2x2y2+y4

(2.3)

 

The Lagrangian L is invariant under rotations in the xy plane. Let us check this. To be technically correct we should work with the differential 1-form λ defined by L.

E > 

lambda := L &mult Dt;

λx12x2+y2+y12x2+y212x2+y2Dt

(2.4)
E > 

X:= x[]*D_y[] - y[]*D_x[];

XD_xy+D_yx

(2.5)
E > 

X1:= Prolong(X,1);

X1yD_x+xD_yy1D_x1+x1D_y1

(2.6)
E > 

LieDerivative(X, lambda);

0Dt

(2.7)

Now we find the first integral associated to the symmetry X:

E > 

F :=Noether(X, lambda);

Fy1x+x1y

(2.8)

 

To check that this is indeed a first integral, take the total derivative of F with respect to t and substitute from the Euler-Lagrange equations.

E > 

tdF := TotalDiff(F, t);

tdFxy1,1+yx1,1

(2.9)
E > 

eval(tdF, Eq);

0

(2.10)

 

 

Example 2.

We use the command InfinitesimalSymmetriesOfGeometricObjectFields to find the symmetries of the Lagrangian for the wave equation in (2+1) dimensions.

We then use the command Noether to calculate the associated conservation laws.

E > 

with(GroupActions):

E > 

DGsetup([x, y, t], [u], J, 1);

frame name: J

(2.11)
J > 

lambda := evalDG((u[1]^2 + u[2]^2 - u[3]^2)*Dx &w Dy &w Dt);

λu12+u22u32DxDyDt

(2.12)
J > 

Gamma := InfinitesimalSymmetriesOfGeometricObjectFields([lambda], output="list");

Γ2xD_x2yD_y2tD_t+uD_u,D_u,tD_x+xD_t,tD_y+yD_t,D_t,yD_x+xD_y,D_y,D_x

(2.13)

 

Let us find the conservation law ω1 associated to the symmetry of infinitesimal translations in the dependent variable u. We check the horizontal exterior derivative of ω1 vanishes on solutions to the 2+1 wave equation.

J > 

X1 := D_u[];

X1D_u

(2.14)
J > 

omega1 := Noether(X1, lambda);

ω12u3DxDy+2u2DxDt2u1DyDt

(2.15)
J > 

HorizontalExteriorDerivative(omega1);

2u1,1+2u2,22u3,3DxDyDt

(2.16)

 

Let us find the conservation law ω2 associated to the symmetry of infinitesimal scaling of the independent and dependent variables. We check the horizontal exterior derivative of ω2 vanishes on solutions to the 2+1 wave equation.

J > 

X2 := evalDG(x*D_x +y*D_y +t*D_t -1/2*u[]*D_u[]);

X2xD_x+yD_y+tD_tu2D_u

(2.17)
J > 

omega2 := Noether(X2, lambda);

J > 

HorizontalExteriorDerivative(omega1);

ω2tu12+tu22+tu32+2xu1u3+2yu2u3+uu3DxDy2tu2u3+2xu1u2yu12+yu22+yu32+uu2DxDt+2tu1u3+xu12xu22+xu32+2yu1u2+uu1DyDt

2u1,1+2u2,22u3,3DxDyDt

(2.18)
J > 

factor(HorizontalExteriorDerivative(omega2));

(2.19)

 

Finally, let us find the conservation law ω3 associated to the symmetry of infinitesimal boosts in the independent variables x and t. We check that the horizontal exterior derivative of ω3 vanishes on solutions to the 2+1 wave equation.

J > 

X3 := evalDG(x*D_t +t*D_x);

X3tD_x+xD_t

(2.20)
J > 

omega3 := Noether(X3, lambda);

ω32tu1u3+xu12+xu22+xu32DxDy2u2tu1+xu3DxDt+tu12tu22+tu32+2xu1u3DyDt

(2.21)
J > 

factor(HorizontalExteriorDerivative(omega3));

(2.22)

 

See Also

DifferentialGeometry

JetCalculus

EulerLagrange

HorizontalExteriorDerivative

InfinitesimalSymmetriesOfGeometricObjectFields

Prolong

TotalDiff