M16: Difference between revisions
| Line 56: | Line 56: | ||
==GAP implementation== | ==GAP implementation== | ||
{{GAP ID|16|6}} | |||
Revision as of 02:52, 4 July 2010
Definition
The group, sometimes denoted , is defined as follows:
.
Here, denotes the identity element.
Arithmetic functions
Group properties
| Property | Satisfied | Explanation | Comment |
|---|---|---|---|
| Abelian group | No | do not commute | |
| Nilpotent group | Yes | prime power order implies nilpotent | |
| Metacyclic group | Yes | ||
| Supersolvable group | Yes | ||
| Solvable group | Yes |
GAP implementation
Group ID
This finite group has order 16 and has ID 6 among the groups of order 16 in GAP's SmallGroup library. For context, there are groups of order 16. It can thus be defined using GAP's SmallGroup function as:
SmallGroup(16,6)
For instance, we can use the following assignment in GAP to create the group and name it :
gap> G := SmallGroup(16,6);
Conversely, to check whether a given group is in fact the group we want, we can use GAP's IdGroup function:
IdGroup(G) = [16,6]
or just do:
IdGroup(G)
to have GAP output the group ID, that we can then compare to what we want.