The probability that in random $n$-permutation one belongs to the cycle length $k$

combinatorics

Natural numbers are given $ n \ge k> 0 $. What is the probability that in random $n$-permutation one belongs to the cycle length $k$?

I think that probability is:$$\frac{\binom{n}{k-1}(k-1)!(n-k)!}{n!}$$
Because:

$n!$ – all possibilities

$\binom{n}{k-1}$ – choosing things for the cycle

$(k-1)!$ – sorting cycle

$(n-k)!$ – random permutation of the rest of elements allowing any number of cycles

Is this correct?

Best Answer

Just a small correction: I think that the term related to "choosing things for the cycle" should be $\binom{n-1}{k-1}$ (since $1$ is already in the $k$-cycle!). Therefore the probability is $$\frac{\binom{n-1}{k-1}(k-1)!(n-k)!}{n!}=\frac{(n-1)!}{n!}=\frac{1}{n}$$ which is independent of $k$.

For example, if $n=3$, then we have $6$ permutations and for any $k=1,2,3$ the probability is $2/6=1/3$.

For $k=1$: $(\mathbf{1})(2,3)$, $(\mathbf{1})(2)(3)$.

For $k=2$: $(\mathbf{1},2)(3)$, $(\mathbf{1},3)(2)$.

For $k=3$: $(\mathbf{1},2,3)$, $(\mathbf{1},3,2)$.