Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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.
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.
To define a representation of Alg1 using the matrices M, we shall need to define a representation space V.
We can verify that this is really a representation of Alg1 with the Query command.
Apply the representation to some vectors in Alg1:
Apply the linear transformations to some vectors in V:
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.
The Derivations command calculates the derivations on the Lie algebra Alg2.
We calculate the structure equations for this matrix algebra and initialize the result.
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.
Example 4.
Here is 4 dimensional faithful representation of an indecomposable 4-dimensional Lie algebra with a center.
See Also
DifferentialGeometry, GroupActions, Library, Adjoint, Center, Derivations, IsotropySubalgebra, Query, Retrieve
Download Help Document