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
JetCalculus[TotalDiff] - take the total derivative of an expression, a differential form or a contact form
Calling Sequences
TotalDiff(f, v)
Parameters
f - a Maple expression, a differential form or a bi-form
V - an independent variable, a positive integer or a list of positive integers
Description
The operation of total differentiation is a fundamental one in the study of jet spaces and their application to differential equations and the calculus of variations. Informally, total differentiation of a function on a jet space with respect to an independent variable is the same as ordinary differentiation with respect to that variable if the jet coordinates are treated temporarily as functions of the independent variables. Here is the formal definition. Let pi: E -> M be a bundle and J^k(E) -> M be the bundle of k-jets of local sections of E. Let U be a coordinate neighborhood of M (which trivializes E) with local coordinates (x^1, x^2, ... x^n), let s: U -> E be a local section of E, and let j^k(s): U -> J^k(E) be the tautological lift ofs. If f is a smooth real-valued function on J^k(E), then the total derivative of f with respect to x^i is the function D_i(f) defined on J^(k+1)(E) (or more precisely on the open set pi^(-1)(U)) by D_i(f) (j^(k + 1)(s)(x)) = partial_{x^i} f(j^k(s)(x)).
If f is a function on a jet space and v an independent variable, then TotalDiff(f, v) calculates the total derivative of f with respect to v.
Total differentiation is extended to differential forms and bi-forms by Lie derivative with respect to the corresponding total vector field. The total derivative with respect to a coordinate function x^i commutes with the exterior derivative, the horizontal exterior derivative, and the vertical exterior derivative.
The command TotalDiff is part of the DifferentialGeometry:-JetCalculus package. It can be used in the form TotalDiff(...) only after executing the commands with(DifferentialGeometry) and with(JetCalculus), but can always be used by executing DifferentialGeometry:-JetCalculus:-TotalDiff(...).
Examples
Example 1.
First initialize the jet space for two independent variables and two dependent variables and prolong it to order 3.
Recall that u[1, 2] represents the mixed 3rd derivative of u, once with respect to x and twice with respect to y.
The total derivative of u[1, 2] with respect to x is u[2, 2] which represents the 4th derivative of u, twice with respect to x and twice with respect to y.
The total derivative of u[1, 2] with respect to y is u[1, 3] which represents the 4th derivative of u, once with respect to x and 3 times with respect to y.
In place of the independent variables x or y the integer 1 or 2 can be used.
Here is a general formula for the total derivative of a function with dependencies on the 2-jet of u.
The total derivative satisfies the usual rules of differentiation.
Multiple total derivatives can also be calculated by using TotalDiff.
We differentiate u[2] 2 times with respect to x and 3 times with respect to y to get u[3, 5].
Example 2.
Total differentiation extends to differential forms and contact forms on jet spaces.
See Also
DifferentialGeometry, JetCalculus, TotalVector
Download Help Document