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
DifferentialGeometry[algebraic operations] - addition, subtraction, scalar multiplication, wedge product, tensor product
Calling Sequence
A &plus B - add two vectors, differential forms or tensors
A &minus B- subtract one vector, differential form or tensor from another
A &mult B - multiply a Maple expression by a vector, differential form or tensor
A &wedge B- form the wedge (or skew) product of a pair of differential forms
A &tensor B- form the tensor product of a pair of tensors
Parameters
A, B
-
Maple expressions, differential forms or tensors
Description
In the DifferentialGeometry package the wedge product of 1-forms is defined in terms of the tensor product by
alpha &wedge beta = alpha &tensor beta - beta &tensor alpha.
When using these commands together within a single Maple expression, it is important to use parentheses to insure that the operations are executed in the correct order.
In an interactive Maple session, it is usually more convenient to use the commands evalDG and DGzip to perform these basic algebraic operations.
Here are the precise lists of admissible arguments for these commands.
A &plus B, A &minus B -- A and B: Maple expressions, vectors, differential forms of the same degree, differential biforms of the same bidegree, tensors with the same index type and density weights. A and B must be defined on the same frame.
A &mult B -- A: a Maple expression; B: a Maple expression, vector, differential form, differential biform, tensor. A and B must be defined on the same frame.
A &wedge B -- A and B: Maple expressions or differential forms, differential biforms. If A and B are forms, then the sum of their degrees cannot exceed the dimension of the frame on which they are defined. If A and B are bi-forms, then the sum of their horizontal degrees cannot exceed the dimension of the base manifold on which they are defined. A and B must be defined on the same frame.
A &tensor B -- A and B: Maple expressions, vectors, differential 1-forms, tensors. A and B must be defined on the same frame.
These commands are part of the DifferentialGeometry package, and so can be used in the forms given above only after executing the command with(DifferentialGeometry).
Examples
Use DGsetup to define a 3-dimensional manifold M with coordinates [x, y, z].
Example 1.
Create linear combinations of vector fields and differential 1-forms using &plus and &mult.
Example 2.
Create differential 2-forms using &plus and &mult and &wedge.
Example 3.
Create various tensors using &plus, &mult and &tensor.
See Also
DifferentialGeometry, DGzip, evalDG
Download Help Document