PROBLEM G4 In a couples therapy session, n couples are to be seated at a round table (in 2n chairs), but no person is allowed to sit next to his/her spouse. How many seat assignments are there? Here's the solution: Pick $k$ out of $n$ couples. Then the number of seatings so that these $k$ couples sit together is computed as follows: there are $2n$ ways to seat the first couple (up to order), and then the number of seatings of the rest of the $k$ couples equals $(2n-k-1)...(2n-2k+1)$. So the total equals: $N_k = 2^k \times 2n \times (2n-k-1)!$ Thus, using the inclusion and exclusion formula, we get that the answer is: $N = \sum_{k \ge 0} (-1)^k {n \choose k} N_k$
Here is what I do not understand, if these $k$ couples sit together, then how come is "the number of seatings of the rest of the $k$ couples equals $(2n-k-1)...(2n-2k+1)$", isn't that choosing seats out of all $2n$ seats left, instead of $k$ seats together as a whole block? And even it really is $(2n-k-1)...(2n-2k+1)$, shouldn't it be $A_{2n-2k+1}^{2n-k-1}$? How did it change into $(2n-k-1)!$ in the latter formula?