I am studying the Mathieu group $M_{11}$ on the twelve letters $\infty,7,6,8,X,2,0,3,4,1,9,5$ (in this specific order) in the form that it is generated by the permutations $(0123456789X)$, $(13954)(267X8)$ and $(\infty 0)(18)(7364)(29X5)$ (as in Wilson, "The Complex Leech Lattice and Maximal Subgroups of the Suzuki Group").
Now I need to find two elements of $M_{11}$:
One element should take $8$ to $\infty$ while fixing the coordinates $7$ and $6$ as a whole (i.e. possibly interchanging them).
Another element should take $2$ to $\infty$ while fixing the coordinates $0$ and $1$ as a whole (i.e. possibly interchanging them).
Is there some way or a program which can be used for computing such permutations?
It seems to me that there is a typo in the formulation of the question because the paper "The Complex Leech Lattice and Maximal Subgroups of the Suzuki Group" by R.Wilson gives $(0123456789X)$, $(13954)(267X8)$ and $(\infty 0)(18)(7364)(29X5)$ as generators for $M_{11}$ on page 153 (note also that $X$ and $8$ are in the reverse order in the question).
Anyhow, the question is "Is there some way or a program which can be used for computing such permutations?" and I will demonstrate that this is doable with GAP.
First I want to automate a little bit conversion from $\infty,7,6,8,X,2,0,3,4,1,9,5$ (in this specific order) to permutations acting on
[1..12]:This is a list of letters on which the group is acting:
This is a list of letters in the cycle notation for the 1st permutation $(0123456789X)$:
Now their positions in the list
l:I am not really happy about the next step, because I am just copying and pasting the last output replacing
[ ]by( )but one should be able to automate this too:So, this is the 1st generator translated to an element of the permutation group acting on 12 points that we are going to construct.
Similarly, we have for $(13954)(267X8)$
(also inserting extra parentheses for the cycle structure), and for $(\infty 0)(18)(7364)(29X5)$
Now we will construct the group acting on 12 points and check that this is $M_{11}$:
Next, we will find an element of $M$ which swaps $8$ and $\infty$ while fixing the letters $7$ and $6$. We will use
RepresentativeActionspecifying that M acts on tuples, and give two tuples of positions of these letters in the listl:Translating it back to letters, we have the permutation $(\infty,8)(X,2),(3,9)(4,5)$
Similarly, to find an element that should take $2$ to $\infty$ while fixing the coordinates $0$ and $1$, we obtain:
which corresponds to $(\infty,2)(7,4)(8,3)(X,9)$.
Update: As noted by @ahulpke, one could also just replace $\infty$, $0$ and $X$ by other numbers and leave all other numbers intact. This will make the translation to the notation from the paper easier. Indeed, let's use 50 for $0$, $66$ for $X$ and 88 for $\infty$. Then we have
and may then continue in the same way.