Semidirect product of Z5 and Z8 via square map
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 40 is defined by means of the following presentation (here, is used to denote the identity element):
GAP implementation
Group ID
This finite group has order 40 and has ID 3 among the groups of order 40 in GAP's SmallGroup library. For context, there are groups of order 40. It can thus be defined using GAP's SmallGroup function as:
SmallGroup(40,3)
For instance, we can use the following assignment in GAP to create the group and name it :
gap> G := SmallGroup(40,3);
Conversely, to check whether a given group is in fact the group we want, we can use GAP's IdGroup function:
IdGroup(G) = [40,3]
or just do:
IdGroup(G)
to have GAP output the group ID, that we can then compare to what we want.
Description by presentation
We can use the presentation to define the group in GAP:
gap> F := FreeGroup(2); <free group on the generators [ f1, f2 ]> gap> G := F/[F.1^5,F.2^8,F.2*F.1*F.2^(-1)*F.1^(-2)]; <fp group on the generators [ f1, f2 ]>
To verify that this is the correct group:
gap> IdGroup(G); [ 40, 3 ]