LieAlgebraData[FormStructureEquations] - convert a list of exterior derivative equations to a Lie algebra data structure
Calling Sequence
LieAlgebraData(FormStructureEquations, Basis, AlgName)
Parameters
FormStructureEquations - a list of equations of the form dθk =−Cijkθi∧θj (sum on i,j with i <j)
Basis - a list of unassigned names θ1, θ2, ... ,θn which defines a basis for the dual 1-forms of the Lie algebra
AlgName - a name or string, the name to be assigned to the Lie algebra
Description
Examples
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 first argument for DGsetup is a Lie algebra data structure which contains the structure constants in a standard format used by the LieAlgebras package.
One commonly used format for the structure equations of a Lie algebra 𝔤 is the set of exterior derivative equations for the dual 1-forms of the Lie algebra. For a 1-form θ in the dual of a Lie algebra, the exterior derivative is the 2-form defined by dθx,y = −θx,y, for x,y ∈𝔤. The function LieAlgebraData enables one to create a Lie algebra in Maple from a list of exterior derivative equations.
The command LieAlgebraData is part of the DifferentialGeometry:-LieAlgebras package. It can be used in the form LieAlgebraData(...) only after executing the commands with(DifferentialGeometry) and with(LieAlgebras), but can always be used by executing DifferentialGeometry:-LieAlgebras:-LieAlgebraData(...).
with(DifferentialGeometry): with(LieAlgebras):
Example 1.
In this example, we create a Lie algebra data structure for a Lie algebra called Ex1 from a list of structure equations for the exterior derivatives of the dual 1-forms. The structure equations contain arbitrary constants a,b, c and we determine for which values of these parameters the Jacobi identities actually hold. First, we create the list of structure equations. The variables t1, t2, and t3 must be unassigned names. They simply serve as placeholders for the purpose of entering in the structure equations.
FormStrEq := [d(t1) = -t2 &w t3, d(t2) = - t1 &w t3, d(t3) = a*t1 &w t2 + b*t2 &w t3 + c*t1 &w t3];
FormStrEq:=d⁡t1=−t2 &w t3,d⁡t2=−t1 &w t3,d⁡t3=a⁢t1 &w t2+b⁢t2 &w t3+c⁢t1 &w t3
Basis := [t1, t2, t3];
Basis:=t1,t2,t3
L := LieAlgebraData(FormStrEq, Basis, Ex1);
L:=e1,e2=−a⁢e3,e1,e3=e2−c⁢e3,e2,e3=e1−b⁢e3
DGsetup(L);
Lie algebra: Ex1
MultiplicationTable("ExteriorDerivative");
d⁡θ1=−θ2⁢⋀⁢θ3
d⁡θ2=−θ1⁢⋀⁢θ3
d⁡θ3=a⁢θ1⁢⋀⁢θ2+c⁢θ1⁢⋀⁢θ3+b⁢θ2⁢⋀⁢θ3
TF, EQ, SOLN, LIEALG := Query({a, b, c}, "Jacobi");
TF,EQ,SOLN,LIEALG:=true,0,b,−c,a=a,b=0,c=0,e1,e2=−a⁢e3,e1,e3=e2,e2,e3=e1
We conclude that the structure equations define a Lie Algebra for arbitrary a, with b=c =0.
See Also
DifferentialGeometry
LieAlgebras
ExteriorDerivative
LieAlgebraData
LieBracket
Query[Jacobi]
Download Help Document