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[LieAlgebraData] - convert different realizations of a Lie algebra to a Lie algebra data structure
Calling Sequence
LieAlgebraData(LieAlgebraPresentation)
Parameters
LieAlgebraPresentation - one of several different formats for defining a 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.
The purpose of the function LieAlgebraData(LieAlgebraPresentation) is to convert various different presentations of a Lie algebra, which are commonly used in differential geometry and Lie theory, into the standard Lie algebra data structure required by the DGsetup command.
The types of Lie algebra presentations which can currently be converted to a Lie algebra data structure are:
FormStructureEquations LieAlgebraName MatrixAlgebra StructureConstants Subalgebra VectorFields VectorStructureEquations
Further information is available under ?LieAlgebraData, LieAlgebraPresentation, where LieAlgebraPresentation is from the above list.
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. LieAlgebraData(StructureConstants)
In this example we create a 3 dimensional Array, C, of structure constants and use this Array to create a Lie algebra data structure for a Lie algebra called Ex1.
Example 2. LieAlgebraData(VectorStructureEquations)
In this example we create a Lie algebra data structure for a Lie algebra called Ex2 from a list of structure equations for the Lie brackets.
Example 3. LieAlgebraData(FormStructureEquations)
In this example we create a Lie algebra data structure for a Lie algebra called Ex3 from a list of structure equations for the exterior derivatives of the dual 1-forms.
Example 4. LieAlgebraData(MatrixAlgebra)
In this example we create a Lie algebra data structure for a Lie algebra called Ex4 from a list of matrices.
Example 5. LieAlgebraData(LieAlgebraName)
In this example we create a Lie algebra data structure for a Lie algebra called Ex5 from a previously initialized Lie algebra.
First we initialize a Lie algebra Ex5.
Applying LieAlgebraData to Ex5 gives back the Lie algebra data structure we started from.
Example 6. LieAlgebraData(Subalgebra, "LieAlgebraData")
In this example we create a Lie algebra data structure from a subalgebra of a Lie algebra.
First we initialize a Lie algebra Alg5.
The vectors [e1, e2, e3] define a Lie subalgebra which we wish to initialize as a Lie algebra in its own right.
See Also
DifferentialGeometry, LieAlgebras, Query
Download Help Document