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
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