Lesson 3: New Lie Algebras from Old - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


LieAlgebra Lessons

 

Lesson 3: New Lie Algebras from Old

 

 

Overview

Construct a Lie algebra from a subalgebra

Change the basis of a Lie algebra

Form the direct sums of a list of Lie algebras

Quotient (or factor) Lie algebras

Overview

 

In Lesson 1, we saw how to construct a Lie algebra data structure which can then be used to initialize a Lie algebra with the DGsetup command.  In this lesson, we show how to construct new Lie algebras from a Lie algebra which has already been initialized.

 

You will learn to do the following:

– 

Construct a Lie algebra from a subalgebra.

– 

Change the basis of a Lie algebra.

– 

Form the direct sums of a list of Lie algebras.

– 

Quotient (or factor) a Lie algebra by an ideal.

 

There are other commands in the LieAlgebras package for creating Lie algebras, not covered in this lesson.  See Complexify, SemiDirectSum, Extensions.

 

Construct a Lie algebra from a subalgebra

 

If h is a subalgebra of a Lie algebra g, then the command LieAlgebraData can be used to create a Lie algebra data structure for h.  With this data structure, h can then be initialized as a Lie algebra in its own right.

Alg1 > 

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, 23], Alg1);

Le1,e5=2e1,e2,e3=e1,e2,e5=e2+e3,e3,e5=e3,e4,e5=be4

(2.1)

DGsetup(L);

Lie algebra: Alg1

(2.2)

 

Check that the span of the vectors S define a subalgebra of Alg1.

Alg1 > 

S := [e3, e4, e5];

Se3,e4,e5

(2.3)
Alg1 > 

Query(S, "Subalgebra");

true

(2.4)

 

Generate the structure equations for the subalgebra.  Since we are now viewing S as defining an abstract Lie algebra (and not as a subalgebra of Alg1), the labeling of the vectors has changed e3 -> e1, e4 -> e2, e5 -> e3.

Alg1 > 

L2 := LieAlgebraData(S, Alg2);

L2e1,e3=e1,e2,e3=be2

(2.5)
Alg1 > 

DGsetup(L2);

Lie algebra: Alg2

(2.6)
Alg2 > 

MultiplicationTable(Alg1, "LieTable"), MultiplicationTable(Alg2, "LieTable");

`|`e1e2e3e4e5-----------------------e1`|`00002e1e2`|`00e10e2+e3e3`|`0e100e3e4`|`0000be4e5`|`2e1e2e3e3be40,`|`e1e2e3---------------e1`|`00e1e2`|`00be2e3`|`e1be20

(2.7)

 

If we want to keep track of the fact that the vectors for the new Lie algebra Alg2 corresponded to e3, e4, e5 in Alg1, we can, for example, specify labels f3, f4, f5 for the vectors in Alg2.

Alg2 > 

DGsetup(L2, [f3, f4, f5], [sigma3, sigma4, sigma5]);

Lie algebra: Alg2

(2.8)
Alg2 > 

MultiplicationTable(Alg2, "LieTable");

`|`f3f4f5---------------f3`|`00f3f4`|`00bf4f5`|`f3bf40

(2.9)

 

If h is a subalgebra of g, then the inclusion map iota: h -> g is a Lie algebra homomorphism.  The matrix representation of this homomorphism can be obtained from the LieAlgebraData command by adding the option argument "Matrix" to the calling sequence.

Alg2 > 

L2, M := LieAlgebraData(S, Alg2, "Matrix");

L2,Me1,e3=e1,e2,e3=be2,000000100010001

(2.10)

 

We can use the Query command to check that the matrix M is the matrix representation of a homomorphism from Alg2 to Alg1.

Alg1 > 

Query(Alg2, Alg1, M, "Homomorphism");

true

(2.11)

 

Finally, we can use the matrix M to define a transformation from Alg2 to Alg1.  The output shows that f3 -> e3, f4 -> e4, and f5 -> e5.

Alg1 > 

iota := Transformation(Alg2, Alg1, M);

ιf3,e3,f4,e4,f5,e5

(2.12)

 

Change the basis of a Lie algebra

 

The are many situations where it is desirable to reinitialize a given Lie algebra in a different basis.  This can be done with the LieAlgebraData procedure using the same calling sequences as in the previous paragraph.  (Think of the new basis as specifying a subalgebra of the given algebra.)

 

In the example, that follows we shall define a 4 dimensional Lie algebra, calculate its derived algebra (DerivedAlgebra), and then reinitialize the Lie algebra so that the derived algebra is [e1, e2, e3].  The structure equations for the reinitialized algebra are much simpler.

Alg1 > 

with(DifferentialGeometry): with(LieAlgebras):

 

Define a certain 4-dimensional Lie algebra.  Note that there are 6 non-zero brackets.

Alg1 > 

L1 := _DG([["LieAlgebra", Alg1, [4]], [[[1, 2, 2], -1], [[1, 2, 4], 2], [[1, 4, 4], 1], [[2, 3, 2], 1], [[2, 3, 4], -2], [[2, 4, 1], 1], [[2, 4, 3], -1], [[3, 4, 4], 1]]]);

L1e1,e2=e2+2e4,e1,e4=e4,e2,e3=e22e4,e2,e4=e1e3,e3,e4=e4

(3.1)
Alg1 > 

DGsetup(L1);

Lie algebra: Alg1

(3.2)

 

Calculate the derived algebra of Alg1.

Alg1 > 

DA := DerivedAlgebra();

DAe2+2e4,e4,e1e3

(3.3)

 

Define a new basis for Alg1 using the vectors in the derived algebra and any 4th vector which is independent of the vectors in the derived algebra.  We chose e3.

Alg1 > 

B:= [op(DA), e3];

Be2+2e4,e4,e1e3,e3

(3.4)

 

Obtain the structure equations which respect to this new basis.  Note that there are now only 3 non-zero brackets.

Alg1 > 

L2, M := LieAlgebraData(B, Alg2, M);

L2,Me1,e2=e3,e1,e4=e12e2,e2,e4=e2,0010100000112100

(3.5)

 

Initialize the Lie algebra Alg2.

Alg1 > 

DGsetup(L2, [f], [theta]);

Lie algebra: Alg2

(3.6)

 

Check that the matrix M defines a Lie algebra isomorphism from Alg2 to Alg1.

Alg2 > 

Query(Alg2, Alg1, M, "Homomorphism");

true

(3.7)

 

Form the direct sums of a list of Lie algebras

 

The DirectSum command accepts a sequence of Lie algebra names or Lie algebra data structures and returns the direct sum of the algebras.  In the following example, we create a 7 dimensional Lie algebra from a 2 dimensional abelian Lie algebra, a 2 dimensional solvable Lie algebra, and the 3 dimensional algebra of 2x2 trace-free matrices.

Alg1 > 

with(DifferentialGeometry): with(LieAlgebras):

Alg1 > 

L1 := LieAlgebraData([[x1, x2]=0], [x1, x2], Alg1);

L1

(4.1)
Alg1 > 

L2 := LieAlgebraData([[x1, x2] = x1], [x1, x2], Alg2);

L2e1,e2=e1

(4.2)
Alg1 > 

L3 := LieAlgebraData([Matrix([[0, 1], [0, 0]]), Matrix([[1, 0], [0, -1]]), Matrix([[0, 0], [1, 0]])], Alg3);

L3e1,e2=2e1,e1,e3=e2,e2,e3=2e3

(4.3)

 

Use the command DirectSum to create the direct sum of the Lie algebras L1, L2, L3.

Alg1 > 

L4 := DirectSum([L1, L2, L3], Alg4);

L4e3,e4=e3,e5,e6=2e5,e5,e7=e6,e6,e7=2e7

(4.4)
Alg1 > 

DGsetup(L4);

Lie algebra: Alg4

(4.5)
Alg4 > 

MultiplicationTable("LieTable");

`|`e1e2e3e4e5e6e7-------------------------------e1`|`0000000e2`|`0000000e3`|`000e3000e4`|`00e30000e5`|`000002e5e6e6`|`00002e502e7e7`|`0000e62e70

(4.6)

 

Quotient (or factor) Lie algebras

 

Let g be a Lie algebra and h an ideal in g.  Then elements of the quotient algebra g/h are the h cosets x + h, where x in g.  The Lie bracket on g/h is defined by [x + h, y + h] = [x, y] + h.  The fact that h is an ideal of g insures that this bracket is well-defined.  If vectors y_1, y_2, ... y_r form a basis for a complement m to h, then the cosets y_1 + h, y_2 + h, ..., y_r + h form a basis for g/h.  The program QuotientAlgebra creates a Lie algebra data structure for the quotient algebra g/h using the vectors in the complement m as the representative basis elements for g/h.

 

In the example that follows, we do the following:

[i]  initialize a 7 dimensional Lie algebra.

[ii]  calculate its nilradical.

[iii]  check that the nilradical is an ideal.

[iv]  calculate a complement to the nilradical n in g.

[v]  calculate the quotient algebra g/n.

[vi]  define the projection map from g to g/n and verify that it is a homomorphism.

Alg4 > 

restart: with(DifferentialGeometry): with(LieAlgebras): with(Library):

 

Part [i]  Retrieve a Lie algebra from the DifferentialGeometry Library and initialize it with the DGsetup command.

L := Retrieve("Turkowski", 1, [7, 5], Alg1);

Le1,e2=2e2,e1,e3=2e3,e1,e4=2e4,e1,e6=2e6,e2,e3=e1,e2,e5=2e4,e2,e6=e5,e3,e4=e5,e3,e5=2e6,e4,e7=e4,e5,e7=e5,e6,e7=e6

(5.1)

DGsetup(L);

Lie algebra: Alg1

(5.2)

 

Part [ii]  Calculate the nilradical of Alg1.

Alg1 > 

n := Nilradical();

ne4,e5,e6

(5.3)

 

Part [iii]  Use the Query program to check that the nilradical is an ideal.

Alg1 > 

Query(n, "Ideal");

true

(5.4)

 

Part [iv]  In order to calculate the structure equations for the quotient algebra g/n, it is necessary to specify a basis for g/n.  We do this by giving a basis for a complementary subspace to n in g.  In this example, it is easy to see that [e1, e2, e3, e7] is such a complement -- in more complicated examples a complement can be calculated using the ComplementaryBasis program.

 

Alg1 > 

F := Tools:-DGinfo("FrameBaseVectors");

Fe1,e2,e3,e4,e5,e6,e7

(5.5)
Alg1 > 

m := ComplementaryBasis(n, F);

me1,e2,e3,e7

(5.6)

 

So the basis we will use for the quotient consists of the 4 independent cosets e1 + n, e2 + n, e3 + n, e7 + n.  Pass this information to the QuotientAlgebra command.

Alg1 > 

L2 := QuotientAlgebra(n, m, Alg2);

L2e1,e2=2e2,e1,e3=2e3,e2,e3=e1

(5.7)
Alg1 > 

DGsetup(L2, [f], [alpha]);

Lie algebra: Alg2

(5.8)
Alg2 > 

MultiplicationTable("LieTable");

`|`f1f2f3f4-------------------f1`|`02f22f30f2`|`2f20f10f3`|`2f3f100f4`|`0000

(5.9)

 

We can obtain the matrix defining the projection map from g to g/n by including the optional argument "Matrix" in the calling sequence for QuotientAlgebra.

Alg2 > 

L2, M := QuotientAlgebra(n, m, Alg2, "Matrix");

L2,Me1,e2=2e2,e1,e3=2e3,e2,e3=e1,1000000010000000100000000001

(5.10)

 

Check that M defines a homomorphism from Alg1 to Alg2 and define the associated transformation.

Alg1 > 

Query(Alg1, Alg2, M, "Homomorphism");

true

(5.11)
Alg2 > 

pi := Transformation(Alg1, Alg2, M);

πe1,f1,e2,f2,e3,f3,e4,0f1,e5,0f1,e6,0f1,e7,f4

(5.12)

 

To see this transformation 'at work', let us apply it to the vector X.

Alg2 > 

X := e1 + 2*e3 - 4*e4 + e6 + 5 *e7;

Xe1+2e34e4+e6+5e7

(5.13)
Alg1 > 

ApplyHomomorphism(pi, X);

f1+2f3+5f4

(5.14)

 

The kernel of the projection map g -> g/n is the nilradical n.  This can be computed with the command HomomorphismSubalgebras.

Alg2 > 

HomomorphismSubalgebras(pi, "Kernel");

e6,e5,e4

(5.15)
Alg1 >