"Source: Text/Group/GrpPC.text";
"Line: 1314";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Group/GrpPC.text, line: 1314
// Example: H70E8 ()
print "Example: H70E8";
ei := GetEchoInput();
SetEchoInput(true);
G := PolycyclicGroup<a,b,c|a^3,b^2,c^2,b^a=c,c^a=b*c>;
G;
x := G.1^2*G.3;
x;
x^2;
x^3;
G.2*G.1;
y := G![0,1,1];
y;
x*y;
y*x;
(x,y);
x^y;
Eltseq(x^y);
SetEchoInput(ei);
