"Source: Text/LieTheory/GrpLie.text";
"Line: 2084";
"Date: Thu Jun 16 15:04:46 2022";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/LieTheory/GrpLie.text, line: 2084
// Example: H110E19 ()
print "Example: H110E19";
ei := GetEchoInput();
SetEchoInput(true);
G := GroupOfLieType("B2", GF(4));
A := AutomorphismGroup(G);
A!1 eq IdentityAutomorphism(G);
assert $1;
g := GraphAutomorphism(G, Sym(2)!(1,2));
g;
sigma := iso< GF(4) -> GF(4) | x :-> x^2, x :-> x^2 >;
h := FieldAutomorphism(G, sigma) * g;
h in A;
assert $1;
f,g,i := DecomposeAutomorphism(h);
assert f*g*i eq h;
SetEchoInput(ei);
