LieAlgebras[SubRepresentation] - find the induced representation on an invariant subspace of the representation space
Calling Sequences
SubRepresentation(ρ,S, W)
Parameters
ρ - a representation of a Lie algebra 𝔤 on a vector space V
S - a list of vectors in V whose span defines a ρ-invariant subspace of V
W - a Maple name or string, giving the frame name for the representation space for the subrepresentation
Description
Examples
If ρ: 𝔤 → glV is a representation of a Lie algebra 𝔤 on a vector space V, then S is a ρ-invariant subspace of V if ρxY ∈ S for all x ∈ 𝔤 and Y∈ S.
The command SubRepresentation(ρ,S,W) returns the representation φ of 𝔤 on the vector space S defined by φxy =ρxY, where x ∈ 𝔤 and Y ∈ S.
with⁡DifferentialGeometry:with⁡LieAlgebras:with⁡Library:
Example 1.
We shall define a 4-dimensional representation ρ of a 4-dimensional Lie algebra taken from the DifferentialGeometry Library, find an invariant subspace S of ρ, and calculate the subrepresentation of ρ on S.
L≔Retrieve⁡Winternitz,1,4,7,Alg1
L:=e1,e4=2⁢e1,e2,e3=e1,e2,e4=e2,e3,e4=e2+e3
Initialize the Lie algebra Alg1.
DGsetup⁡L:
Initialize the representation space V.
DGsetup⁡x1,x2,x3,x4,V:
Define the matrices which specify a representation of Alg1 on V.
M≔Matrix⁡0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,Matrix⁡0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,Matrix⁡0,−1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,Matrix⁡−2,0,0,0,0,−1,−1,0,0,0,−1,0,0,0,0,0:
Define the representation with the Representation command.
ρ≔Representation⁡Alg1,V,M
Define a subspace S of V.
S≔D_x1,D_x2,D_x3
S:=D_x1,D_x2,D_x3
We can use the Query command to check that S is a ρ-invariant subspace.
Query⁡ρ,S,InvariantSubspace
true
Define a frame for the induced representation of ρ on S.
DGsetup⁡y1,y2,y3,W:
φ≔SubRepresentation⁡ρ,S,W
Query⁡φ,Representation
See Also
DifferentialGeometry
Library
LieAlgebras
Query
Representation
Retrieve
Download Help Document