LieAlgebra Lessons
Lesson 4: Lie Algebra Homomorphisms
Overview
Define a Lie algebra homomorphism
Calculate the kernel and image of a Lie algebra homomorphism
Lie algebra derivations and automorphisms
Apply a Lie algebra homomorphism to a vector, differential form or tensor
In this lesson, you will learn to do the following:
Define a Lie algebra homomorphism between two Lie algebras.
Convert a derivation on a Lie algebra to a Lie algebra isomorphism.
Calculate the kernel and image of a Lie algebra homomorphism.
Calculate the inverse image of a subalgebra under a Lie algebra homomorphism.
Apply a Lie algebra homomorphism to a vector, differential form or tensor defined on a Lie algebra.
Homomorphisms between Lie algebras are defined using the Transformation command. To define some Lie algebra homomorphisms, we first initialize Lie algebras Alg1, Alg2, and Alg3 of dimension 3, 5, and 4.
with(DifferentialGeometry): with(LieAlgebras):
Define the structure equations for the Lie algebras Alg1, Alg2, Alg3.
L1 := _DG([["LieAlgebra", Alg1, [3]], [[[1, 3, 1], 2], [[2, 3, 1], 2], [[2, 3, 2], 1]]]);
L1 ≔ e1,e3=2⁢e1,e2,e3=2⁢e1+e2
L2 := _DG([["LieAlgebra", Alg2, [5]], [[[1, 3, 1], -1], [[1, 3, 2], -1], [[1, 4, 1], 1], [[2, 3, 1], 1], [[2, 3, 2], 1], [[2, 4, 1], 1], [[2, 4, 2], 2], [[3, 4, 1], 1], [[3, 4, 3], 1], [[3, 4, 5], -3], [[4, 5, 5], 2]]]);
L2 ≔ e1,e3=−e1−e2,e1,e4=e1,e2,e3=e1+e2,e2,e4=e1+2⁢e2,e3,e4=e1+e3−3⁢e5,e4,e5=2⁢e5
L3 := _DG([["LieAlgebra", Alg3, [4]], [[[1, 2, 2], 1], [[1, 2, 3], -1], [[1, 2, 4], -2], [[1, 3, 2], 1], [[1, 3, 3], -1], [[1, 3, 4], -2], [[2, 3, 1], -1], [[2, 3, 2], 2], [[2, 3, 3], -2], [[2, 3, 4], 1], [[2, 4, 4], 2], [[3, 4, 4], 2]]]);
L3 ≔ e1,e2=e2−e3−2⁢e4,e1,e3=e2−e3−2⁢e4,e2,e3=−e1+2⁢e2−2⁢e3+e4,e2,e4=2⁢e4,e3,e4=2⁢e4
Initialize the Lie algebras Alg1, Alg2, Alg3.
DGsetup(L1):
DGsetup(L2, [f], [omega]):
DGsetup(L3, [g], [sigma]):
Define a 5x3 matrix A and use this matrix to define a linear transformation from Alg1 to Alg2.
A := Matrix([[1, 0, 0], [1, 1, 0], [0, 0, 1], [0, 0, 1], [0, 0, 0]]);
phi := Transformation(Alg1, Alg2, A);
φ ≔ e1,f1+f2,e2,f2,e3,f3+f4
The output indicates that e1 is mapped to f1 + f2, e2 is mapped to f2 and so on....
Verify that phi is a Lie algebra homomorphism with the Query command.
Query(phi, "Homomorphism");
true
Define a 4x5 matrix A and use this matrix to define a linear transformation from Alg2 to Alg3. In this example, the matrix B contains 2 parameters {a, b} and we shall determine the values of {a, b} for which the matrix B determines a Lie algebra homomorphism.
B := Matrix([[-1, 1, 0, 0, 0], [1, -1, 1, 0, 0], [-1, 1, -1, 1, a], [1, -1, 1, -1, b]]);
psi0 := Transformation(Alg2, Alg3, B);
ψ0 ≔ f1,−g1+g2−g3+g4,f2,g1−g2+g3−g4,f3,g2−g3+g4,f4,g3−g4,f5,a⁢g3+b⁢g4
Again we use the Query command, but this time we include the parameters in the calling sequence. The Query command returns true to indicate that there are parameter values for which psi0 is a Lie algebra homomorphism, the list of constraints that {a, b} must satisfy for psi0 to be a homomorphism, the solutions to these constraints obtained by the Maple solve program, and the result of back-substituting the solutions into psi0.
Q := Query(psi0, {a, b}, "Homomorphism");
Q ≔ true,0,a,3⁢b−3,−2⁢a,3⁢a,−3⁢b+3,2⁢a,−3⁢a,−a,b=1,a=0,f1,−g1+g2−g3+g4,f2,g1−g2+g3−g4,f3,g2−g3+g4,f4,g3−g4,f5,g4
psi := Q[4][1];
ψ ≔ f1,−g1+g2−g3+g4,f2,g1−g2+g3−g4,f3,g2−g3+g4,f4,g3−g4,f5,g4
The kernel and image of a Lie algebra homomorphism can be computed with the command HomomorphismSubalgebras. We continue with the homomorphisms defined in the previous paragraph. Here are the 3 Lie algebras we defined and the 2 homomorphisms phi and psi.
MultiplicationTable(Alg1, "LieTable");
MultiplicationTable(Alg2, "LieTable");
MultiplicationTable(Alg3, "LieTable");
phi;
e1,f1+f2,e2,f2,e3,f3+f4
psi;
f1,−g1+g2−g3+g4,f2,g1−g2+g3−g4,f3,g2−g3+g4,f4,g3−g4,f5,g4
Example 1. Calculate the kernel of the transformation psi.
HomomorphismSubalgebras(psi, "Kernel");
f1+f2
Example 2. Calculate the composition tau of the homomorphisms phi and psi. Calculate the image of tau.
tau := ComposeTransformations(psi, phi);
τ ≔ e1,0⁢g1,e2,g1−g2+g3−g4,e3,g2
HomomorphismSubalgebras(tau, "Image");
g1+g3−g4,g2
Example 3. Calculate the inverse-image of the subalgebra [g3, g4] in Alg2 with respect to the homomorphism psi.
U := [g3, g4];
U ≔ g3,g4
V :=HomomorphismSubalgebras(psi, U, "InverseImage");
V ≔ f1+f2,−f5,−f4
We can 'clean-up' this basis slightly with the CanonicalBasis command from the Tools package.
Tools:-CanonicalBasis(V, [f1, f2, f3, f4, f5]);
f1+f2,f4,f5
A matrix A is a derivation for g if the associated linear transformation mapping g to g satisfies A([x, y]) = [A(x), y] + [x, A(y)] for all x, y in g. The command Derivations will compute all the derivations for a given Lie algebra. The matrix exponential (LinearAlgebra:-MatrixExponential) of any derivation of a Lie algebra g defines an automorphism of g.
In this paragraph, we shall initialize a 4 dimensional Lie algebra Alg1 from the DifferentialGeometry Library, calculate the derivations of this Lie algebra, and exponentiate a derivation to obtain a Lie algebra automorphism phi: Alg1 -> Alg1. We use the command Query to check that phi is an homomorphism and the HomomorphismSubalgebras command to show that the kernel of phi is trivial. These two calculations show that phi is an automorphism.
with(DifferentialGeometry): with(LieAlgebras): with(Library):
Retrieve a Lie algebra from the DifferentialGeometry Library and initialize it with the DGsetup command.
L := Retrieve("Winternitz", 1, [5, 24], Alg1);
L ≔ e1,e5=2⁢e1,e2,e3=e1,e2,e5=e2+e3,e3,e5=e3,e4,e5=e⁢e1+2⁢e4
DGsetup(L);
Lie algebra: Alg1
Der := Derivations("Full");
The set of derivations form a vector space (and, in fact, a Lie algebra) so we can take linear combinations of the matrices in Der and still obtain a derivation.
a := Der[2] + t*Der[3] + s*Der[4];
Query(Alg1, a, "Derivation");
A := LinearAlgebra:-MatrixExponential(a);
tau := Transformation(Alg1, Alg1, A);
τ ≔ e1,e1,e2,1+t⁢s2⁢e1+e2+t⁢e3,e3,s⁢e1+e3,e4,e4,e5,16⁢s2⁢t+12⁢s2⁢e1+s⁢e2+12⁢t⁢s−1+s⁢e3+e5
Query(tau, "Homomorphism");
HomomorphismSubalgebras(tau, "Kernel");
ApplyHomomorphism(Phi, T) will apply a Lie algebra homomorphism Phi to a vector, form, or tensor T and return an object of the same type. The precise evaluation rules for ApplyHomomorphism depend upon the specific properties of T and whether or not Phi is invertible. See the ApplyHomomorphism help page for details. Here are a few examples.
Example 1. We begin with the Lie algebra isomorphism tau constructed in the previous section. However, to better illustrate the effects of the ApplyHomomorphism command, let us relabel the basis vectors for the range algebra.
Define and initialize the domain algebra for the Lie algebra isomorphism tau.
L_domain := Retrieve("Winternitz", 1, [5, 24], Alg1);
L_domain ≔ e1,e5=2⁢e1,e2,e3=e1,e2,e5=e2+e3,e3,e5=e3,e4,e5=e⁢e1+2⁢e4
DGsetup(L_domain);
Define and initialize the range algebra for the Lie algebra isomorphism tau.
L_range := Retrieve("Winternitz", 1, [5, 24], Alg2);
L_range ≔ e1,e5=2⁢e1,e2,e3=e1,e2,e5=e2+e3,e3,e5=e3,e4,e5=e⁢e1+2⁢e4
DGsetup(L_range, [f], [omega]);
Lie algebra: Alg2
Define the matrix A representing a transformation from Alg1 to Alg2.
A := Matrix([[1, 1 + 1/2*t*s, s, 0, 1/6*s^2*t + 1/2*s^2], [0, 1, 0, 0, s], [0, t, 1, 0, 1/2*t*s - 1 + s], [0, 0, 0, 1, 0], [0, 0, 0, 0, 1]]);
tau := Transformation(Alg1, Alg2, A);
τ ≔ e1,f1,e2,1+t⁢s2⁢f1+f2+t⁢f3,e3,s⁢f1+f3,e4,f4,e5,16⁢s2⁢t+12⁢s2⁢f1+s⁢f2+12⁢t⁢s−1+s⁢f3+f5
Apply tau to a vector in Alg1. The result is a vector in Alg2.
ApplyHomomorphism(tau, e2);
1+t⁢s2⁢f1+f2+t⁢f3
Apply tau to a 1-form in Alg2. The result is a 1-form in Alg1 -- in this case, tau acts via the Pullback command.
ApplyHomomorphism(tau, omega3);
t⁢θ2+θ3+12⁢t⁢s−1+s⁢θ5
Apply tau to a 2-form in Alg2. The result is a 2-form in Alg1 -- in this case, tau acts via the Pullback command.
ApplyHomomorphism(tau, omega3 &wedge omega4);
t⁢θ2⁢`^`⁢θ4+θ3⁢`^`⁢θ4+−12⁢t⁢s+1−s⁢θ4⁢`^`⁢θ5
Apply tau to a type (1, 1) tensor in Alg1. The result is a 1-1 tensor in Alg2 -- in this case, tau acts via the PushPullTensor command.
ApplyHomomorphism(tau, e2 &t theta5);
1+t⁢s2⁢f1⁢ω5+f2⁢ω5+t⁢f3⁢ω5
Apply tau to a type (2, 0) tensor in Alg2. The result is a 1-1 tensor in Alg1 -- in this case, tau acts via the PushPullTensor command.
ApplyHomomorphism(tau, f2 &t f3);
−−2+t⁢s⁢s⁢e1⁢e12+−1+t⁢s2⁢e1⁢e3−s⁢e2⁢e1+e2⁢e3+t⁢s⁢e3⁢e1−t⁢e3⁢e3
We emphasize that these last two calculations require the preliminary computation of the inverse of tau and would not be possible if tau were not invertible.
Download Help Document