0

I was studying the following problem :

Groups of order $n^2$ that have no subgroup of order $n$

Is there any other divisor than 24 of $24^2$ such that SmallGroup(576,8661) has no subgroup of that order.

SSSM
  • 117

1 Answers1

3

This GAP-output :

gap> Collected(List(AllSubgroups(SmallGroup(576,8661)),Order));
[ [ 1, 1 ], [ 2, 63 ], [ 3, 64 ], [ 4, 651 ], [ 8, 1395 ], [ 9, 64 ],
  [ 12, 336 ], [ 16, 651 ], [ 32, 63 ], [ 48, 84 ], [ 64, 1 ], [ 192, 1 ],
  [ 576, 1 ] ]
gap> DivisorsInt(576);
[ 1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 32, 36, 48, 64, 72, 96, 144, 192, 288,
  576 ]
gap>

shows that there are no subgroups of order $6$, for example. You can find out all missing orders easily using this output.

Peter
  • 84,454
  • Thank you very much. I would like to learn GAP. I have already installed it. Please give me some references. – SSSM Feb 20 '17 at 14:13
  • Just read the tutorials. You will find them on some directory. Or input "?groups", for example, to get immediate help. – Peter Feb 20 '17 at 14:18
  • 1
    It will be more than three times faster to check orders of representatives of conjugacy classes of subgroups. E.g. s:=Set(ConjugacyClassesSubgroups(SmallGroup(576,8661)),c->Size(Representative(c))); returns [ 1, 2, 3, 4, 8, 9, 12, 16, 32, 48, 64, 192, 576 ]. Now Difference(DivisorsInt(576),s); returns [ 6, 18, 24, 36, 72, 96, 144, 288 ]. – Olexandr Konovalov Feb 20 '17 at 14:24
  • 1
    In addition to documentation supplied with GAP (and also available online at https://www.gap-system.org/Doc/manuals.html), there is also a Software Carpentry lesson on GAP: http://alex-konovalov.github.io/gap-lesson/. I taught it at two workshops, but it also should be accessible for self-study. – Olexandr Konovalov Feb 20 '17 at 14:27
  • @AlexanderKonovalov Hi, anything new about the group-project ? – Peter Feb 20 '17 at 14:50
  • @Peter hi, good to hear from you! I've stopped adding new entries, since I want to upgrade database first, but was diverted by other things - maybe in Spring. But the SCSCP server is up and running so calling GnuFromServer etc. works as described at https://github.com/alex-konovalov/gnu – Olexandr Konovalov Feb 20 '17 at 20:04
  • @AlexanderKonovalov Did you continue to search a prime factor of my number ? – Peter Feb 20 '17 at 20:23
  • How to find order of all normal subgroup of a particular group in GAP? – SSSM Feb 22 '17 at 20:32
  • @SSSM The command is NormalSubgroups() – Peter Feb 22 '17 at 21:22