I am implementing the following code to calculate the automorphism of non-abelian group on Gap.
f := FreeGroup("b", "c"); # define free group f in two generators
b := f.1; c := f.2; # call b and c the generators of f
rels := [b^4, (b*c)^2, c^4]; # define relators
G := f/rels; # define G
Now, when I run
aut := AutomorphismGroup(G);
to calculate the automorphism group of G, I get the following output and error:
#I Coset table calculation failed -- trying with bigger table limit
#I Coset table calculation failed -- trying with bigger table limit
#I Coset table calculation failed -- trying with bigger table limit
#I Coset table calculation failed -- trying with bigger table limit
Error, reached the pre-set memory limit
(change it with the -o command line option) in
prev[2 * limit] := 2 * limit - 1; at /proc/cygdrive/C/gap4r8/lib/grpfp.gi:1201 called from
TCENUM.CosetTableFromGensAndRels( fgens, grels, fsgens
) at /proc/cygdrive/C/gap4r8/lib/grpfp.gi:1032 called from
CosetTableFromGensAndRels( fgens, grels, List( trial, UnderlyingElement )
) at /proc/cygdrive/C/gap4r8/lib/grpfp.gi:3699 called from
Attempt( trial ) at /proc/cygdrive/C/gap4r8/lib/grpfp.gi:3702 called from
Attempt( gens ) at /proc/cygdrive/C/gap4r8/lib/grpfp.gi:3724 called from
FinIndexCyclicSubgroupGenerator( G, infinity ) at /proc/cygdrive/C/gap4r8/lib/grpfp.gi:3773 called from
... at line 5 of *stdin*
you can 'return;'
brk>
See also a screenshot of this output and error mesage.
gaptag for questions about GAP. – Olexandr Konovalov Jun 16 '18 at 23:00b:=(1,2)(3,4,5,6)(7,8,9,10);c:=(1,2,3,4)(5,6,7,8)(9,10);satisfy your relations and generate a group of order 100. – ahulpke Jun 20 '18 at 10:07