"Source: Text/Group/GrpFPInt.text";
"Line: 1894";
"Date: Mon Jan 20 11:08:12 2020";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Group/GrpFPInt.text, line: 1894
// Example: H77E23 ()
print "Example: H77E23";
ei := GetEchoInput();
SetEchoInput(true);
G<a, b> := FPGroup<a, b | a^8, b^7, (a*b)^2, (a*b^-1)^3>;
CG := CayleyGraph(G);
Diameter(CG);
V := Vertices(CG);
E := Edges(CG);
g := Geodesic(V!1, V!1000);
g;
w := &*[ Label(E![g[i], g[i+1]]) : i in [1.. #g-1] ];
w;
SetEchoInput(ei);
