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

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : GroupTheory/IsPSoluble

GroupTheory

  

IsPSoluble

  

attempt to determine whether a group is p-soluble

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

IsPSoluble( p, G )

Parameters

p

-

: prime : a prime number

G

-

: PermutationGroup : a finite permutation group

Description

• 

For a prime number p, a finite group G is p-soluble if it has a subnormal series every quotient of which is either a p-group or has order coprime to p.

• 

Every finite soluble group is p-soluble for every prime number p.

• 

The IsPSoluble( p, G ) command returns true if the group G is p-soluble and returns the value false if it is not.

• 

The group G must be an instance of a permutation group.

Examples

> 

with⁡GroupTheory:

> 

IsPSoluble⁡2,QuaternionGroup⁡

true

(1)
> 

IsPSoluble⁡3,QuaternionGroup⁡

true

(2)
> 

G≔GL⁡3,3:

> 

map⁡IsPSoluble,2,3,11,G

false,false,true

(3)
> 

G≔FrobeniusGroup⁡14520,2:

> 

IsSoluble⁡G

false

(4)
> 

map⁡IsPSoluble,2,3,5,11,FrobeniusGroup⁡14520,2

false,false,false,true

(5)
> 

IsPSoluble⁡2,PerfectGroup⁡936000,2

false

(6)

Compatibility

• 

The GroupTheory[IsPSoluble] command was introduced in Maple 2024.

• 

For more information on Maple 2024 changes, see Updates in Maple 2024.

See Also

GroupTheory

GroupTheory[IsSoluble]