Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
LieAlgebraData[StructureConstants] - convert an Array of structure constants to a Lie algebra data structure
Calling Sequence
LieAlgebraData(StructureConstants, AlgName)
Parameters
StructureConstants - a 3 dimensional array C
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.
One commonly used format for describing the structure equations of a Lie algebra is to specify the structure constants C as an n x n x n Array, where n is the dimension of the Lie algebra to be created. The structure constants C[i, j, k] are defined to be the Lie brackets of the basis elements of the Lie algebra by [e_i, e_j] = C[i, j, k] e_k (sum on k).
The function LieAlgebraData enables one to create a Lie algebra in Maple from an array C. Only the entries C[i, j, k] where i < j need be specified.
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 4 dimensional Lie algebra called Ex1 from an Array of structure constants.
First we define an array and initialize all the entries to zero. Then we specify the non-zero structure constants.
LieAlgebraData gives us a Lie algebra data structure with these structure constants.
Note that the structure constants in an Array C for an initialized Lie algebra can be obtained using the DGinfo. (This command also applies to the structure equations for any frame or manifold and is not restricted in its use to Lie algebras.)
See Also
DifferentialGeometry, LieAlgebras, DGinfo, ExteriorDerivative, LieAlgebraData, LieBracket, Query[Jacobi]
Download Help Document