-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance MaximalNormalSubgroups for finite solvable groups #552
Merged
markuspf
merged 8 commits into
gap-system:master
from
hungaborhorvath:MaximalNormalSubgroups
Mar 28, 2016
Merged
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
148a607
Add MaximalNormalSubgroups.tst
hungaborhorvath ea7652d
Enhance MaximalNormalSubgroups for finite solvable groups
hungaborhorvath 4702d71
Fixed name in the tst file
hungaborhorvath 230eac8
Rewrite new MaximalNormalSubgroups to work for infinite groups
hungaborhorvath d0264f6
Update testfile to run in reasonable time
hungaborhorvath deeb084
Add MaximalNormalSubgroups method for simple groups
hungaborhorvath 739cfec
Use NormalMaximalSubgroups for the PcGroup isomorphism
hungaborhorvath 3488e16
Use MaximalAbelianQuotient instead of CommutatorFactorGroup in Maxima…
hungaborhorvath File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,21 @@ | ||
gap> START_TEST("normal_hall_subgroups.tst"); | ||
gap> G := SymmetricGroup(4);; MaximalNormalSubgroups(G)=[DerivedSubgroup(G)]; | ||
true | ||
gap> G := SymmetricGroup(5);; MaximalNormalSubgroups(G)=[DerivedSubgroup(G)]; | ||
true | ||
gap> l := [2,4,8,3,9,5,25,7];; G := DirectProduct(List(l, CyclicGroup));; | ||
gap> List(MaximalNormalSubgroups(G),N ->List(MinimalGeneratingSet(N),Order)); | ||
[ [ 2, 60, 6300 ], [ 2, 30, 12600 ], [ 2, 30, 12600 ], [ 60, 12600 ], | ||
[ 60, 12600 ], [ 60, 12600 ], [ 60, 12600 ], [ 2, 60, 4200 ], | ||
[ 2, 20, 12600 ], [ 2, 20, 12600 ], [ 2, 20, 12600 ], [ 2, 60, 2520 ], | ||
[ 2, 12, 12600 ], [ 2, 12, 12600 ], [ 2, 12, 12600 ], [ 2, 12, 12600 ], | ||
[ 2, 12, 12600 ], [ 2, 60, 1800 ] ] | ||
gap> D := DihedralGroup(Factorial(10));; | ||
gap> List(MaximalNormalSubgroups(G), StructureDescription); | ||
[ "C6300 x C60 x C2", "C12600 x C30 x C2", "C12600 x C30 x C2", | ||
"C12600 x C60", "C12600 x C60", "C12600 x C60", "C12600 x C60", | ||
"C4200 x C60 x C2", "C12600 x C20 x C2", "C12600 x C20 x C2", | ||
"C12600 x C20 x C2", "C2520 x C60 x C2", "C12600 x C12 x C2", | ||
"C12600 x C12 x C2", "C12600 x C12 x C2", "C12600 x C12 x C2", | ||
"C12600 x C12 x C2", "C1800 x C60 x C2" ] | ||
gap> STOP_TEST("normal_hall_subgroups.tst", 10000); |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't the argument be "MaximalNormalSubgroups.tst"?