GroupActions[LieGroup] - create a module defining a Lie group
Calling Sequences
LieGroup(M, G)
LieGroup(T, G)
LieGroup(T, vars)
LieGroup(Alg, G)
Parameters
M - a square matrix defining an r-parameter matrix group
G - a name or string, the name of the manifold for the Lie group being created
T - a transformation
vars - the list of the r parameters appearing in the transformation T
Alg - a name or string, the name of a solvable Lie algebra
Description
Examples
Let G be a Lie group with multiplication * and identity e. In the DifferentialGeometry package a Lie group is represented by a module with exports Frame, Identity, LeftMultiplication, RightMultiplication, and Inverse. The Frame export returns the name given to the underlying manifold used to define coordinates on the Lie group. The export Identity gives the coordinate list for the identity point e. LeftMultiplication and RightMultiplication are procedures which accept the coordinates of a point a as arguments and return the transformations from G to G defining left multiplication x→a*x and right multiplication x→x*a. Inverse returns the transformation from G to G defined by x→x−1.
The first calling sequence computes the above Lie group module for a matrix group, that is, an r-parameter set of matrices containing the identity and closed under matrix multiplication and matrix inversion. The parameters appearing in the matrix M must match the coordinates used to define the Lie group G.
The second calling sequence computes the Lie group module for a given r-parameter transformation group, defined by the transformation T. The parameters appearing in the transformation T must match the coordinates used to define the Lie group G.
In the third calling sequence the transformation in taken to be the transformation defining either the left (x→a*x) or right ( x→x*a) multiplication for the Lie group G. The coordinates of the generic point a∈ G are specified by the list vars.
The fourth calling sequence implements Lie's second and third theorems and constructs a global Lie group G for any solvable Lie algebra Alg.
The command LieGroup is part of the DifferentialGeometry:-GroupActions package. It can be used in the form LieGroup(...) only after executing the commands with(DifferentialGeometry) and with(GroupActions), but can always be used by executing DifferentialGeometry:-GroupActions:-LieGroup(...).
with⁡DifferentialGeometry:with⁡GroupActions:with⁡LieAlgebras:
Example 1.
We create a Lie group module G1 for the matrix group of upper triangular matrices.
X≔Matrix⁡x,y,0,z
Since the group parameters in the matrix X are x, y, z, we use these for the coordinates on the Lie group.
DGsetup⁡x,y,z,G1
frame name: G1
LG1≔LieGroup⁡X,G1
LG1:=moduleexportFrame,Identity,LeftMultiplication,RightMultiplication,Inverse;end module
Evaluate the exports for the LG1 module:
LG1:-Frame
G1
LG1Identity
x=1,y=0,z=1
muL≔LG1:-LeftMultiplication⁡a,b,c
muL:=x=a⁢x,y=a⁢y+b⁢z,z=c⁢z
muR≔LG1:-RightMultiplication⁡a,b,c
muR:=x=a⁢x,y=b⁢x+c⁢y,z=c⁢z
muInv≔LG1:-Inverse
muInv:=x=1x,y=−yx⁢z,z=1z
Let us check the results for μL , μR , and μInv by calculating matrix products and inverses.
A≔Matrix⁡a,b,0,c
The entries of L give the formulas for the transformation μL :
L≔A·X
The entries of R give the formulas for the transformation μR :
R≔X·A
The entries of Y give the formulas for the transformation μInv :
Y≔1X
We can also verify that the exports for LG1 are correct with the ApplyTransformation command.
ApplyTransformation⁡muL,ApplyTransformation⁡muInv,a,b,c
1,0,1
The output of the LieGroup command can be passed to the InvariantVectorsAndForms program to compute the left and right invariant vector fields and forms on the Lie group G1.
InvariantVectorsAndForms⁡LG1
x⁢D_x,x⁢D_y,D_y⁢y+D_z⁢z,dxx,dyx−y⁢dzx⁢z,dzz,D_x⁢x+D_y⁢y,z⁢D_y,z⁢D_z,dxx,−y⁢dxx⁢z+dyz,dzz
Example 2.
The second calling sequence for LieGroup is similar in concept to the first calling sequence except that the Lie group is now determined from a group of transformations on a manifold instead of a matrix group. In this example, we consider a 5 parameter group of affine transformations in the plane.
DGsetup⁡x,y,M
frame name: M
T2≔Transformation⁡M,M,x=a⁢x+b⁢y+c,y=d⁢y+e
T2:=x=a⁢x+b⁢y+c,y=d⁢y+e
DGsetup⁡a,b,c,d,e,G2
frame name: G2
LG2≔LieGroup⁡T2,G2
LG2:=moduleexportFrame,Identity,LeftMultiplication,RightMultiplication,Inverse;end module
LG2:-LeftMultiplication⁡α,β,γ,δ,ε
a=a⁢α,b=b⁢α+d⁢β,c=c⁢α+e⁢β+γ,d=δ⁢d,e=e⁢δ+ϵ
The group parameters are a, b, c, d, e.
Example 3.
If the left or right multiplication for a Lie group is known, then the third calling sequence can be used to create the corresponding Lie group module. We take, as a simple example, the left multiplication map constructed in Example 1. Then the procedure LieGroup will compute the corresponding right multiplication.
DGsetup⁡x,y,z,G3
frame name: G3
T3≔Transformation⁡G3,G3,x=a⁢x,y=a⁢y+b⁢z,z=c⁢z
T3:=x=a⁢x,y=a⁢y+b⁢z,z=c⁢z
LG3L≔LieGroup⁡T3,a,b,c
LG3L:=moduleexportFrame,Identity,LeftMultiplication,RightMultiplication,Inverse;end module
S3≔LG3L:-RightMultiplication⁡a,b,c
S3:=x=a⁢x,y=b⁢x+c⁢y,z=c⁢z
The default assumption is that the transformation given as the first argument to LieGroup is the left multiplication map.The keyword argument multiplication = "right" can be used to indicate that the first argument is the right multiplication. Then the procedure LieGroup will compute the corresponding left multiplication.
LG3R≔LieGroup⁡S3,a,b,c,multiplication=right
LG3R:=moduleexportFrame,Identity,LeftMultiplication,RightMultiplication,Inverse;end module
LG3R:-RightMultiplication⁡a,b,c
x=a⁢x,y=b⁢x+c⁢y,z=c⁢z
LG3R:-LeftMultiplication⁡a,b,c
x=a⁢x,y=a⁢y+b⁢z,z=c⁢z
Example 4.
We use the fourth calling sequence to calculate the Lie group for a given abstract solvable Lie algebra. Retrieve an abstract Lie algebra from the DifferentialGeometry library and initialize it.
LA≔Library:-Retrieve⁡Winternitz,1,4,8,alg
LA:=e2,e3=e1,e2,e4=e2,e3,e4=−e3
DGsetup⁡LA
Lie algebra: alg
DGsetup⁡x1,x2,x3,x4,G4
frame name: G4
LG4≔LieGroup⁡alg,G4
LG4:=moduleexportFrame,Identity,LeftMultiplication,RightMultiplication,Inverse;end module
LG4:-LeftMultiplication⁡y1,y2,y3,y4
x1=y1−ⅇ−y4⁢x3⁢x4⁢y2−ⅇ−y4⁢x3⁢y2⁢y4−ⅇ−y4⁢x3⁢y2−y2⁢y3⁢x4−x2⁢ⅇy4⁢y3⁢x4−x2⁢ⅇy4⁢y3⁢y4−y4⁢x2⁢x3+x1,x2=y2+x2⁢ⅇy4,x3=y3+x3⁢ⅇ−y4,x4=x4+y4
We use coordinates x1, x2, x3 , x4 for the Lie group G4.
The structure equations for the right invariant vector fields on G4 coincide with the structure equations for the Lie algebra we started with.
Γ4≔InvariantVectorsAndForms⁡LG43
Γ4:=D_x1,−x3⁢x4+x3⁢D_x1+D_x2,−x2⁢x4⁢D_x1+D_x3,−x2⁢x3⁢D_x1+x2⁢D_x2−x3⁢D_x3+D_x4
LieAlgebraData⁡Γ4
e2,e3=e1,e2,e4=e2,e3,e4=−e3
Example 5.
We calculate the Lie group module for the special linear groupSL(2,ℝ , defined here as the group of fractional linear transformations on the real line.
DGsetup⁡x,M5
frame name: M5
T5≔Transformation⁡M5,M5,x=a⁢x+bc⁢x+d
T5:=x=a⁢x+bc⁢x+d
The group parameters are subject to the constraint ad − bc = 1. We solve for d and re-write the group action T5 in terms of 3 group parameters a, b, c.
T5≔eval⁡T5,d=1+b⁢ca
T5:=x=a⁢x+bc⁢x+b⁢c+1a
DGsetup⁡a,b,c,G5
frame name: G5
Note that for this group the values a =1, b=0, c =0 and a= −1, b = 0 ,c =0 both determine the identity transformation. A choice of identity point can be imposed with the keyword argument
identity .
LG5≔LieGroup⁡T5,G5,identity=a=1,b=0,c=0
LG5:=moduleexportFrame,Identity,LeftMultiplication,RightMultiplication,Inverse;end module
LG5RightMultiplication⁡r,s,t
a=a⁢r+b⁢t,b=a⁢r⁢s+b⁢s⁢t+br,c=a⁢c⁢r+b⁢c⁢t+ta
Example 6.
In this example, we calculate the Lie group multiplication for the Euclidean group of motions in the plane. Here is the standard matrix representation of this group.
X≔Matrix⁡cos⁡θ,sin⁡θ,a,−sin⁡θ,cos⁡θ,b,0,0,1
The group parameters are [θ, a, b] so we use these as coordinates for the Lie group G6.
DGsetup⁡θ,a,b,G6
frame name: G6
In this example, the entries of the matrix X are not simple rational functions of group parameter θ. Therefore some simplification of the defining equations for the left and right multiplication may be required in order for the LieGroup procedure to succeed. This can be done with the DifferentialGeometry Preferences command. The combine command will apply the addition formulas for sine and cosine which will simplify the defining equations for the left and right multiplications. The multiplication rules for the Euclidean Lie group can then be determined.
Preferences⁡simplification,x↦simplify⁡combine⁡x
procs...end proc
G6≔LieGroup⁡X,G6
G6:=moduleexportFrame,Identity,LeftMultiplication,RightMultiplication,Inverse;end module
G6LeftMultiplication⁡φ,c,d
θ=φ+θ,a=cos⁡φ⁢a+sin⁡φ⁢b+c,b=−sin⁡φ⁢a+cos⁡φ⁢b+d
See Also
DifferentialGeometry
GroupActions
MatrixGroup
ApplyTransformation
InvariantVectorsAndForms
Download Help Document