Skip to content

Commit c1f9dbe

Browse files
Changed the example and added some description
1 parent 4c351f7 commit c1f9dbe

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/sage/groups/perm_gps/permgroup.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4108,14 +4108,14 @@ def isomorphism_type_info_simple_group(self):
41084108

41094109
def minimal_normal_subgroups(self):
41104110
"""
4111-
Return a list containing all minimal normal subgroups of the group.
4111+
Return a list containing those nontrivial normal subgroups of the group that are minimal among the nontrivial normal subgroups.
41124112
41134113
EXAMPLES::
41144114
4115-
sage: G = PermutationGroup([(1,2,3),(4,5)])
4116-
sage: G.minimal_normal_subgroups()
4117-
[Subgroup generated by [(4,5)] of (Permutation Group with generators [(4,5), (1,2,3)]),
4118-
Subgroup generated by [(1,2,3)] of (Permutation Group with generators [(4,5), (1,2,3)])]
4115+
sage: G = PermutationGroup([(1,2,3),(4,5)])
4116+
sage: G.minimal_normal_subgroups()
4117+
[Subgroup generated by [(4,5)] of (Permutation Group with generators [(4,5), (1,2,3)]),
4118+
Subgroup generated by [(1,2,3)] of (Permutation Group with generators [(4,5), (1,2,3)])]
41194119
"""
41204120
gap_subgroups = self.gap().MinimalNormalSubgroups()
41214121
sage_subgroups = [self.subgroup(gap_group=gap_subgroup) for gap_subgroup in gap_subgroups]
@@ -4128,9 +4128,10 @@ def maximal_normal_subgroups(self):
41284128
41294129
EXAMPLES::
41304130
4131-
sage: G = SymmetricGroup(4)
4131+
sage: G = PermutationGroup([(1,2,3),(4,5)])
41324132
sage: G.maximal_normal_subgroups()
4133-
[Subgroup generated by [(2,3,4), (1,2,3)] of (Symmetric group of order 4! as a permutation group)]
4133+
[Subgroup generated by [(1,2,3)] of (Permutation Group with generators [(4,5), (1,2,3)]),
4134+
Subgroup generated by [(4,5)] of (Permutation Group with generators [(4,5), (1,2,3)])]
41344135
"""
41354136
gap_subgroups = self.gap().MaximalNormalSubgroups()
41364137
sage_subgroups = [self.subgroup(gap_group=gap_subgroup) for gap_subgroup in gap_subgroups]

0 commit comments

Comments
 (0)