I have to solve this problem about female-male couples:
There are $n$ males, $k$ females, that buy tickets in a $(n+k)$ row. Everyone sits randomly. Let all the $(n+k)!$ possible arrangements have the same probability. What is the expected Male/Female couple count in this row?
Example: MMMFFMFMMF has 5 M/F couples.
The first part of the solution is:
Let $j = 1, \ldots, n+k-1$
$$ X_j = \begin{cases} 1 & \text{if j-th couple is M/F couple} \\ 0 & \text{otherwise} \end{cases} $$
And $E[X_j] = P[\text{j-th couple is M/F}] = \frac{2nk(n+k-2)!}{(n+k)!} = \frac{2nk}{(n+k)(n+k-1)}$
Could someone explain to me how he derived that formula?