Physics[Christoffel] - The Christoffel symbols
|
Calling Sequence
|
|
Christoffel[]
convert(expression, Christoffel)
|
|
Parameters
|
|
|
-
|
the indices, as names representing integer numbers between 0 and the spacetime dimension, they can also be the numbers themselves
|
|
|
|
|
Description
|
|
•
|
The all covariant Christoffel[mu, alpha, beta], displayed as , is a computational representation for the Christoffel symbols, defined in terms of derivatives of the spacetime metric as
|
|
where the spacetime differentiation operator is implemented in Maple as d_[mu]. From this definition, Christoffel is symmetric with respect to interchanging the second and third indices.
|
•
|
To express or using this definition in terms of derivatives of the spacetime metric use convert to g_. Sometimes it is also convenient to rewrite tensorial expressions the other way around, in terms of the Christoffel symbols and its derivatives. For example: non-covariant derivatives of the metric or any of the general relativity tensors that can be expressed in terms of them. For this purpose you can use convert(expression, Christoffel) - see the Examples section.
|
•
|
When the indices of Christoffel assume integer values they are expected to be between 0 and the spacetime dimension, prefixed by ~ when they are contravariant, and the corresponding value of Christoffel is returned. When the indices have symbolic values Christoffel returns unevaluated after normalizing its indices taking into account the symmetry property of the 2nd and 3rd indices.
|
•
|
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.
|
•
|
During a Maple session, the value of any component of is automatically determined by the value of the spacetime metric at the moment. When Physics is loaded, the spacetime is set to Minkowski type, and so all the elements of Christoffel are automatically zero. To set the spacetime metric to something different use Setup. Also, at least one system of coordinates must be set in order to compute the derivatives entering the definition of Christoffel. For that purpose see Coordinates or Setup.
|
•
|
Besides being indexed with three indices, Christoffel accepts two keywords:
|
–
|
array: (synonym: Array, or no indices whatsoever, as in Christoffel[]) returns an Array that when indexed with numerical values from 1 to the dimension of spacetime it returns the value of each of the components of Christoffel. If this keyword is passed together with indices, that can be covariant or contravariant, the resulting array takes into account the character of the indices. If one of these indices has a numerical value, if contravariant then preceded by ~, the returned object is the corresponding 2 x 2 Matrix.
|
–
|
nonzero: returns a set of equations, with the left-hand-side as a sequence of three positive numbers identifying the element of and the corresponding value in the right-hand-side. Note that this set is actually the output of the ArrayElems command when passing to it the Array obtained with the keyword array.
|
•
|
Some automatic checking and normalization are carried out each time you enter Christoffel[...]. The checking is concerned with possible syntax errors. The automatic normalization takes into account the symmetry of Christoffel[mu, alpha, beta] with respect to interchanging the positions of the indices alpha and beta.
|
•
|
The %Christoffel command is the inert form of Christoffel, so it represents the same mathematical operation but without performing it. To perform the operation, use value.
|
|
|
Compatibility
|
|
•
|
The Physics[Christoffel] 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 covariant derivative D_ and the dAlembertian
>
|
|
| (2) |
When Physics is initialized, the default spacetime metric is of Minkowski type. You can see the metric by querying Setup, as in Setup(metric);, or by directly entering the metric g_ with no indices
>
|
|
| (3) |
Check the nonzero components of Christoffel: because the default spacetime is of Minkowski type, there are none
>
|
|
| (4) |
Hence
>
|
|
| (5) |
Consequently, all the general relativity tensors defined in terms of Christoffel and derivatives of the metric g_ are also automatically zero
>
|
|
| (6) |
>
|
|
| (7) |
>
|
|
| (8) |
>
|
|
| (9) |
For the same reason the covariant derivative ; for illustration purposes Define an arbitrary spacetime tensor
>
|
|
| (10) |
>
|
|
| (11) |
To set the scenario to be an arbitrary non-galilean spacetime, set the metric to be arbitrary (that is, depending on 10 arbitrary functions of the spacetime coordinates )
>
|
|
| (12) |
>
|
|
| (13) |
When the indices are not numerical, Christoffel returns itself after normalizing its second and third indices taking advantage of the symmetry under exchange of them
>
|
|
| (14) |
>
|
|
| (15) |
>
|
|
| (16) |
To express Christoffel in terms of its definition in terms of the spacetime metric g_, use convert to g_
>
|
|
| (17) |
To rewrite expressions like this one back in terms of Christoffel and its derivatives use convert(... Christoffel)
>
|
|
| (18) |
>
|
|
| (19) |
>
|
|
| (20) |
>
|
|
| (21) |
>
|
|
| (22) |
>
|
|
| (23) |
>
|
|
| (24) |
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.
>
|
|
| (25) |
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
>
|
|
| (26) |
Now of for = = = 1 (note you enter the contravariant index prefixed by ~)
>
|
|
| (27) |
To compute with a representation for Christoffel without actually performing the operation, use the inert form %Christoffel. To afterwards perform the operation use value
>
|
|
| (28) |
>
|
|
| (29) |
Compute Arrays with all the components of and
>
|
|
| (30) |
>
|
|
| (31) |
>
|
|
| (32) |
>
|
|
| (33) |
Because these arrays of values are computed by already taking into account the character (covariant/contravariant) of each index, you do not need to indicate furthermore that character. Thus, this is the all covariant with = = = 1
>
|
|
| (34) |
and this is the value of for = = = 1
>
|
|
| (35) |
Compare with the output of in eq (22)
>
|
|
| (36) |
The Schwarzschild metric in spherical coordinates (see g_) and the four 2 x 2 matrices for by giving values to its first index
>
|
|
| (37) |
>
|
|
| (38) |
>
|
|
|
|
See Also
|
|
`.`, Array, ArrayElems, Coordinates, D_, d_, Define, DifferentialGeometry[Tensor][Christoffel], Einstein, PDEtools[declare], Physics, Physics conventions, Physics examples, Ricci, Riemann, Setup, value, Weyl
|
|
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.
|
|
|