"Source: Text/LieTheory/GrpLie.text";
"Line: 1241";
"Date: Thu Jun 16 15:04:46 2022";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/LieTheory/GrpLie.text, line: 1241
// Example: H110E10 ()
print "Example: H110E10";
ei := GetEchoInput();
SetEchoInput(true);
G := GroupOfLieType("G2", GF(3) : Normalising:=false );
V := VectorSpace(GF(3),2);
g := elt< G | 1,2,1,2, V![2,2], <1,2>,<5,1> >;
h := elt< G | <3,2>, V![1,2], 1 >;
g*h;
H := GroupOfLieType("G2", GF(3) : Normalising:=true  );
g := elt< H | 1,2,1,2, V![2,2], <1,2>,<5,1> >;
h := elt< H | <3,2>, V![1,2], 1 >;
g*h;
SetEchoInput(ei);
