VectorStructureEquations - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


LieAlgebraData[VectorStructureEquations] - convert a list of exterior derivative equations to a Lie algebra data structure

Calling Sequence

     LieAlgebraData(VectorStructureEquations, Basis, AlgName)

Parameters

     VectorStructureEquations  - a list of equations of the form xi , xj=k=1nCijk xk 

     Basis                     - a list of unassigned names x1,x2, ...., xn which defines a basis for the Lie algebra

     AlgName                   - a name or string, the name to be assigned to the Lie algebra

 

Description

Examples

Description

• 

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 first argument for DGsetup is a Lie algebra data structure which contains the structure constants in a standard format used by the LieAlgebras package.

• 

The most common format for describing the structure equations of a Lie algebra is to list the non-zero Lie brackets. The function LieAlgebraData enables one to create a Lie algebra in Maple from a list of Lie bracket 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(...).

Examples

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 Lie bracket equations. First we create the list of structure equations.  The variables x, y, z,u,v must be unassigned names. They simply serve as placeholders for the purpose of entering in the structure equations.

VectStrEq := [[u, v] = x, [y, z] = y, [x, v] = x];

VectStrEq:=u,v=x,y,z=y,x,v=x

(2.1)

Basis := [x, y, z, u, v];

Basis:=x,y,z,u,v

(2.2)

L := LieAlgebraData(VectStrEq, Basis, Ex1,"LieAlgebraData");

L:=e1,e5=e1,e2,e3=e2,e4,e5=e1

(2.3)

 

To assign the names [X, Y, Z, U, V] to the basis vectors for this Lie algebra, use the optional argument form of DGsetup.

DGsetup(L, ['X', 'Y', 'Z', 'U', 'V'], ['theta']);

Lie algebra: L1

(2.4)
L1 > 

MultiplicationTable("LieBracket");

X,V=X,Y,Z=Y,U,V=X

(2.5)

See Also

DifferentialGeometry

LieAlgebras

LieAlgebraData

MultiplicationTable