Physics[D_] - indexed covariant/contravariant differential operator with respect to curvilinear spacetime coordinates
|
Calling Sequence
|
|
D_[mu](A)
D_[mu](A, [X])
D_(A)
D_(A, [X])
|
|
Parameters
|
|
mu
|
-
|
a name representing an integer number between 0 and the spacetime dimension, can also be the number itself
|
A
|
-
|
any mathematical expression or relation between expressions, or a set or list of them, or an rtable
|
[X]
|
-
|
a list of differentiation variables to which the index mu refers
|
|
|
|
|
Description
|
|
•
|
The D_[mu] command is a computational representation for , the covariant differential operator, a tensor, the generalization of to curvilinear coordinates .
|
•
|
D_ can also be used without an index, as in D_(A) displayed as , in which case it represents the total differential in curvilinear coordinates, and the output comes automatically expanded as D_[mu](A) * d_(X[~mu]), where X is a coordinates system and X[~mu] is the corresponding spacetime vector.
|
•
|
The covariant D_[mu] = is defined in terms of the Christoffel symbols as
|
|
when acting on a covariant tensor as , and as
|
|
when acting on a contravariant tensor. For tensors of higher rank, for each covariant index there is one negative Christoffel term as in the formula for and for each contravariant index there is one positive Christoffel term as in the formula for .
|
•
|
The contravariant is entered as D_[~mu], so using the same D_ just with a contravariant index.
|
•
|
Computations performed with the Physics package commands take into account Einstein's sum rule for repeated indices - see `.` and Simplify. The distinction between covariant and contravariant indices in the input of tensors is done by prefixing contravariant ones with ~, say as in ~mu; in the output, contravariant indices are displayed as superscripts. For contracted indices, you can enter them one covariant and one contravariant. Note however that - provided that the spacetime metric is galilean (Euclidean or Minkowski), or the object is a tensor also in curvilinear coordinates - this distinction in the input is not relevant, and so contracted indices can be entered as both covariant or both contravariant, in which case they will be automatically rewritten as one covariant and one contravariant. Tensors can have spacetime and space indices at the same time. To change the type of letter used to represent spacetime or space indices see Setup.
|
•
|
You can also override the default differentiation variables by passing two arguments to D_ or D_[mu], in which case the second argument is expected to be a list with the differentiation variables, as in D_[mu](A, [x1, x2, ...]), and so this list should have as many symbols as the dimension of spacetime, which by default is 4 but can be set to any value with the Setup command.
|
•
|
Some automatic checking and simplifications are carried out each time an operation such as D_[mu](A) is executed. The checking is concerned with possible syntax errors. Regarding the automatic simplifications, a summary is as follows:
|
–
|
If does not depend on the differentiation variables or is equal to the metric g_, then 0 is returned.
|
–
|
If is a scalar then d_[mu](A) is returned.
|
–
|
If belongs to the differentiation variables, then the definition of D_[mu](A) is applied and the resulting value returned.
|
–
|
If is a sum, product, power, or known function, then the differentiation is distributed accordingly, the same way it is done by d_.
|
•
|
A number of additional identities for covariant derivatives are returned when using expand.
|
•
|
To perform the differentiation, the D_ command makes us of the diff command of the Physics package, which in turn uses the standard Maple diff command, so that any user-defined differentiation rule, such as for a function foo, of the form `diff/foo`, is automatically taken into account by D_.
|
•
|
The %D_ command is the inert form of D_, so it represents the same mathematical operation but without performing it. To perform the operation, use value.
|
|
|
Compatibility
|
|
•
|
The Physics[D_] command was introduced in Maple 16.
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
Set up a coordinate system to work with - the first one to be set is automatically taken as the differentiation variables for d_, the covarariant derivative D_ and the dAlembertian
>
|
|
| (2) |
When Physics is initialized, the default spacetime metric is of Minkowski type. You can see the metric querying Setup, as in Setup(metric);, or directly entering the metric g_ with no indices
>
|
|
| (3) |
For illustration purposes Define an arbitrary spacetime tensor
>
|
|
| (4) |
Check the nonzero components of Christoffel: if, as in the Minkowski case, there are none, then
>
|
|
| (5) |
>
|
|
| (6) |
>
|
|
| (7) |
To set the scenario as an arbitrary non-galilean spacetime set the metric to be arbitrary, that is, depending on 10 arbitrary functions of the spacetime coordinates
>
|
|
| (8) |
>
|
|
| (9) |
Related to displaying the components of Christoffel, it is convenient to have a compact display of the 10 arbitrary functions entering the metric as well as of their derivatives; for that purpose use the enhanced display scheme of the differential equation packages.
>
|
|
| (10) |
So from herein, in the display of expressions, derivatives are displayed as indexed and the functionality of the arbitrary functions is suppressed.
Check the value of for = = = 1
>
|
|
| (11) |
So now, for the total differential and the covariant derivative, we have
>
|
|
| (12) |
>
|
|
| (13) |
To express these results using the definition in terms of Christoffel symbols use expand or convert to d_
>
|
|
| (14) |
To compute with a representation for without actually performing the operation, use the inert form %D_. To afterwards perform the operation use value
>
|
|
| (15) |
>
|
|
| (16) |
The covariant derivative of a scalar is always equal to the derivative
>
|
|
| (17) |
>
|
|
| (18) |
To reduce the amount of input notation, a scalar constructed with contracted indices in tensors can be entered with all contracted indices covariant, or as a power in the case of a contracted product of a tensor with itself. For example, use
>
|
|
| (19) |
>
|
|
| (20) |
and as expected in the case of scalars, in the above you see no Christoffel symbols.
Set the spacetime metric g_ by giving the square of the spacetime interval
>
|
|
| (21) |
>
|
|
| (22) |
The generalized divergence of a vector in curvilinear coordinates
>
|
|
| (23) |
>
|
|
| (24) |
>
|
|
|
|
See Also
|
|
`.`, Christoffel, Coordinates, d_, Define, DifferentialGeometry[Tensor][CovariantDerivative], Physics, Physics conventions, Physics examples, Setup, value
|
|
References
|
|
|
Landau, L.D., and Lifshitz, E.M. The Classical Theory of Fields, Course of Theoretical Physics Volume 2, fourth revised English edition. Elsevier, 1975.
|
|
|