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
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.
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.)
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.
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.
A decomposition of this Lie algebra can be found using the program DecomposeAlgebra.
See Also
DifferentialGeometry, LieAlgebras, DecomposeAlgebra, GetComponents, LieAlgebraData, Query
Download Help Document