Details for PositiveRoots
Description
Examples
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.
with⁡DifferentialGeometry:with⁡LieAlgebras:
Example 1. Type A
PositiveRoots⁡A,2
PositiveRoots⁡A,3
PositiveRoots⁡A,4
CM≔CartanMatrix⁡A,4
PositiveRoots⁡CM
Example 2. Type B
PositiveRoots⁡B,2
PositiveRoots⁡B,3
PositiveRoots⁡B,4
CM≔CartanMatrix⁡B,4
Example 3. Type C
Note that C2 is the same as B2 apart from an ordering of the components.
PositiveRoots⁡C,2
PositiveRoots⁡C,3
PositiveRoots⁡C,4
CM≔CartanMatrix⁡C,4
Example 4. Type D
Note that D3 and A3coincide.
PositiveRoots⁡D,2
PositiveRoots⁡D,3
PositiveRoots⁡D,4
CM≔CartanMatrix⁡D,4
Download Help Document