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 π:E→M
Description
Examples
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 n−1, 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(...).
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):
L := 1/2*(x[1]^2 + y[1]^2 -1/sqrt(x[]^2 + y[]^2));
L≔x122+y122−12⁢x2+y2
EL := EulerLagrange(L);
EL≔x2⁢x2+y232−x1,1,y2⁢x2+y232−y1,1
Eq := solve(EL, {x[1,1], y[1,1]});
Eq≔x1,1=x2+y2⁢x2⁢x4+2⁢x2⁢y2+y4,y1,1=x2+y2⁢y2⁢x4+2⁢x2⁢y2+y4
The Lagrangian L is invariant under rotations in the x−y plane. Let us check this. To be technically correct we should work with the differential 1-form λ defined by L.
lambda := L &mult Dt;
λ≔x12⁢x2+y2+y12⁢x2+y2−12⁢x2+y2⁢Dt
X:= x[]*D_y[] - y[]*D_x[];
X≔−D_x⁢y+D_y⁢x
X1:= Prolong(X,1);
X1≔−y⁢D_x+x⁢D_y−y1⁢D_x1+x1⁢D_y1
LieDerivative(X, lambda);
0⁢Dt
Now we find the first integral associated to the symmetry X:
F :=Noether(X, lambda);
F≔−y1⁢x+x1⁢y
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.
tdF := TotalDiff(F, t);
tdF≔−x⁢y1,1+y⁢x1,1
eval(tdF, Eq);
0
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.
with(GroupActions):
DGsetup([x, y, t], [u], J, 1);
frame name: J
lambda := evalDG((u[1]^2 + u[2]^2 - u[3]^2)*Dx &w Dy &w Dt);
λ≔u12+u22−u32⁢Dx⁢⋀⁢Dy⁢⋀⁢Dt
Gamma := InfinitesimalSymmetriesOfGeometricObjectFields([lambda], output="list");
Γ≔−2⁢x⁢D_x−2⁢y⁢D_y−2⁢t⁢D_t+u⁢D_u,D_u,t⁢D_x+x⁢D_t,t⁢D_y+y⁢D_t,D_t,−y⁢D_x+x⁢D_y,D_y,D_x
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.
X1 := D_u[];
X1≔D_u
omega1 := Noether(X1, lambda);
ω1≔2⁢u3⁢Dx⁢⋀⁢Dy+2⁢u2⁢Dx⁢⋀⁢Dt−2⁢u1⁢Dy⁢⋀⁢Dt
HorizontalExteriorDerivative(omega1);
−2⁢u1,1+2⁢u2,2−2⁢u3,3⁢Dx⁢⋀⁢Dy⁢⋀⁢Dt
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.
X2 := evalDG(x*D_x +y*D_y +t*D_t -1/2*u[]*D_u[]);
X2≔x⁢D_x+y⁢D_y+t⁢D_t−u2⁢D_u
omega2 := Noether(X2, lambda);
ω2≔−t⁢u12+t⁢u22+t⁢u32+2⁢x⁢u1⁢u3+2⁢y⁢u2⁢u3+u⁢u3⁢Dx⁢⋀⁢Dy−2⁢t⁢u2⁢u3+2⁢x⁢u1⁢u2−y⁢u12+y⁢u22+y⁢u32+u⁢u2⁢Dx⁢⋀⁢Dt+2⁢t⁢u1⁢u3+x⁢u12−x⁢u22+x⁢u32+2⁢y⁢u1⁢u2+u⁢u1⁢Dy⁢⋀⁢Dt
factor(HorizontalExteriorDerivative(omega2));
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.
X3 := evalDG(x*D_t +t*D_x);
X3≔t⁢D_x+x⁢D_t
omega3 := Noether(X3, lambda);
ω3≔−2⁢t⁢u1⁢u3+x⁢u12+x⁢u22+x⁢u32⁢Dx⁢⋀⁢Dy−2⁢u2⁢t⁢u1+x⁢u3⁢Dx⁢⋀⁢Dt+t⁢u12−t⁢u22+t⁢u32+2⁢x⁢u1⁢u3⁢Dy⁢⋀⁢Dt
factor(HorizontalExteriorDerivative(omega3));
See Also
DifferentialGeometry
JetCalculus
EulerLagrange
HorizontalExteriorDerivative
InfinitesimalSymmetriesOfGeometricObjectFields
Prolong
TotalDiff
Download Help Document