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.
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.
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.
s:=Set(ConjugacyClassesSubgroups(SmallGroup(576,8661)),c->Size(Representative(c)));
returns[ 1, 2, 3, 4, 8, 9, 12, 16, 32, 48, 64, 192, 576 ]
. NowDifference(DivisorsInt(576),s);
returns[ 6, 18, 24, 36, 72, 96, 144, 288 ]
. – Olexandr Konovalov Feb 20 '17 at 14:24GnuFromServer
etc. works as described at https://github.com/alex-konovalov/gnu – Olexandr Konovalov Feb 20 '17 at 20:04