Given a sequence of $[1,\dots,n]$ in random order:
- Let $P_k$ be the probability that exactly $k$ numbers are in the correct position
- Let $Q_k$ be the probability that at least $k$ numbers are in the correct position
How can we calculate $P_k$ and $Q_k$?
These are the facts that I've managed to establish so far:
$P_n=\frac{1}{n!}$
$P_{n-1}=0$
$P_k=Q_k-Q_{k+1}$
$Q_n=P_n$
$Q_{n-1}=Q_n$
$Q_k=\sum\limits_{i=k}^{n}P_i$
Partial answers (for example: $P_0,P_1,Q_1$) or any other insights will also be appreciated...
Thanks