There are n letters written to different people, and envelopes correspondingly addressed. The letters are mixed before being sealed in envelops, the effect being to make n!allocations of letters to envelops equally likely. We say a letter "matches" if it is placed correctly. Let $A(n,j)$ be the random event that just $j$ letters match. Let $M(n,j)=n!P(A(n,j))$ be the number of the $n!$ permutations of $n$ letters which lead to $j$ matches. Using mathematical induction, show
$$M(n,j)=M(n+1,j+1)\frac{j+1}{n+1}$$
So I tried to prove $M(n+1,j)$ and $M(n+1,j+1)$ but both failed to link $M(n+1,j+1)$ to $M(n+2,j+2)$ or $M(n+2,j+1)$. Could anyone help me with this question?
I think you don't need a powerful tool such as induction to prove this identity. Note that $$ M(n,j)={n \choose j}\cdot M(n-j, 0) \tag{1} $$ say, you first choose $j$ letters that will match the envelop and the remaining will not match. And now it is easy to prove your identity: $$ M(n+1,j+1)={n+1 \choose j+1}\cdot M(n-j,0)=\frac{n+1}{j+1} \cdot {n \choose j} \cdot M(n-j,0)=\frac{n+1}{j+1}\cdot M(n,j) $$