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 g is a symmetric, covariant, rank 2, non-degenerate tensor. The inverse of g is a symmetric, contravariant, rank 2 non-degenerate tensor.

• 

If X is a vector field (or rank 1 contravariant tensor), then we can use the metric g to define a rank 1 covariant tensor field α=LgX by αY=gX,Y, where Y is any vector field. In terms of components, if X=Xii and g=gij dxidxj, then α=αi dxi where αi =gij Xj. The mapping Lg, called the lowering map, is easily extended to higher rank tensors. For example, if T is a contravariant rank 3 tensor, then a mixed type tensor S of covariant rank 2 and contravariant rank 1 can be defined by lowering, say the 1st and 3rd indices of T, by setting SX, β,Y=TLgX,β,LgY. In terms of components, Si  k  j = gih gkl Thjl.

• 

The lowering map Lg 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 Rh and is defined in terms of the inverse h of the metric g. If X=Rhα, then in terms of components Xi=hij αj , where hij is the inverse matrix for gij . 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

withDifferentialGeometry:withTensor:

 

Example 1.

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

DGsetupx,y,z,M:

M > 

gevalDGadx&tdx+bdy&tdz+dz&tdy

g:=adxdx+bdydz+bdzdy

(2.1)

 

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

M > 

hInverseMetricg

h:=D_xD_xa+D_yD_zb+D_zD_yb

(2.2)

 

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

M > 

XevalDGD_x+3D_y

X:=D_x+3D_y

(2.3)
M > 

RaiseLowerIndicesg,X,1

adx+3bdz

(2.4)

 

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

M > 

TevalDGD_z&tdy&tD_x&tdz

T:=D_zdyD_xdz

(2.5)
M > 

RaiseLowerIndicesg,T,1,3

abdydydxdz

(2.6)

 

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

M > 

RaiseLowerIndicesh,T,2,4

D_zD_zD_xD_yb2

(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 > 

DGsetupx,y,u,v,E

frame name: E

(2.8)

 

Define a fiber metric g on E.

E > 

gevalDGxdu&tdu+ydv&tdv

g:=xdudu+ydvdv

(2.9)

 

Define a tensor field on the fibers of E.

E > 

TevalDG2D_u&tD_v+D_v&tD_v

T:=2D_uD_v+D_vD_v

(2.10)

 

Lower the 1st index of T with g.

E > 

RaiseLowerIndicesg,T,1

2xduD_v+ydvD_v

(2.11)

 

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

E > 

RaiseLowerIndicesg,T,1,2

2xydudv+y2dvdv

(2.12)

See Also

DifferentialGeometry

Tensor

ContractIndices