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
Query[Subalgebra] - check if a list of vectors defines a Lie subalgebra
Calling Sequences
Query(S, "Subalgebra")
LieAlgebraCheck(S, parm, "Subalgebra")
Parameters
S - a list of independent vectors in a Lie algebra g
parm - (optional) a set of parameters appearing in the list of vectors S. It is assumed that the set of vectors S is well-defined when the parameters vanish.
Description
A list of vectors S defines a basis for a Lie sub-algebra if [x, y] in span(S) for all x, y in S.
Query(S, "Subalgebra") returns true if the set S defines a subalgebra.
Query(S, parm, "Subalgebra") returns a sequence TF, Eq, Soln, SubAlgList. Here TF is true if Maple finds parameter values for which S is a subalgebra and false otherwise; Eq is the set of equations (with the variables in parm as unknowns) which must be satisfied for S to be a subalgebra; Soln is the list of solutions to the equations Eq; and SubAlgList is the list of subalgebras obtained from the parameter values given by the different solutions in Soln.
The program calculates the defining equations Eq for S to be a subalgebra as follows. First the list of vectors S is evaluated with the parameters set to zero to obtain a set of vectors S0. The program ComplementaryBasis is then used to calculate a complement C to S0. The list of vectors B = [S, C] then gives a basis for the entire Lie algebra g. For each x, y in S, the bracket [x, y] is calculated and expressed as a linear combination of the vectors in the basis B. The components of [x, y] in C must all vanish for S to be a Lie subalgebra.
We remark that the equations Eq, which the parameters must satisfy in order for S to be a subalgebra, will in general be a system of coupled quadratic equations. Maple may not be able to solve these equations or may not solve them in full generality.
The command Query is part of the DifferentialGeometry:-LieAlgebras package. It can be used in the form Query(...) only after executing the commands with(DifferentialGeometry) and with(LieAlgebras), but can always be used by executing DifferentialGeometry:-LieAlgebras:-Query(...).
Examples
Example 1.
First initialize a Lie algebra.
The vectors S1 = [e2, e3, e4] do not determine a subalgebra while the vectors S2 = [e1, e3, e4] do.
We find the values of a1, a2, for which S3 = [e2, e1 + a1*e3 + a2*e4] determines a Lie subalgebra.
There are no values of the parameters a1, a2 for which S4 = [e2, e3 + a1*e2 + a2*e4] determines a Lie sub-algebra.
See Also
DifferentialGeometry, LieAlgebras, Query
Download Help Document