6.1. Covariant derivatives
We understand a covariant derivative as a covariant derivative operator (see Wald). In particular, ordinary ("partial") derivative operators are obtained as covariant derivatives with the options Curvature->False and Torsion->False. Covariant derivatives are real operators acting on (possibly complex) vector bundles.
DefCovD Define a covariant derivative operator
UndefCovD Undefine a covariant derivative
$CovDs List of defined covariant derivatives
CovDQ Validate a covariant derivative symbol
Definition of a covariant derivative.
Default options for DefCovD:
In[398]:=
Out[398]=
Define a covariant derivative Cd on TangentM3 (the default vbundle obtained from the index given in the derivative). Automatically the Christoffel symbols and the Riemann and Ricci tensors are defined. By default xTensor` does not assume that this derivative is associated to a metric and therefore the symmetries of the Riemann tensor are not as expected: there is just antisymmetry in the first pair of indices. The Ricci tensor has no symmetry at all. There is no Ricci scalar.
In[399]:=
In[400]:=
Out[400]=
In[401]:=
Out[401]=
In[402]:=
Out[402]=
The names of the associated tensors are determined by the function GiveSymbol. Their output symbols are determined by the function GiveOutputString.If you want to change any of those, modify the corresponding function before defining the object.
In[403]:=
Out[403]=
In[404]:=
Out[404]=
Derivatives can be represented in two ways, encoded as the strings Prefix or Postfix in the global variable $CovDFormat. The default value is Prefix. Directional derivatives are always given in Prefix notation.
In[405]:=
Out[405]=
In[406]:=
Out[406]=
In[407]:=
In[408]:=
Out[408]=
In[409]:=
Out[409]=
Derivatives are linear operators and implement automatically the Leibnitz rule. The final ordering of terms is decided by Mathematica.
In[410]:=
Out[410]=
Dummy indices are, by default, pushed to the right by the canonicalization process
In[411]:=
Out[411]=
SortCovDs Commute covariant derivatives, adding Riemann tensors if needed
SortCovDsStart Automatic commutation of covariant derivatives
SortCovDsStop Remove automatic commutation of covariant derivatives
$CommuteCovDsOnScalars Automatic commutation of torsionless derivatives on scalar expressions
Commutation of derivatives.
By default, a special ordinary derivative called PD is defined. It is one of the many covariant derivative operators without curvature and without torsion, but no further assumptions are made about it. It can be used as a generic "partial derivative" in most computations, but its meaning is different. Note that they are not automatically sorted:
In[412]:=
Out[412]=
In[413]:=
In[414]:=
Out[414]=
In[415]:=
Out[415]=
In[416]:=
Out[416]=
We can automate the commutation of derivatives:
In[417]:=
In[418]:=
Out[418]=
In[419]:=
All symmetric (torsionless) connections commute (with themselves) on scalar expressions. That can be avoided switching off the variable $CommuteCovDsOnScalars.
The input of high-order derivatives is certainly slow due to the sharp syntactic restrictions of xTensor`. There are several options to avoid this problem. Of course, you cannot use Validate unless you modify it to recognize the new syntactic extensions.
The standard way to input a third order derivative is this:
In[420]:=
Out[420]=
We can use the prefix notation of Mathematica:
In[421]:=
Out[421]=
or we can define our own rules to input derivatives, breaking the standard syntax. The simplest possibility, based on the fact that the first bracket of PD always contains a single index, is:
In[422]:=
In[423]:=
In[425]:=
Out[425]=
In[426]:=
Out[426]//InputForm=
PD[-a][PD[-b][PD[-c][T[c, d, -e]]]]
In[427]:=
or an intermediate situation, based on the same fact, is:
In[429]:=
In[430]:=
Out[430]=
In[431]:=
Out[431]//InputForm=
PD[-a][PD[-b][PD[-c][T[c, d, e]]]]
In[432]:=
A totally different notation could be
In[433]:=
In[434]:=
Out[434]=
In[435]:=
Out[435]//InputForm=
PD[-a][PD[-b][PD[-c][T[c, d, -e]]]]
In[436]:=
In[437]:=
Created by Mathematica (May 16, 2008) | ![]() |