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[Derivation] - check if a Matrix defines a derivation on a Lie algebra
Calling Sequences
Query(Alg, A, "Derivation")
Query(Alg, A, parm, "Derivation")
Parameters
Alg - the name of an initialized Lie algebra g
A - an n x n Matrix, where n is the dimension of the Lie algebra g; a transformation mapping g to g
parm - a set of parameters appearing in the Matrix A or in the Lie algebra g
Description
A matrix A is a derivation for g if the associated linear transformation mapping g to g satisfies A([x, y]) = [A(x), y] + [x, A(y)] for all x, y in g.
Query(Alg, A, "Derivation") returns true if the matrix A or transformation defines a derivation for the Lie algebra g and false otherwise.
Query(Alg, A, parm, "Derivation") returns a 4-tuple TF, Eq, Soln, B. Here TF is true if Maple finds a set of values for the parameters for which the Matrix or transformation A is a derivation; Eq is the defining set of equations for the parameters parm in order that the matrix A be a derivation; Soln is a list of solutions to the equations Eq; and B is the list of Matrices obtained by evaluating A on the solutions in the list Soln.
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 and display the Lie bracket multiplication table.
Because of the Jacobi identities, A = ad(x) is always a derivation for any x in the Lie algebra. For example:
Example 2.
To illustrate the second use of Query with keyword "derivation", we find all the derivations of the above Lie algebra of the special form given by the following Matrix A, which depends upon 3 parameters a1, a2, a3.
We conclude that there is a 2 parameter family of derivations of the type A and these are given by a1 = a3. We can confirm this result with another call to Query.
See Also
DifferentialGeometry, LieAlgebras, Adjoint, Derivations, MultiplicationTable, Query, Transformation
Download Help Document