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

Online Help

All Products    Maple    MapleSim


GroupActions[MatrixGroup] - find the matrix group defined by a matrix algebra or by a matrix of 1-forms

Calling Sequences

    MatrixGroup(A, vars)

    MatrixGroup(Omega, LR, identity)

Parameters

     A         - a list of square matrices which define a matrix Lie algebra.

     vars      - a list of unassigned names, the variables for the matrix group

     Omega     - a matrix of 1-forms, the Maurer-Cartan matrix for a matrix group

     LR        - the string  "left" or "right"

     identity  - a list,  specifying the coordinates of the identity for the matrix group

 

Description

Examples

Description

• 

Let be a list of square matrices. The set of matrices group defines a matrix Lie algebra if it closed with respect to the matrix commutator, that is, for all  there are constants such that:

• 

A matrix , which is a function of  variables , defines a matrix group if :

 [i] there are values  for which is the identity matrix;

 [ii] the set of matrices is closed under matrix multiplication, that is,  = and

 [iii] the set of matrices is closed under matrix inversion   .

• 

If  is a matrix group, then the partial derivatives   define a matrix algebra.

• 

 The first calling sequence MatrixGroup(A, vars) calculates the matrix group defined by the matrix algebra from the products of  matrix exponentials Simple heuristics are used to relabel the group parametersin terms of the variables in order to simplify the final expressions for the components of the matrix . These heuristics work best if the basis for matrix algebra  is given, to the maximal extent possible, in terms of strictly upper triangular matrices, strictly lower triangular matrices, and diagonal matrices. The matrix exponentials are computed using MatrixExponential.

• 

 For the given matrix group , the left invariant and right invariant Maurer-Cartan forms are the matrices of 1-forms defined by

  and    

 Note that these forms satisfy the integrability conditions:  and

• 

The second calling sequence MatrixGroup(Omega, LR) returns the matrix group which satisfies the equations (*). The argument Omega is interpreted to be the left or right invariant Maurer-Cartan forms according to the value of the string LR. The equations (*) are integrated using pdsolve. If the integrability conditions on Omega are not satisfied, the pdsolve command will issues a warning and MatrixGroup will return NULL.

• 

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

Examples

 

Example 1.

In this example, the matrix group for the Lie algebra of  upper triangular matrices is calculated.

 

We can use the LieAlgebraData command to check that this set of matrices is closed under commutators and defines an abstract Lie algebra.

(2.1)

This result shows that the commutator of the second and third matrices in the list is the 2nd matrices. Other commutators are 0.

 

Now find the matrix group defined by the matrix algebra .

 

We can check this result in two ways. First, we can differentiate the elements of  with respect to the group parameters to check that we recover the elements of the matrix algebra . For this

we use the commands map and seq. For more complicated examples., it will be necessary to evaluate at the coordinates of the identity, given here by id.

 

In general, the list of initial matrices and the matrices obtained from the matrix group will be different but it is always the case that  This can be checked using the GetComponents command.

(2.2)

 

Secondly, one can use the command LieGroup (see Example 1) to directly verify that the matrix does indeed define a matrix group.

 

Example 2.

In this example the matrix group for the Lie algebra of all  matrices is found.

 

Note that this result is in a much simpler form than that obtained from the product of exponentials of the individual elements of .

 

Example 3.

In this example, the matrix group for the Lie algebra  of all  trace-free matrices is determined.

 

Note that the matrix gives a parametrization of , the matrix group of  matrices with determinant 1.

(2.3)

 

Example 4.

Here we shall find the matrix group associated to the adjoint representation of a Lie algebra. For this example, we shall use a Lie algebra from the tables of Lie algebras compiled by Patera, Sharp, Winternitz and Zassenhaus. See References, Retrieve, Adjoint.

(2.4)

(2.5)
alg > 

 

alg > 

 

Example 5.

In this example we find the matrix group for the infinitesimal automorphism group of a Lie algebra. The infinitesimal automorphisms of a Lie algebra are computed using the Derivations command.

alg > 

(2.6)
alg > 

(2.7)
alg > 

alg > 

 

 

Example 6.

In this example, a matrix group g is found from its Maurer-Cartan forms. First we initialize the 3-dimensional manifold on which the Maurer-Cartan forms are defined.

M > 

M > 

 

We check that these formulas satisfy the required integrability conditions.

M > 

 

Since  is not defined at  we choose  as the coordinates for the identity.

M > 

See Also

DifferentialGeometry

GroupActions

Library

Adjoint

DGzip

InfinitesimalTransformation

LieAlgebraData

LiesThirdTheorem

Retrieve

 


Download Help Document