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

Online Help

All Products    Maple    MapleSim


GroupTheory

  

IsCyclic

  

attempt to determine whether a group is cyclic

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

IsCyclic( G )

Parameters

G

-

a group

Description

• 

A group G is cyclic if it can be generated by a single element.

• 

The IsCyclic( G ) command attempts to determine whether the group G is cyclic.  It returns true if G is cyclic and returns false otherwise. The command may return FAIL on (most) finitely presented groups.

Examples

> 

with⁡GroupTheory:

> 

G≔SmallGroup⁡6,1:

> 

IsCyclic⁡G

false

(1)
> 

IsCyclic⁡SmallGroup⁡6,2

true

(2)
> 

IsCyclic⁡QuasicyclicGroup⁡11

false

(3)
> 

G≔Subgroup⁡481,1627,QuasicyclicGroup⁡3

G≔ℤ3∞

(4)
> 

IsCyclic⁡G

true

(5)
> 

G≔a|a6=1

G≔⁢a⁢∣⁢a6⁢

(6)
> 

IsCyclic⁡G

true

(7)
> 

G≔a,b|a3=b2,b3

G≔⁢a,b⁢∣⁢b3,a-3⁢b2⁢

(8)
> 

IsCyclic⁡G

true

(9)
> 

IsCyclic⁡DirectProduct⁡CyclicGroup⁡4,CyclicGroup⁡15

true

(10)

Compatibility

• 

The GroupTheory[IsCyclic] command was introduced in Maple 2015.

• 

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

See Also

GroupTheory

GroupTheory[QuasicyclicGroup]

GroupTheory[SmallGroup]

GroupTheory[Subgroup]

with