IsExtraspecial - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

Online Help

All Products    Maple    MapleSim


GroupTheory

  

IsSpecial

  

determine whether a group is a special p-group, for some prime p

  

IsExtraspecial

  

determine whether a group is an extraspecial p-group, for some prime p

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

IsSpecial( G )

IsExtraspecial( G )

Parameters

G

-

: PermutationGroup : a permutation group

Description

• 

Let G be a finite of prime-power order. We say that G is special if either G is elementary abelian, or if the center, derived subgroup, and Frattini subgroup of G all coincide and is elementary abelian. If, in addition, these coindicent subgroups of G have prime order, then G is said to be extraspecial. Note that non-trivial abelian groups are not extraspecial, since their centers and derived subgroups cannot be equal.

• 

The IsSpecial( G ) command returns true if the permutation group G is a special p-group, for some prime number p.

• 

The IsExtraspecial( G ) command returns true if the permutation group G is an extraspecial p-group, for some prime number p.

• 

Both commands return false if the group G is not a p-group for any prime number p.

Examples

> 

with⁡GroupTheory:

> 

IsSpecial⁡Alt⁡4

false

(1)
> 

IsSpecial⁡CyclicGroup⁡3

true

(2)
> 

IsExtraspecial⁡CyclicGroup⁡3

false

(3)
> 

IsSpecial⁡CyclicGroup⁡4

false

(4)
> 

IsSpecial⁡ElementaryGroup⁡11,4

true

(5)
> 

IsExtraspecial⁡ElementaryGroup⁡11,4

false

(6)
> 

IsSpecial⁡DihedralGroup⁡4

true

(7)
> 

IsSpecial⁡DihedralGroup⁡16

false

(8)
> 

GroupOrder⁡Center⁡DihedralGroup⁡16

2

(9)
> 

GroupOrder⁡DerivedSubgroup⁡DihedralGroup⁡16

8

(10)
> 

IsSpecial⁡QuaternionGroup⁡

true

(11)
> 

IsExtraspecial⁡QuaternionGroup⁡

true

(12)
> 

map⁡GroupOrder,Center,DerivedSubgroup,FrattiniSubgroup⁡QuaternionGroup⁡

2,2,2

(13)
> 

IsSpecial⁡SmallGroup⁡1331,5

true

(14)
> 

IsSpecial⁡QuaternionGroup⁡5

false

(15)
> 

IsExtraspecial⁡QuaternionGroup⁡5

false

(16)
> 

GroupOrder⁡Center⁡QuaternionGroup⁡5

2

(17)
> 

GroupOrder⁡DerivedSubgroup⁡QuaternionGroup⁡5

8

(18)
> 

IsExtraspecial⁡SmallGroup⁡1331,5

false

(19)
> 

IsSpecial⁡TrivialGroup⁡

true

(20)
> 

IsExtraspecial⁡TrivialGroup⁡

false

(21)
> 

G≔PSL⁡2,9:

> 

g≔RandomInvolution⁡G:

> 

C≔Centralizer⁡g,G

C≔2,53,4,1,63,4,2,34,5

(22)
> 

IsExtraspecial⁡C

true

(23)
> 

AreIsomorphic⁡C,DihedralGroup⁡4

true

(24)

See Also

GroupTheory

GroupTheory[AlternatingGroup]

GroupTheory[DihedralGroup]