Holomorph of Z8: Difference between revisions
m (moved Holomorph of:Z8 to Holomorph of Z8) |
No edit summary |
||
| Line 8: | Line 8: | ||
* It is the [[holomorph]] of the cyclic group on eight elements. In other words, it is the direct product of the cyclic group on eight elements, with its automorphism group. | * It is the [[holomorph]] of the cyclic group on eight elements. In other words, it is the direct product of the cyclic group on eight elements, with its automorphism group. | ||
* It is the [[holomorph of a ring|holomorph]] of the ring <math>\Z/8\Z</math>. | * It is the [[holomorph of a ring|holomorph]] of the ring <math>\Z/8\Z</math>. In other words, it is the [[member of family::general affine group]] <math>GA(1,\Z/8\Z)</math>. | ||
== | ==GAP implementation== | ||
===Group ID=== | |||
This group has ID <math>43</math> among all the groups of order <math>2^5 = 32</math>. Thus, it can be defined using GAP's [[GAP:SmallGroup|SmallGroup]] function: | |||
<pre>SmallGroup(32,43)</pre> | |||
== | ===Other definitions=== | ||
= | The group can be defined using GAP's [[GAP:AutomorphismGroup|AutomorphismGroup]] and [[GAP:SemidirectProduct|SemidirectProduct]] functions. Here is a full code snippet: | ||
<pre>gap> C := CyclicGroup(8); | |||
<pc group of size 8 with 3 generators> | |||
gap> SemidirectProduct(AutomorphismGroup(C),C); | |||
<pc group with 5 generators></pre> | |||
This can be compressed by coding a function [[GAP:Holomorph|Holomorph]] for computing the holomorph of a group. With this function coded, we can use: | |||
<pre>Holomorph(CyclicGroup(8))</pre> | |||
Revision as of 14:38, 2 September 2009
This article is about a particular group, i.e., a group unique upto isomorphism. View specific information (such as linear representation theory, subgroup structure) about this group
View a complete list of particular groups (this is a very huge list!)[SHOW MORE]
This particular group is a finite group of order: 32
Definition
This group (which we shall call throughout) can be defined in either of these ways:
- It is the holomorph of the cyclic group on eight elements. In other words, it is the direct product of the cyclic group on eight elements, with its automorphism group.
- It is the holomorph of the ring . In other words, it is the general affine group .
GAP implementation
Group ID
This group has ID among all the groups of order . Thus, it can be defined using GAP's SmallGroup function:
SmallGroup(32,43)
Other definitions
The group can be defined using GAP's AutomorphismGroup and SemidirectProduct functions. Here is a full code snippet:
gap> C := CyclicGroup(8); <pc group of size 8 with 3 generators> gap> SemidirectProduct(AutomorphismGroup(C),C); <pc group with 5 generators>
This can be compressed by coding a function Holomorph for computing the holomorph of a group. With this function coded, we can use:
Holomorph(CyclicGroup(8))