Dihedral group:D64: Difference between revisions

From Groupprops
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{particular group}}
{{particular group}}
 
[[Category:Dihedral groups]]
==Definition==
==Definition==


Line 9: Line 9:
==Arithmetic functions==
==Arithmetic functions==


{| class="sortable" border="1"
{{dihedral 2-group arithmetic function table|
! Function !! Value !! Similar groups !! Explanation for function value
order = 64|
|-
order p-log = 6|
| [[underlying prime of p-group]] || [[arithmetic function value::underlying prime of p-group;2|2]] || ||
degree = 32|
|-
degree p-log = 5}}
| {{arithmetic function value order|64}} ||
|-
| {{arithmetic function value order p-log etc|6}}
|-
| {{arithmetic function value given order|exponent of a group|32|64}} ||
|-
| {{arithmetic function value given order and p-log|prime-base logarithm of exponent|5|64|6}} ||
|-
| {{arithmetic function value given order and p-log|nilpotency class|5|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|5|64|6}} ||
|-
| {{arithmetic function value given order and p-log|minimum size of generating set|2|64|6}} ||
|-
| {{arithmetic function value given order and p-log|subgroup rank of a group|2|64|6}} ||
|-
| {{arithmetic function value given order and p-log|rank of a p-group|2|64|6}} ||
|-
| {{arithmetic function value given order and p-log|normal rank of a p-group|1|64|6}} ||
|-
| {{arithmetic function value given order and p-log|characteristic rank of a p-group|1|64|6}} ||
|}


==GAP implementation==
==GAP implementation==

Latest revision as of 16:29, 12 January 2024

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 is defined as the dihedral group of order (or equivalently, the dihedral group of degree ). Explicitly, it is given by the presentation (where is the identity element):

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 for function value GAP verification (set G := DihedralGroup(64);) -- See more at #GAP implementation
underlying prime of p-group 2
order (number of elements, equivalently, cardinality or size of underlying set) 64 groups with same order Order(G); using Order.
prime-base logarithm of order 6 groups with same prime-base logarithm of order
max-length of a group 6 max-length of a group equals prime-base logarithm of order for group of prime power order
chief length 6 chief length equals prime-base logarithm of order for group of prime power order
composition length 6 composition length equals prime-base logarithm of order for group of prime power order
exponent of a group 32 groups with same order and exponent of a group | groups with same exponent of a group cyclic subgroup of order 32. Exponent(G); using Exponent.
prime-base logarithm of exponent 5 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 5 groups with same order and nilpotency class | groups with same prime-base logarithm of order and nilpotency class | groups with same nilpotency class NilpotencyClassOfGroup(G); using NilpotencyClassOfGroup.
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 the derived subgroup is contained in the cyclic subgroup and is hence abelian DerivedLength(G); using DerivedLength.
Frattini length 5 groups with same order and Frattini length | groups with same prime-base logarithm of order and Frattini length | groups with same Frattini length The first Frattini subgroup is cyclic generated by , each subsequent Frattini subgroup moves to the set of squares of its predecessor. FrattiniLength(G); using FrattiniLength.
minimum size of generating set 2 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(G); using Rank.
subgroup rank of a group 2 groups with same order and subgroup rank of a group | groups with same prime-base logarithm of order and subgroup rank of a group | groups with same subgroup rank of a group All proper subgroups are cyclic, dihedral, or Klein four-groups. SubgroupRank(G); using SubgroupRank.
rank of a p-group 2 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 there exist Klein four-subgroups. RankAsPGroup(G); using RankAsPGroup.
normal rank of a p-group 1 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 all abelian normal subgroups are cyclic. NormalRank(G); using NormalRank.
characteristic rank of a p-group 1 groups with same order and characteristic rank of a p-group | groups with same prime-base logarithm of order and characteristic rank of a p-group | groups with same characteristic rank of a p-group All abelian characteristic subgroups are cyclic. CharacteristicRank(G); using CharacteristicRank.

GAP implementation

Group ID

This finite group has order 64 and has ID 52 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,52)

For instance, we can use the following assignment in GAP to create the group and name it :

gap> G := SmallGroup(64,52);

Conversely, to check whether a given group is in fact the group we want, we can use GAP's IdGroup function:

IdGroup(G) = [64,52]

or just do:

IdGroup(G)

to have GAP output the group ID, that we can then compare to what we want.


Short descriptions

Description Functions used Mathematical comments
DihedralGroup(64) DihedralGroup