In Sage I executed the following commands:
F.<x, y> = FreeGroup()
G=F / [x^2*y^-1, x^3*y^2, x*y*x^-1*y^-1]
Now G is isomorphic to C7. In GAP I could check this with the StructureDescription command, how can I check this in Sage?
In Sage I executed the following commands:
F.<x, y> = FreeGroup()
G=F / [x^2*y^-1, x^3*y^2, x*y*x^-1*y^-1]
Now G is isomorphic to C7. In GAP I could check this with the StructureDescription command, how can I check this in Sage?
This works:
The function should probably be exposed in G directly, however.
Nathann