I apologise if this is too broad or is otherwise off topic.
The Problem:
I'm looking for ways to prove that a cyclically presented group, given in terms of generators and relators, is infinite using GAP.
In particular, I'm looking for ways to prove that $H(r, n, s)$ is infinite using GAP for certain $r,n,s\in\Bbb N$. I'm looking at $1\le s<r\le10$ and $2\le n\le10$.
The group $H(6,8,3)$ is infinite for example, whereas $\lvert H(10,7,3)\rvert=9,997,813$. The order of the group $H(4,8,3)$ is unknown.
What I have so far.
Let G
be the cyclically presented group.
There's
Size(G);
, of course, but that can be inconclusive ifG
is sufficiently large. It does sometimes say thatG
is infinite.There's
AbelianInvariants(DerivedSubgroup(G));
(and takingAbelianInvariants
of the derived subgroup of the derived subgroup ofG
and so on); if this has0
in its output it means that $\Bbb Z$ is a component of the abelianisation ofG
, so thatG
is infinite. This is also inconclusive ifG
is sufficiently large, but so far, it seems to handle more thanSize(G);
.
The group $I=$$I(r,n,s)$ is a degree $n$ extension of $H(r,n,s)$, so applying the above to $I$ can be effective.
Please help :)