LieAlgebras[DirectSum] - create the direct sum of a list of Lie algebras
Calling Sequences
DirectSum(Summands, AlgName)
Parameters
Summands - a list of Lie algebra data structures or names of Lie algebras
AlgName - a name or string, the name of the direct sum Lie algebra being created
Description
Examples
The direct sum of two Lie algebras 𝔤1 and 𝔤2 is the vector space direct sum 𝔤 = 𝔤1 ⊕ 𝔤2 with Lie bracket
x1, y1, x2, y2=x1, y1, x2, y2, where x1, x2 ∈ 𝔤1 and y1, y2 ∈ 𝔤2 .
DirectSum(Summands, AlgName) creates a Lie algebra data structure for the direct sum of the Lie algebras listed in the first argument. The name given to the direct sum algebra is AlgName. The structure equations for the direct sum are displayed.
A Lie algebra data structure contains the structure constants in a standard format used by the LieAlgebras package. In the LieAlgebras package, the command DGsetup is used to initialize a Lie algebra -- that is, to define the basis elements for the Lie algebra and its dual and to store the structure constants for the Lie algebra in memory.
The command DirectSum is part of the DifferentialGeometry:-LieAlgebras package. It can be used in the form DirectSum(...) only after executing the commands with(DifferentialGeometry) and with(LieAlgebras), but can always be used by executing DifferentialGeometry:-LieAlgebras:-DirectSum(...).
with⁡DifferentialGeometry:with⁡LieAlgebras:
Example 1.
First we define 3 Lie algebra data structures and initialize their Lie algebras. We display the multiplication tables.
L1≔_DG⁡LieAlgebra,Alg1,2,1,2,1,1:
DGsetup⁡L1,x,a:
L2≔_DG⁡LieAlgebra,Alg2,3,1,2,1,1,1,3,2,−2,2,3,3,1:
DGsetup⁡L2,y,b:
L3≔_DG⁡LieAlgebra,Alg3,1,:
DGsetup⁡L3,z,c:
MultiplicationTable⁡Alg1,LieBracket,MultiplicationTable⁡Alg2,LieBracket,MultiplicationTable⁡Alg3,LieBracket
e1,e2=e1,e1,e2=e1,e1,e3=−2⁢e2,e2,e3=e3,
Create the direct sum of the Lie algebra data structures L1 and L2.
L4≔DirectSum⁡L1,L2,Alg4
L4:=e1,e2=e1,e3,e4=e3,e3,e5=−2⁢e4,e4,e5=e5
DGsetup⁡L4:
MultiplicationTable⁡Alg4,LieTable
Create the direct sum of the Lie algebras Alg1, Alg2 and the Lie algebra data structure L3.
L5≔DirectSum⁡Alg1,Alg2,L3,Alg5
L5:=e1,e2=e1,e3,e4=e3,e3,e5=−2⁢e4,e4,e5=e5
DGsetup⁡L5:
MultiplicationTable⁡Alg5,LieTable
See Also
DifferentialGeometry
LieAlgebras
Decompose
Query[DirectSumDecomposition]
Download Help Document