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

Online Help

All Products    Maple    MapleSim


Details for PositiveRoots 

 

Description

Examples

Description

• 

 For each root type "A", "B", "C", "D" there are general formulas for calculating a list of positive roots as linear combinations of a given list of simple roots. These linear combinations are given in several texts. See, for example Varadarajan Lie Groups, Lie Algebras and Their Representations, Section 4.4 or Cap and Slovak Parabolic Geometries I. Background and General Theory, Section 2.2.6. Here are these formulas as they are coded into the 3rd calling sequence for the command.

• 

A𝓁  

           part1 := seq(seq(([0$i, 1$j, 0$(ell - i - j)], j = 1 .. ell - i)), i = 0 .. ell + 1)];

• 

B𝓁 

           part1 := seq(seq(([0$i, 1$j, 0$(ell - i - j)], j = 1 .. ell - i)), i = 0 .. ell),

           part2 := seq(seq([0$i, 1$(j), 2$(ell - i - j) ], j = 1 .. ell - i - 1), i = 0 .. ell);

• 

C𝓁

           part1 := seq(seq(([0$i, 1$j, 0$(ell - i - j)], j = 1 .. ell - i)), i = 0 .. ell);

           part2 := seq(seq([0$i, 1$(j), 2$(ell - i - j - 1) ,1], j = 1 .. ell - i - 2), i = 0 .. ell);

           part3 := seq([0$(i - 1), 2$(ell - i), 1], i = 1 .. ell-1);

• 

D𝓁

           part1 := seq(seq(([0$i, 1$j, 0$(ell - i - j)], j = 1 .. ell - i - 1)), i = 0 .. ell);

            part2 := seq([0$(i - 1), 1$(ell - i - 1), 0, 1], i = 1 .. ell - 1);

            part3 := seq(seq([0$i, 1$(j + 1), 2$(ell - i - j -3) , 1, 1], j = 0 .. ell - i -3), i = 0 .. ell - 2);

• 

For any Cartan matrix there is also a simple algorithm for calculating the positive roots from the Cartan matrix. This algorithm is presented in W.A. de Graaf, Lie Algebras: Theory and Algorithms, page 162 and also in W. Fulton and J. Harris, Representation Theory, A First Course, page 330. This approach is coded into the 4th calling sequence for the PositiveRoots command.

Examples

withDifferentialGeometry:withLieAlgebras:

 

Example 1. Type A

PositiveRootsA,2

PositiveRootsA,3

PositiveRootsA,4

PositiveRootsA,4

CMCartanMatrixA,4

PositiveRootsCM

 

Example 2. Type B

PositiveRootsB,2

PositiveRootsB,3

PositiveRootsB,4

CMCartanMatrixB,4

PositiveRootsCM

 

Example 3. Type C

Note that C2 is the same as B2 apart from an ordering of the components.

PositiveRootsC,2

PositiveRootsC,3

PositiveRootsC,4

CMCartanMatrixC,4

PositiveRootsCM

 

Example 4. Type D

Note that D3 and A3coincide.

PositiveRootsD,2

PositiveRootsD,3

PositiveRootsD,4

CMCartanMatrixD,4

PositiveRootsCM