TestSubnormallyMonomial( G )
TestSubnormallyMonomial( chi )
returns a record with information whether the group G or the irreducible group character chi of the group G is subnormally monomial.
The result contains the components
isSubnormallyMonomial
:true
or false
,
comment
:isSubnormallyMonomial
component,
character
:
IsSubnormallyMonomial( G )
IsSubnormallyMonomial( chi )
returns true
if the group G or the group character chi is
subnormally monomial, and false
otherwise.
gap> TestSubnormallyMonomial( S4 ); rec( isSubnormallyMonomial := false, character := Character( S4, [ 3, -1, 0, -1, 1 ] ), comment := "found not SM character" ) gap> TestSubnormallyMonomial( Irr( S4 )[4] ); rec( isSubnormallyMonomial := false, comment := "all subnormal subgroups checked" ) gap> TestSubnormallyMonomial( SolvableGroup( "A4" ) ); #W Warning: Group has no name rec( isSubnormallyMonomial := true, comment := "all irreducibles checked" )
GAP 3.4.4