LieAlgebraData[MatrixAlgebra] - convert a list of Matrices to a Lie algebra data structure
Calling Sequence
LieAlgebraConvert(MatrixAlgebra, AlgName)
Parameters
MatrixAlgebra - a list of linearly independent square Matrices (all of the same dimension)
AlgName - a name or string, the name to be assigned to the Lie algebra
|
Description
|
|
•
|
In the LieAlgebras package, the command DGsetup is used to initialize a Lie algebra -- that is, to define the basis elements for the Lie algebra and its dual and to store the structure constants for the Lie algebra in memory. The first argument for DGsetup is a Lie algebra data structure which contains the structure constants in a standard format used by the LieAlgebras package.
|
•
|
An important class of Lie algebras is given by the Matrix Lie algebras, where the Lie algebra multiplication is given by the matrix commutator [a, b] = a.b - b.a. The program LieAlgebraData(MatrixAlgebra, AlgName) will create the Lie algebra data structure for the matrix algebra whose basis is the given list of matrices MatrixAlgebra.
|
•
|
The command LieAlgebraData is part of the DifferentialGeometry:-LieAlgebras package. It can be used in the form LieAlgebraData(...) only after executing the commands with(DifferentialGeometry) and with(LieAlgebras), but can always be used by executing DifferentialGeometry:-LieAlgebras:-LieAlgebraData(...).
|
|
|
Examples
|
|
>
|
|
Example 1.
In this example we create a 5 dimensional Lie algebra from a list of 3 x 3 matrices.
First we define the matrices.
>
|
|
| (2.1) |
Before continuing we note that it is not difficult to directly check that the span of the Matrices M is closed under matrix commutators. For example, the matrix commutator of M[1] and M[5] is - M[1] + M[2]. (The matrices P and Q computed below are equal.)
>
|
|
| (2.2) |
>
|
|
| (2.3) |
>
|
|
| (2.4) |
The program LieAlgebraData will calculate all the required matrix commutators of the matrices in M as linear combinations in M and return the result as a Lie algebra data structure.
>
|
|
| (2.5) |
Here e1, e2, ..., e5 represent the matrices M[1], M[2], ..., M[5] respectively. Thus the structure equation [e1, e5] = - e1 + e2 coincides with that explicitly computed above.
>
|
|
Finally, we remark that this Lie algebra is decomposable.
Ex1 >
|
|
| (2.6) |
A decomposition of this Lie algebra can be found using the program DecomposeAlgebra.
|
|
Download Help Document
Was this information helpful?