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[exterior_prod] - compute the exterior product of two covariant antisymmetric tensors.
Calling Sequence
exterior_prod(A, B)
Parameters
A, B
-
covariant antisymmetric tensors
Description
The function exterior_prod(A, B) computes the exterior product of the covariant antisymmetric tensors A and B and returns it as a tensor_type of rank equal to . The result is totally anti-symmetric and uses the antisymmetric indexing function.
The input tensors A and B must be of covariant character and must be completely antisymmetric. The routine first checks for the use of Maple's antisymmetric indexing function. If this indexing function has not been used for input tensors of rank greater than one, the antisymmetry of the input is determined by comparing the input tensor components with those of the complete antisymmetrization of the input tensor.
The result is computed first by computing the components of the outer product of A and B and then antisymmetrizing them.
Simplification: This routine uses the `tensor/lin_com/simp` and `tensor/prod/simp` routines for simplification purposes. The simplification routines are used internally by the prod and antisymmetrize routines as they are called by exterior_prod. By default, `tensor/lin_com/simp` and `tensor/prod/simp` are initialized to the `tensor/simp` routine. It is recommended that these routines be customized to suit the needs of the particular problem.
This command is part of the tensor package, so it can be used in the form exterior_prod(..) only after executing the command with(tensor). However, it can always be accessed through the long from of the command by using tensor[exterior_prod](..).
Examples
Compute the exterior product of two arbitrary first and second rank antisymmetric tensors:
Note the use of the antisymmetric indexing function:
See Also
tensor, tensor/exterior_diff, tensor[antisymmetrize], tensor[prod], tensor[simp]
Download Help Document