1

I want presentation of the group $A_5\times \Bbb Z_2$ which is a group of order $120.$

I know the presentation of $A_5$ but not of product.

I tried it in GAP . In GAP its Atlas name is $2\times A_5$ but I can't type $\times $ in computer. Please given me its presentation and how I write it in GAP. Thank you very much.

Shaun
  • 44,997
Ymylife
  • 181

1 Answers1

4

Hint: If $\langle X\mid R\rangle$ is a presentation of $A_5$, then $$\langle X\cup\{z\}\mid \{z^2\}\cup R\cup\{xz=zx\mid x\in X\}\rangle$$ for some symbol $z\notin X$, is a presentation of $A_5\times\Bbb Z_2$, since $\Bbb Z_2$ has $\langle z\mid z^2\rangle$ as a presentation; see this.


This chapter of the GAP Reference Manual explains how to implement direct products in GAP.

Olexandr Konovalov
  • 7,002
  • 2
  • 34
  • 72
Shaun
  • 44,997
  • Thanks for for quick reply ... I am trying to understand this answer ... – Ymylife Dec 30 '18 at 14:07
  • You're welcome, @Yogesh. – Shaun Dec 30 '18 at 14:09
  • NB: I made a slight, technical edit, @Yogesh. – Shaun Dec 30 '18 at 14:12
  • 1
    thanks sir you explain every thing very nicely ... my final question is in GAP this group name is $2\times A5$? Am I right... – Ymylife Dec 30 '18 at 14:21
  • Again, you're welcome, @Yogesh; as to your final question: I don't know. The library of small groups in GAP is vast. However, once you have implemented some finitely presented group object G in GAP, you can use the code StructureDescription(G); to give you what the group name is. Note, though, that it might not always output something. There's only so much that can be stored. – Shaun Dec 30 '18 at 14:27
  • 2
    In GAP, IsomorphismFpGroup will determine a presentation for a given group, IsomorphismFpGroupByGenerators a presentation o a chosen generating set. – ahulpke Dec 30 '18 at 14:36
  • 2
    In GAP, you cannot generate groups from a name, but e.g. from Permutation generators, or as products of existing groups, e.g. DirectProduct. – ahulpke Dec 30 '18 at 14:37
  • @ahulpke thanks I will try to generate ... – Ymylife Dec 30 '18 at 15:25