Skip to content

Commit fe0fd28

Browse files
Added the function
1 parent 108470b commit fe0fd28

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/sage/groups/perm_gps/permgroup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4106,6 +4106,24 @@ def isomorphism_type_info_simple_group(self):
41064106
else:
41074107
raise TypeError("group must be simple")
41084108

4109+
def minimal_normal_subgroups(self):
4110+
"""
4111+
Return all minimal normal subgroups of the group.
4112+
4113+
EXAMPLES::
4114+
4115+
sage: G = SymmetricGroup(4)
4116+
sage: G.minimal_normal_subgroups()
4117+
[ Group([ (1,4)(2,3), (1,3)(2,4) ]) ]
4118+
4119+
TESTS::
4120+
4121+
sage: G = SymmetricGroup(8)
4122+
sage: G.minimal_normal_subgroups()
4123+
[ Alt( [ 1 .. 8 ] ) ]
4124+
"""
4125+
return self._libgap_().MinimalNormalSubgroups()
4126+
41094127
###################### Boolean tests #####################
41104128

41114129
def is_abelian(self):

0 commit comments

Comments
 (0)