Here is a question. As you see, the problem's established on finding an element of a certain order in $S_{10}$. I tried to do this question by using GAP. But, GAP couldn't handle the symmetric group $S_{10}$. What can we do in this situation? Is there a way for defining this large finite group for GAP? Thanks for your time.
Asked
Active
Viewed 140 times
0
-
What do you mean by "GAP couldn't handle the symmetric group $S_{10}$"? Please tell what exactly have you tried and what happened. – Olexandr Konovalov Jul 28 '13 at 20:25
1 Answers
2
I'd be really interested to see what you've tried. Anyhow, and in particular, for the symmetric group where conjugacy classes are well known, you can easily examine orders of their representatives:
gap> 15 in List(ConjugacyClasses(SymmetricGroup(10)),c->Order(Representative(c)));
true
Moreover, you can use the character table library without even constructing the group itself:
gap> 15 in OrdersClassRepresentatives(CharacterTable("S10"));
true

Mike Pierce
- 1,390
- 1
- 12
- 35

Olexandr Konovalov
- 534
- 4
- 23