"Source: Text/Group/MonRWS.text";
"Line: 659";
"Date: Thu Sep 25 14:47:45 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Group/MonRWS.text, line: 659
// Example: H87E9 ()
print "Example: H87E9";
ei := GetEchoInput();
SetEchoInput(true);
FM<a,A,b,B,c,C,d,D,e,E,f,F,g,G> := FreeMonoid(14);
Q := quo< FM | a*A=1, A*a=1, b*B=1, B*b=1, c*C=1, C*c=1, 
               d*D=1, D*d=1, e*E=1, E*e=1, f*F=1, F*f=1, g*G=1, G*g=1,
               a*b=c, b*c=d, c*d=e, d*e=f, e*f=g, f*g=a, g*a=b>;
M := RWSMonoid(Q : TidyInt := 1000);
print Id(M);
print M!1;
Order(M);
assert $1 eq 29;
SetEchoInput(ei);
