Tensor[CheckKillingTensor] - check that a tensor is the Killing tensor for a given metric or connection
Calling Sequences
CheckKillingTensor(g, T)
CheckKillingTensor(C, T)
Parameters
g - a covariant metric tensor on a manifold M
T - a symmetric covariant tensor on M, or a list of such
C - an affine connection on a manifold M
Description
Examples
This program computes the symmetrized covariant derivative of the symmetric covariant tensor T with respect to the Christoffel connection of the metric g or the given connection C, that is, it computes the Killing tensor equation ∇(aTbcd ...).
This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form CheckKillingTensor(...) only after executing the commands with(DifferentialGeometry), with(Tensor) in that order. It can always be used in the long form DifferentialGeometry:-Tensor:CheckKillingTensor.
with(DifferentialGeometry): with(Tensor):
Example 1.
Check that K1 is a Killing tensor for the metric g.
DGsetup([x, y], M):
g := evalDG((1/y)*dx &t dx + 1/x*dy &t dy);
g:=1y⁢dx⁢dx+1x⁢dy⁢dy
K1 := evalDG((1/y^3)*dx &t dx &t dx - (1/x^3)*dy &t dy &t dy);
K1:=1y3⁢dx⁢dx⁢dx−1x3⁢dy⁢dy⁢dy
CheckKillingTensor(g, K1);
0⁢dx⁢dx⁢dx⁢dx
Example 2.
Determine the equations for Ay and Bx that must be satisfied for K2 to be a Killing tensor for the metric g from Example 1.
K2 := evalDG(A(y)*dx &t dx &t dx + B(x)*dy &t dy &t dy);
K2:=A⁡y⁢dx⁢dx⁢dx+B⁡x⁢dy⁢dy⁢dy
P := CheckKillingTensor(g, K2);
P:=ⅆⅆyA⁡y⁢y+3⁢A⁡y4⁢y⁢dx⁢dx⁢dx⁢dy+ⅆⅆyA⁡y⁢y+3⁢A⁡y4⁢y⁢dx⁢dx⁢dy⁢dx−x3⁢B⁡x+y3⁢A⁡y4⁢x2⁢y2⁢dx⁢dx⁢dy⁢dy+ⅆⅆyA⁡y⁢y+3⁢A⁡y4⁢y⁢dx⁢dy⁢dx⁢dx−x3⁢B⁡x+y3⁢A⁡y4⁢x2⁢y2⁢dx⁢dy⁢dx⁢dy−x3⁢B⁡x+y3⁢A⁡y4⁢x2⁢y2⁢dx⁢dy⁢dy⁢dx+B′⁡x⁢x+3⁢B⁡x4⁢x⁢dx⁢dy⁢dy⁢dy+ⅆⅆyA⁡y⁢y+3⁢A⁡y4⁢y⁢dy⁢dx⁢dx⁢dx−x3⁢B⁡x+y3⁢A⁡y4⁢x2⁢y2⁢dy⁢dx⁢dx⁢dy−x3⁢B⁡x+y3⁢A⁡y4⁢x2⁢y2⁢dy⁢dx⁢dy⁢dx+B′⁡x⁢x+3⁢B⁡x4⁢x⁢dy⁢dx⁢dy⁢dy−x3⁢B⁡x+y3⁢A⁡y4⁢x2⁢y2⁢dy⁢dy⁢dx⁢dx+B′⁡x⁢x+3⁢B⁡x4⁢x⁢dy⁢dy⁢dx⁢dy+B′⁡x⁢x+3⁢B⁡x4⁢x⁢dy⁢dy⁢dy⁢dx
Tools:-DGinfo(P, "CoefficientSet");
14⁢ⅆⅆy⁢A⁡y⁢y+3⁢A⁡yy,14⁢ⅆⅆx⁢B⁡x⁢x+3⁢B⁡xx,−14⁢x3⁢B⁡x+y3⁢A⁡yx2⁢y2
See Also
DifferentialGeometry
Tensor
CovariantDerivative
SymmetrizeIndices
Download Help Document