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
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 E→M. 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.
with⁡DifferentialGeometry:with⁡Tensor:
Example 1.
Create a 2-dimensional manifold M.
DGsetup⁡x,y,M
frame name: M
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.
P1≔PermutationSymbol⁡cov_bas
P1:=dx⁢dy−dy⁢dx
Tools:-DGinfo⁡P1,TensorType
cov_bas,cov_bas,bas,−1
P2≔PermutationSymbol⁡con_bas
P2:=D_x⁢D_y−D_y⁢D_x
Tools:-DGinfo⁡P2,TensorType
con_bas,con_bas,bas,1
Example 2.
Create a rank 2 vector bundle E over a 3-dimensional base.
DGsetup⁡x,y,z,u,v,E
frame name: E
Here are the 4 different permutation symbols one can define on E and their tensor types.
P1:=dx⁢dy⁢dz−dx⁢dz⁢dy−dy⁢dx⁢dz+dy⁢dz⁢dx+dz⁢dx⁢dy−dz⁢dy⁢dx
cov_bas,cov_bas,cov_bas,bas,−1
P2:=D_x⁢D_y⁢D_z−D_x⁢D_z⁢D_y−D_y⁢D_x⁢D_z+D_y⁢D_z⁢D_x+D_z⁢D_x⁢D_y−D_z⁢D_y⁢D_x
con_bas,con_bas,con_bas,bas,1
P3≔PermutationSymbol⁡cov_vrt
P3:=du⁢dv−dv⁢du
Tools:-DGinfo⁡P3,TensorType
cov_vrt,cov_vrt,vrt,−1
P4≔PermutationSymbol⁡con_vrt
P4:=D_u⁢D_v−D_v⁢D_u
Tools:-DGinfo⁡P4,TensorType
con_vrt,con_vrt,vrt,1
See Also
DifferentialGeometry
Tensor
DGinfo
KroneckerDelta
Physics:-LeviCivita
Physics:-KroneckerDelta
Download Help Document