-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: Overly eager cyclic replacement in MTC (#5469)
A replacement routine had been improved to also allow for cyclic replacement, but that may only be used on relators, not on representatives. Co-authored-by: Alexander Hulpke <hulpke@math.colostate.edu>
- Loading branch information
Showing
2 changed files
with
20 additions
and
7 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,11 @@ | ||
# Overly eager cyclic replace in MTC, #5467 | ||
|
||
gap> f := FreeGroup(4);; | ||
gap> g := f / [f.1^2, f.2^2, f.3^2, f.4^2, (f.1*f.4)^2, (f.2*f.4)^2, | ||
> (f.3*f.4)^4, (f.1*f.2)^4, (f.1*f.3)^2, (f.2*f.3)^4, (f.1*f.2*f.3*f.2)^3, | ||
> (f.2*f.3*f.4*f.3)^3];; | ||
gap> h := Subgroup(g, [g.1,g.2,g.3]);; | ||
gap> iso2 := IsomorphismFpGroupByGenerators(h, GeneratorsOfGroup(h));; | ||
gap> h2 := Image(iso2);; | ||
gap> Size(h2); | ||
72 |