[Math] Probability of Couples sitting next to each other (Sitting in a Row)

probability

Suppose we have 4 couples and 8 seats. The seats are oriented such that it is a row. The people take their seats in a random fashion.

What is the probability that 2 couples sit next to each other?

My work: Let us label the people as $A_1, A_2, A_3, A_4, B_1, B_2, B_3, B_4$. $A_i$ and $B_i$ are couples. Then, we want to know the probability of $P(C_i \cap C_j), i \neq j$ and $C_i$ means couple $i$ are seated next to each other.

Then, suppose we fix $C_i$ and $C_j$. Then, the row arrangement could look something like: $\{ C_i, C_j, a,b,c,d\}$, where $a,b,c,d$ are the remaining 4 people. Then, there are $\binom{6}{2}$ ways of picking positions for $C_i$ and $C_j$, $2!$ ways of arranging the elements in $C_i$, $2!$ ways of arranging the elements in $C_j$, $2!$ ways of arranging $C_i$ and $C_j$ relative to each other, and $4!$ ways of arranging the remaining 4 people. There are $8!$ ways to arrange the 8 people in a row. Also, there are $\binom{4}{2}$ ways to pick 2 couples out of 4 couples.

Putting all this together, $$ P(C_i \cap C_j) = \frac{\binom{6}{2} \binom{4}{2} 2! 2! 2! 4! }{8!}$$

I am curious because this differs from the solution given here: cached solution from google

Note that on the bottom of page 5, the difference is the google solution is missing a $\binom{6}{2}$ term, which means we can choose 2 positions for $C_i$ and $C_j$ out of the available 6 positions. (Please observe the quantity $p_2$ in the linked document). The factor $\binom{4}{2}$ is accounted for later on the top of page 6, where the author sums up all the probabilities corresponding to possible indices $i$ and $j$.

Thanks.

Best Answer

I would agree with you that the cached answer looks wrong and that there is a missing factor of 15 in $p_2$ (and of 20 in $p_3$).

When you ask "What is the probability that 2 couples sit next to each other?" you are looking at what was originally the $p_2$ part of the "What is the probability that at least one of the wives ends up sitting next to her husband?" question.

$p_2$ is the probability that two particular couples sit with husband next to wife. As you say, the ${4 \choose 2} = 6$ for which two couples these are is included in the $4p_1-6p_2+4p_3-p_4$ formula.

I would then say that the two particular couples have each become one unit (with $(2!)^2$ ways of arranging the individuals within the couple), reducing the number of orderable units from $8$ to $6$ so we should have $$p_2 = \frac{(2!)^2 \; 6!}{8!} \approx 0.071428571 $$ and similarly $p_1 = \frac{(2!)^1 \; 7!}{8!} = 0.25$, $p_3 = \frac{(2!)^3 \; 5!}{8!} \approx 0.023810$, and $p_4 = \frac{(2!)^4 \; 4!}{8!} \approx 0.00952381$.

For $p_2$ and $p_3$, these are not the same as the cached answer, though the $p_2$ is the same as yours. Using the inclusion-exclusion formula this gives me a probability that at at least one of the wives ends up sitting next to her husband of about $0.657142857$, not the $0.9666667$ of the cached answer.

Some simulation convinces me this looks plausible.