SmallGroup(64,113): Difference between revisions
(Created page with "{{particular group}} ==Definition== This group of order 64 is defined by the following presentation: <math>G := \langle a_1,a_2,a_3,a_4 \mid a_1^2 = a_2^8 = a_3^4 = e, [a_...") |
No edit summary |
||
| Line 7: | Line 7: | ||
<math>G := \langle a_1,a_2,a_3,a_4 \mid a_1^2 = a_2^8 = a_3^4 = e, [a_1,a_2] = a_3^2, [a_1,a_3] = e, [a_2,a_3] = a_2^4 \rangle</math> | <math>G := \langle a_1,a_2,a_3,a_4 \mid a_1^2 = a_2^8 = a_3^4 = e, [a_1,a_2] = a_3^2, [a_1,a_3] = e, [a_2,a_3] = a_2^4 \rangle</math> | ||
==Arithmetic functions== | |||
{{compare and contrast arithmetic functions|order = 64}} | |||
{| class="sortable" border="1" | |||
! Function !! Value !! Similar groups !! Explanation | |||
|- | |||
| [[underlying prime of p-group]] || [[arithmetic function value::underlying prime of p-group;2|2]] || || | |||
|- | |||
| {{arithmetic function value order|64}} || | |||
|- | |||
| {{arithmetic function value order p-log|6}} || | |||
|- | |||
| {{arithmetic function value given order and p-log|exponent of a group|8|64|6}} || | |||
|- | |||
| {{arithmetic function value given order and p-log|prime-base logarithm of exponent|3|64|6}} || | |||
|- | |||
| {{arithmetic function value given order and p-log|nilpotency class|2|64|6}} || | |||
|- | |||
| {{arithmetic function value given order and p-log|derived length|2|64|6}} || | |||
|- | |||
| {{arithmetic function value given order and p-log|Frattini length|3|64|6}} || | |||
|- | |||
| {{arithmetic function value given order and p-log|minimum size of generating set|3|64|6}} || | |||
|- | |||
| {{arithmetic function value given order and p-log|rank of a p-group|3|64|6}} || | |||
|- | |||
| {{arithmetic function value given order and p-log|normal rank of a p-group|3|64|6}} || | |||
|} | |||
==GAP implementation== | ==GAP implementation== | ||
Latest revision as of 21:52, 21 June 2011
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]
Definition
This group of order 64 is defined by the following presentation:
Arithmetic functions
Want to compare and contrast arithmetic function values with other groups of the same order? Check out groups of order 64#Arithmetic functions
GAP implementation
Group ID
This finite group has order 64 and has ID 113 among the groups of order 64 in GAP's SmallGroup library. For context, there are groups of order 64. It can thus be defined using GAP's SmallGroup function as:
SmallGroup(64,113)
For instance, we can use the following assignment in GAP to create the group and name it :
gap> G := SmallGroup(64,113);
Conversely, to check whether a given group is in fact the group we want, we can use GAP's IdGroup function:
IdGroup(G) = [64,113]
or just do:
IdGroup(G)
to have GAP output the group ID, that we can then compare to what we want.
Description by presentation
gap> F := FreeGroup(3); <free group on the generators [ f1, f2, f3 ]> gap> G := F/[F.1^2,F.2^8,F.3^4,Comm(F.1,F.2)*F.3^(-2),Comm(F.1,F.3),Comm(F.2,F.3)*F.2^(-4)]; <fp group on the generators [ f1, f2, f3 ]> gap> IdGroup(G); [ 64, 113 ]