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[VectorStructureEquations] - convert a list of exterior derivative equations to a Lie algebra data structure
Calling Sequence
LieAlgebraConvert(VectorStructureEquations, Basis, AlgName)
Parameters
VectorStructureEquations - a list of equations of the form [x_i, x_j] = - C[i, j, k] x_k (sum on k)
Basis - a list of unassigned names [x_1, x_2, ..., x_N] which defines a basis for the dual 1-forms of the Lie algebra
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.
The most common format for describing the structure equations of a Lie algebra is to list the non-zero Lie brackets. The function LieAlgebraData enables one to create a Lie algebra in Maple from a list of Lie bracket equations.
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 Lie algebra data structure for a Lie algebra called Ex1 from a list of Lie bracket equations.
First we create the list of structure equations. The variables X, Y, Z, U, V must be unassigned names. They simply serve as place-holders for the purpose of entering in the structure equations.
To assign the names [X, Y, Z, U, V] to the basis vectors for this Lie algebra, use the optional argument form of DGsetup.
See Also
DifferentialGeometry, LieAlgebras, LieAlgebraData, MultiplicationTable
Download Help Document