I have two permutations $(2,7,9,4,3)$ and $(2,3,6)$ of $S_9$.
According to this post I want to multiplay these two. Unfortunately multiplication is described there only for disjoint permutations.
The algorithm presented there does not work for me.
$(2,7,9,4,3)(2,3,6)$
Following that instruction I get $(2,2 ...$
I have started with $2$:
$$(2,$$
The first cycle, $(2,3,6)$ sends $2$ to $3$. The second cycle, $(2,7,9,4,3)$ sends $3$ again to $2$ so I get:
$$(2,2 ...$$
And I am stuck in an infinite loop here.
Question: How do I multiply permutations that are not disjoint? Or is it the same way as I should deal with disjoint permutations and pay attention to some additional rules?