RaiseLowerIndices - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Tensor[RaiseLowerIndices] - raise or lower a list of indices of a tensor

Calling Sequences

     RaiseLowerIndices(g, T, Indices)

     RaiseLowerIndices(h, T, Indices)

Parameters

   g        - a metric tensor

   h        - the inverse of a metric tensor

   T        - a tensor

   Indices  - a list of integers, referring to the arguments of T

 

Description

Examples

Description

• 

A metric tensor  is a symmetric, covariant, rank 2, non-degenerate tensor. The inverse of  is a symmetric, contravariant, rank 2 non-degenerate tensor.

• 

If  is a vector field (or rank 1 contravariant tensor), then we can use the metric  to define a rank 1 covariant tensor field by , where  is any vector field. In terms of components, if  and , then  where . The mapping , called the lowering map, is easily extended to higher rank tensors. For example, if  is a contravariant rank 3 tensor, then a mixed type tensor  of covariant rank 2 and contravariant rank 1 can be defined by lowering, say the 1st and 3rd indices of , by setting  In terms of components,

• 

The lowering map  from rank 1 contravariant tensors to rank 1 covariant tensors is invertible. The inverse map from rank 1 covariant tensors to rank 1 contravariant tensors is called the raising map  and is defined in terms of the inverse  of the metric . If , then in terms of components , where  is the inverse matrix for . As in the case of the lowering map, the raising map can be extended to higher rank tensors.

• 

With the first calling sequence, RaiseLowerIndices(g, T, Indices) will use the metric g to lower the indices/arguments of T given in the list Indices. Each of these indices must be a contravariant index.

• 

With the second calling sequence, RaiseLowerIndices(h, T, Indices) will use the inverse metric h to raise the indices/arguments of T given in the list Indices. Each of these indices must be a covariant index.

• 

This command is part of the DifferentialGeometry:-Tensor package, and so can be used in the form RaiseLowerIndices(...) only after executing the command with(DifferentialGeometry) and with(Tensor) in that order. It can always be used in the long form DifferentialGeometry:-Tensor:-RaiseLowerIndices.

Examples

 

Example 1.

First create a 3 dimensional manifold M and define a metric g on M.

M > 

(2.1)

 

Use the program InverseMetric to find the inverse of the metric g.

M > 

(2.2)

 

Use g to lower the index of a vector field X.

M > 

(2.3)
M > 

(2.4)

 

Use g to lower the 1st and 3rd indices of a rank 4 tensor T.

M > 

(2.5)
M > 

(2.6)

 

Use h to raise the 2nd and 4th indices of the tensor T.

M > 

(2.7)

 

Example 2.

We can also raise and lower indices for tensors associated with a vector bundle other than the tangent bundle. First let us construct a rank 2 vector bundle over a 2 dimensional base.

M > 

(2.8)

 

Define a fiber metric g on E.

E > 

(2.9)

 

Define a tensor field on the fibers of E.

E > 

(2.10)

 

Lower the 1st index of T with g.

E > 

(2.11)

 

Lower the 1st and 2nd indices of T with g.

E > 

(2.12)

See Also

DifferentialGeometry

Tensor

ContractIndices


Download Help Document