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
tensor[commutator] - compute the commutator of two contravariant vector fields
Calling Sequence
commutator( U, V, coord)
Parameters
U, V
-
contravariant vector fields
coord
list of coordinate names
Description
Given the coordinate variables, coord, and two contravariant vector fields, U and V, commutator( U, V, coord ) computes the commutator of U and V using the usual partial derivative with respect to the coordinates using the formula:
where denotes the i'th component of the commutator of and , and and denote the partial derivatives of the i'th components of and , respectively, with respect to the j'th coordinate.
It is required that U and V be tensor_types with character: [1] (that is, U and V are contravariant vector fields)
Note that the result is a tensor_type of rank 1 with character [1].
Simplification: This routine uses the routine `tensor/commutator/simp` routine for simplification purposes. The simplification routine is applied to each component once it has been computed. By default, this routine is initialized to the `tensor/simp` routine. It is recommended that the `tensor/commutator/simp` routine be customized to suit the needs of the particular problem.
This function is part of the tensor package, and so can be used in the form commutator(..) only after performing the command with(tensor) or with(tensor, commutator). The function can always be accessed in the long form tensor[commutator](..).
Examples
Define U and V -- two contravariant vector fields:
Define the coordinates:
Because the components of U and V contain expressions involving ln, define `tensor/commutator/simp` to apply simplify( ... , ln) to each computed component:
`tensor/commutator/simp`:=proc(x) simplify(x,ln) end proc;
Now compute the commutator of U and V:
See Also
tensor, tensor/Lie_diff
Download Help Document