Question: How can I find the StandardRepresentation of a subalgebra of simple Lie algebra?

Hello Everyone,

I am wondring if I can  find the StandardRepresentation of a subalgebra of simple Lie algebra?

For example I have this code:

with(DifferentialGeometry);
with(LieAlgebras);
with(Library);
with(LinearAlgebra);

G := SimpleLieAlgebraData("sl(6)", sl6);
DGsetup(G);
StandardRepresentation(sl6);
M3 := MinimalSubalgebra([e30, e35, e20]);
B3 := LieAlgebraData(M3, p62);
Query("Jacobi");
DGsetup(B3);
StandardRepresentation(p62);
Error, (in DifferentialGeometry:-LieAlgebras:-StandardRepresentation) expected a Lie algebra constructed by the procedure SimpleLieAlgebraData
 

For the first StandardRepresentation(sl6); it works becouse of the definition. Now what I want the same idea for the subalgebra. How can I do that?

 

Please Wait...