Tensor[SubspaceType] - determine the signature of the metric restricted to a subspace of the tangent space
Calling Sequences
SubspaceType(g, S, pt, output)
Calling Sequences
g - a metric tensor g on an n-dimensional manifold M. The signature of g is arbitrary
S - a list of vectors defining a subspace S of the tangent space of M
pt - (optional) a list of equations specifying the coordinates of a point p of M
output - (optional) a keyword argument, one of "Matrix", "Riemannian", "PseudoRiemannian", "Null"
|
Description
|
|
•
|
Let p be a point of M and S a k-dimensional subspace of the tangent space T_pM. Let [Y_1, Y_2, ... , Y_k] be a basis for S and let h be the k x k matrix with components
|
h_{ij} = g(p)(Y_i, Y_j) i, j = 1 ... k.
The matrix h defines the metric on the subspace S induced by g. The subspace S is called "Riemannian" if h is positive or negative definitive; "PseudoRiemannian" if h is indefinite and non-degenerate; and "Null" if h is degenerate (det(h) = 0).
•
|
Let S be the span of m vectors [X_1, X_2, ... , X_m]; these vectors need not be linearly independent. The command SubspaceType(g, S) will attempt to determine the type of the subspace S at a generic point. It will return a sequence k, T, where k is the dimension of S and T is one of {"Riemannian", "PseudoRiemannian", "Null", Fail}. The value Fail typically indicates the subspace type is varying from point to point.
|
•
|
With the optional argument pt, the type of the subspace S at pt is determined. Specific properties of the coordinates of the point pt can be specified using assuming.
|
•
|
With the keyword argument output = "Matrix", the values of the matrix h and the basis used to compute h, evaluated at the point p, are returned.
|
•
|
With the keyword argument output = "Riemannian", output = "PseudoRiemannian" or output = "Null", the command returns the sequence k, TF, where k is the dimension of the subspace S and TF is true or false.
|
•
|
The subspace type is determined by a call to the command IsDefinite. The basis {Y_1, Y_2, ... , Y_k} is obtained from the spanning set {X_1, X_2, ... , X_m} using the command DGbasis.
|
•
|
The user can trace the program branching by setting infolevel[SubspaceType] := 2.
|
•
|
This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form SubspaceType(...) only after executing the commands with(DifferentialGeometry); with(Tensor); in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-SubspaceType.
|
|
|
Examples
|
|
>
|
|
For Examples 1 -- 4 we use coordinates [t, x, y, z] and the metric g.
>
|
|
| (2.1) |
M >
|
|
| (2.2) |
Example 1.
M >
|
|
| (2.3) |
M >
|
|
| (2.4) |
M >
|
|
| (2.5) |
M >
|
|
| (2.6) |
M >
|
|
| (2.7) |
M >
|
|
| (2.8) |
Example 2.
Here we give a simple example where the subspace type depends upon the value of the coordinates t and x.
M >
|
|
| (2.9) |
Because the subspace type depends t and x, the first call to SubspaceType fails.
M >
|
|
| (2.10) |
Specify the coordinates of a point and set the output option to "Matrix" to find the matrix form of the metric restricted to the subspace S.
M >
|
|
| (2.11) |
By inspection, we see that there are 3 possibilities:
Case 1. If a = b or a = -b, then the subspace type is "Null".
M >
|
|
| (2.12) |
M >
|
|
| (2.13) |
Case 2. If a^2 > b^2, then the subspace type is "PseudoRiemannian".
M >
|
|
| (2.14) |
Case 3. If a^2 < b^2, then the subspace type is "Riemannian".
M >
|
|
| (2.15) |
Example 3.
With the keyword argument output = "Riemannian", output = "PseudoRiemannian", or output = "Null", the command returns the sequence k, TF.
M >
|
|
| (2.16) |
Example 4.
The user can trace the program branching by setting infolevel[SubspaceType] := 2.
M >
|
|
| (2.17) |
M >
|
|
The orbit type is "Null" if the induced metric on the orbit is degenerate
The orbit type is "Riemannian" if the induced metric on the orbit is positive or negative definite
The orbit type is "PseudoRiemannian" if the induced metric on the orbit is degenerate and indefinite
The matrix h defining the induced metric is:
Matrix(2, 2, [[1,0],[0,-1]])
The determinant of the matrix h is: -1
| |
| (2.18) |
M >
|
|
| (2.19) |
Example 5.
The command SubspaceType works in all dimensions.
M >
|
|
| (2.20) |
M >
|
|
| (2.21) |
M >
|
|
| (2.22) |
M >
|
|
| (2.23) |
M >
|
|
| (2.24) |
M >
|
|
| (2.25) |
The list of vectors specifying the subspace need not be linearly independent.
M >
|
|
| (2.26) |
M >
|
|
| (2.27) |
M >
|
|
| (2.28) |
|
|