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.
|
•
|
Let be a fiber bundle with base dimension and fiber dimension and let be the -th jet bundle. Introduce local coordinates , ..., where, as usual, if is a section andis the -jet of then
|
and dim.
Then the total derivative of the jet coordinate with respect to the independent variable is . If is a function on jet space, then by the chain rule
Similarly, the total derivatives of differential forms dand the contact form =- with respect to the independent variable are given by
(dand .
If and are 2 differential forms on jet space, then . One can summarize all these formulas by saying that total differentiation with respect to the independent variable coincides with Lie differentiation with respect to the total vector field . Thus the total derivative with respect to commutes with the exterior derivative, the horizontal exterior derivative, and the vertical exterior derivative, that is,
and .
•
|
If is a function or differential form on a jet space and an independent variable, then TotalDiff(f, v) calculates the total derivative of with respect to . If is a list of positive integers, then the -fold iterated total derivative is calculated.
|
•
|
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 represents the mixed 3rd derivative of once with respect to and twice with respect to The total derivative of with respect to is which represents the 4th derivative of , twice with respect to and twice with respect to
The total derivative of with respect to is which represents the 4th derivative of , once with respect to and 3 times with respect to .
E >
|
|
E >
|
|
In place of the independent variables or the integer 1 or 2 can be used.
E >
|
|
E >
|
|
Here is a general formula for the total derivative of a function with dependencies on the 2-jet of
E >
|
|
E >
|
|
| (2.5) |
E >
|
|
| (2.6) |
E >
|
|
| (2.7) |
The total derivative satisfies the usual rules of differentiation.
E >
|
|
| (2.8) |
E >
|
|
| (2.9) |
Multiple total derivatives can also be calculated by using TotalDiff. We differentiate 2 times with respect to and 3 times with respect to to get .
E >
|
|
E >
|
|
| (2.11) |
Example 2.
Total differentiation extends to differential forms and contact forms on jet spaces.
E >
|
|
E >
|
|
| (2.13) |
E >
|
|
E >
|
|
E >
|
|
| (2.16) |
Example 3.
The DifferentialGeometry package supports an alternative jet notation. For example, if there are 2 independent variables , then would now represent the 3rd mixed partial derivative of once with respect to and twice with respect to
E >
|
|
E >
|
|
J >
|
|
J >
|
|
E >
|
|
Revert to the default jet notation.
J >
|
|
|
|
|
|
|
|