Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
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