-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: GQuotients can hang for certain groups with free quotients
- Loading branch information
Showing
2 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# reported by Giles Gardam. The code for eliminating element orders can run astray if | ||
# a quotent by a generator power is cyclic, but also has cyclic subgroups of infinite | ||
# index. | ||
gap> F := FreeGroup("a", "b", "c");; | ||
gap> G := F/ParseRelators(F,"a2b5a2b2C2,a5c3B2");; | ||
gap> Length(GQuotients(G,AlternatingGroup(5))); | ||
1 |