Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
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