LieAlgebras[Representation] - define a representation of a Lie algebra
LieAlgebras[ApplyRepresentation] - apply a representation of a Lie algebra to a vector in the Lie algebra
Calling Sequences
Representation(A, V, M)
ApplyRepresentation(rho, x, y)
Parameters
A - a Maple name or string, the name of a defined Lie Algebra g
V - a Maple name or string, the name of the defined frame used as the vector space V for the representation
M - a list of matrices [M_1, M_2, M_3, ...] each defining a linear transformation from V to V
rho - a representation of a Lie algebra g on a vector space V, as constructed with the Representation command
x - a vector in g
y - (optional) a vector in V
|
Description
|
|
•
|
Let g be a Lie algebra and V a vector space. A representation of g on V is a linear transformation rho: g -> gl(V) (where gl(V) is the Lie algebra of all linear transformations on V) such that rho([x, y]) = [rho(x), rho(y)] (*) for all x, y in g. Here [x, y] denotes the Lie bracket of two vectors in g while [rho(x), rho(y)] denotes the commutator of two linear transformations in gl(V).
|
•
|
The command Representation(A, V, M) creates a data structure which defines the representation rho : g -> gl(V) such that rho(e_i) = M_i.
|
•
|
The command Query can be used to verify that the map rho does in fact satisfy the representation property (*).
|
•
|
If x = c_1e_1 + c_2e_2 + ..., then ApplyRepresentation(rho, x) returns the matrix rho(x) = c_1M1 + c_2M2 + .... If y is vector in the representation space V, then Representation(rho, x, y) returns the vector rho(x)(y) in V.
|
|
|
Examples
|
|
Example 1.
First we retrieve a Lie algebra from the DifferentialGeometry Library and initialize it.
>
|
|
| (2.1) |
>
|
|
The center of Alg1 is trivial and therefore the adjoint representation is faithful. The command Adjoint will return the list of adjoint matrices for the Lie algebra Alg1.
Alg1 >
|
|
| (2.2) |
Alg1 >
|
|
| (2.3) |
To define a representation of Alg1 using the matrices M, we shall need to define a representation space V.
Alg1 >
|
|
V >
|
|
| (2.4) |
We can verify that this is really a representation of Alg1 with the Query command.
Alg1 >
|
|
| (2.5) |
Apply the representation to some vectors in Alg1:
Alg1 >
|
|
| (2.6) |
Alg1 >
|
|
| (2.7) |
Apply the linear transformations to some vectors in V:
Alg1 >
|
|
| (2.8) |
V >
|
|
| (2.9) |
Example 2.
The infinitesimal automorphisms or derivations of a Lie algebra g define a matrix Lie algebra which is automatically a representation. In this case we can take g to be the representation space.
V >
|
|
| (2.10) |
V >
|
|
The Derivations command calculates the derivations on the Lie algebra Alg2.
Alg2 >
|
|
| (2.11) |
We calculate the structure equations for this matrix algebra and initialize the result.
Alg2 >
|
|
| (2.12) |
Alg2 >
|
|
| (2.13) |
Alg2a >
|
|
| (2.14) |
Alg2a >
|
|
| (2.15) |
Example 3.
If Gamma is a Lie algebra of vector fields on a manifold M, then the isotropy subalgebra at a given point admits a natural representation, defined by the Lie bracket, on the tangent space of M. To illustrate the definition of this representation, we first obtain a Lie algebra of vector fields from the DifferentialGeometry Library with the Retrieve command. Then we use the IsotropySubalgebra from the GroupActions package to calculate the isotropy subalgebra and its representation.
Alg2a >
|
|
M >
|
|
| (2.16) |
M >
|
|
| (2.17) |
M >
|
|
| (2.18) |
M >
|
|
Alg3 >
|
|
| (2.19) |
Alg3 >
|
|
| (2.20) |
Example 4.
Here is 4 dimensional faithful representation of an indecomposable 4-dimensional Lie algebra with a center.
Alg3 >
|
|
| (2.21) |
M >
|
|
| (2.22) |
Alg4 >
|
|
| (2.23) |
Alg4 >
|
|
V >
|
|
| (2.24) |
Alg4 >
|
|
| (2.25) |
|
|