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

Online Help

All Products    Maple    MapleSim


LieAlgebras[LeviDecomposition] - compute the Levi decomposition of a Lie algebra

Calling Sequences

     LeviDecomposition(Alg, save)

Parameters

     Alg        - (optional) the name of an initialized Lie algebra

     save       - (optional) equation of the form saveTemporaryAlgebras = TF, where TF is true or false

 

Description

Examples

Description

• 

Every Lie algebra  admits a decomposition into the semi-direct sum ,where is the radical of and  is a semi-simple subalgebra. Such a decomposition is called a Levi decomposition. Since the radical is an ideal we have ,  and The radicalis uniquely defined but the semi-simple subalgebra is not.

• 

LeviDecomposition(Alg) calculates a Levi decomposition of the Lie algebra Alg,. If no argument is given, a Levi decomposition of the current algebra is computed.

• 

With saveTemporaryAlgebras = true, the Lie algebras created by the program as part of the Levi decomposition algorithm are not erased and can be initialized for further analysis. Use this option in conjunction with userlevel[LeviDecomposition] := 2. The default is saveTemporaryAlgebras = false.

• 

A list of two lists of vectors is returned, where is a basis for the radical and is a basis for the semi-simple part. Either list may be empty.

• 

This module implements the algorithm for finding the Levi decomposition described in

 [i] Patera, Winternitz and Zassenhaus, On the Identification of a Lie Algebra Given by its Structure Constants I. Direct Decompositions, Levi Decompositions and Nilradicals, Journal of Linear Algebra and its Applications, 109, (1988): 197-246.

[ii] W. D. Rand, Pascal programs for the identification of Lie algebras I, Comput. Phys. Comm. 41: 105--125 (1986)

• 

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

Examples

 

Example 1.

In this example we shall check that the output of LeviDecomposition does indeed lead to a Levi decomposition of the algebra. First we initialize a 6 dimensional Lie algebra and display the Lie bracket multiplication table.

(2.1)

 

Now compute the Levi decomposition.

Alg1 > 

(2.2)

 

So the radical of this Lie algebra is span and the semi-simple part is span. We can check this result by [i] calculating the radical directly, [ii] checking that R is an ideal, [iii] checking that R is solvable and [iv] checking that S is a semisimple subalgebra.

Alg1 > 

(2.3)
Alg1 > 

(2.4)
Alg1 > 

(2.5)
Alg1 > 

(2.6)
Alg1 > 

(2.7)
Alg1 > 

(2.8)

 

The first step in transforming the algebra Alg1 to canonical form is to change the basis of the Lie algebra to that provided by the Levi decomposition.

Alg1 > 

(2.9)

 

Compute the structure equations for the Lie algebra in this basis.

Alg1 > 

(2.10)

 

Initialize this Lie algebra data structure and display the multiplication table.

Alg1 > 

(2.11)
Alg3 > 

(2.12)

See Also

DifferentialGeometry

LieAlgebras

Killing

Query[Ideal]

Query[LeviDecomposition]

 


Download Help Document