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

Online Help

All Products    Maple    MapleSim


Tensor[PermutationSymbol] - create a permutation symbol

Calling Sequences

     PermutationSymbol(indexType, fr)

Parameters

   indexType    - a string, one of the 4 possible index types "cov_bas", "con_bas", "cov_vrt", or "con_vrt"

   fr           - (optional) the name of a defined frame

 

Description

Examples

Description

• 

A permutation symbol is a tensor density which is fully skew-symmetric and whose component values are +1 or -1. The rank of the permutation symbol is the dimension of the manifold M, or the base or fiber dimension of a vector bundle EM. The covariant permutation symbol is a tensor density of weight -1 while the contravariant permutation symbol is a tensor density of weight +1.

• 

The command PermutionSymbol(indexType) returns the permutation symbol of the type specified by indexType in the current frame unless the frame is explicitly specified.

• 

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

Examples

withDifferentialGeometry:withTensor:

 

Example 1.

Create a 2-dimensional manifold M.

DGsetupx,y,M

frame name: M

(2.1)

 

Here are the 2 different permutation symbols one can define on M. For each we use the DGinfo command to display the tensor type -- recall that the first list characterizes the index type and the second list the tensor density weight.

M > 

P1PermutationSymbolcov_bas

P1:=dxdydydx

(2.2)
M > 

Tools:-DGinfoP1,TensorType

cov_bas,cov_bas,bas,1

(2.3)
M > 

P2PermutationSymbolcon_bas

P2:=D_xD_yD_yD_x

(2.4)
M > 

Tools:-DGinfoP2,TensorType

con_bas,con_bas,bas,1

(2.5)

 

Example 2.

Create a rank 2 vector bundle E over a 3-dimensional base.

M > 

DGsetupx,y,z,u,v,E

frame name: E

(2.6)

 

Here are the 4 different permutation symbols one can define on E and their tensor types.

E > 

P1PermutationSymbolcov_bas

P1:=dxdydzdxdzdydydxdz+dydzdx+dzdxdydzdydx

(2.7)
E > 

Tools:-DGinfoP1,TensorType

cov_bas,cov_bas,cov_bas,bas,1

(2.8)
E > 

P2PermutationSymbolcon_bas

P2:=D_xD_yD_zD_xD_zD_yD_yD_xD_z+D_yD_zD_x+D_zD_xD_yD_zD_yD_x

(2.9)
E > 

Tools:-DGinfoP2,TensorType

con_bas,con_bas,con_bas,bas,1

(2.10)
E > 

P3PermutationSymbolcov_vrt

P3:=dudvdvdu

(2.11)
E > 

Tools:-DGinfoP3,TensorType

cov_vrt,cov_vrt,vrt,1

(2.12)
E > 

P4PermutationSymbolcon_vrt

P4:=D_uD_vD_vD_u

(2.13)
E > 

Tools:-DGinfoP4,TensorType

con_vrt,con_vrt,vrt,1

(2.14)

See Also

DifferentialGeometry

Tensor

DGinfo

KroneckerDelta

Physics:-LeviCivita

Physics:-KroneckerDelta