SmallGroup(64,113): Difference between revisions

From Groupprops
(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

Function Value Similar groups Explanation
underlying prime of p-group 2
order (number of elements, equivalently, cardinality or size of underlying set) 64 groups with same order
prime-base logarithm of order 6 groups with same prime-base logarithm of order
exponent of a group 8 groups with same order and exponent of a group | groups with same prime-base logarithm of order and exponent of a group | groups with same exponent of a group
prime-base logarithm of exponent 3 groups with same order and prime-base logarithm of exponent | groups with same prime-base logarithm of order and prime-base logarithm of exponent | groups with same prime-base logarithm of exponent
nilpotency class 2 groups with same order and nilpotency class | groups with same prime-base logarithm of order and nilpotency class | groups with same nilpotency class
derived length 2 groups with same order and derived length | groups with same prime-base logarithm of order and derived length | groups with same derived length
Frattini length 3 groups with same order and Frattini length | groups with same prime-base logarithm of order and Frattini length | groups with same Frattini length
minimum size of generating set 3 groups with same order and minimum size of generating set | groups with same prime-base logarithm of order and minimum size of generating set | groups with same minimum size of generating set
rank of a p-group 3 groups with same order and rank of a p-group | groups with same prime-base logarithm of order and rank of a p-group | groups with same rank of a p-group
normal rank of a p-group 3 groups with same order and normal rank of a p-group | groups with same prime-base logarithm of order and normal rank of a p-group | groups with same normal rank of a p-group

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 ]