[Math] Number of ways to arrange people around a table if men and women sit in alternate seats

combinatorics

I have a problem counting the number of ways one can seat people around a circular table.

When ordering does not matter, $n$ people can sit around the table $n!$ ways, and then, because rotations are over counted and there are $n$ rotations of the table, we have that the number of ways is $(n-1)!$.

Now, when saying that if $n$ was an even number with half women and half men, how many ways to arrange them if no one can sit beside someone of the same sex?

I have read answers online, and they all say arrange the $(n/2)!$ women in a circle, divide by the number of rotations so you get $(n/2-1)!$ and then arrange the men so that you get $(n/2-1)!(n/2)!$.

My question here is: Why do we not divide by $n$ as before, if we once again have all those extra rotations?

Best Answer

In how many ways can $k$ men and $k$ women be seated at a round table if the men and women alternate seats?

Let Amanda be one of the women. We seat Amanda first. This determines which $k - 1$ seats are available to the other women. The remaining $k - 1$ women can be seated in these seats in $(k - 1)!$ ways as we proceed clockwise around the circle relative to Amanda. The men can be seated in $k!$ ways as we proceed clockwise around the circle relative to Amanda. Hence, the number of permissible seating arrangements is $$(k - 1)!k!$$

You asked why the answer is not $$\frac{k!k!}{2k} = \frac{(k - 1)!k!}{2}$$

Observe that if there is only one man and one woman at the table, this answer yields $1/2$ seating arrangements.

What went wrong?

Suppose Amanda is one of the women, and she is seated first. Since the men and women must alternate, seating Amanda determines in which $k$ seats the women will sit. Hence, there are only $k$ rotations that preserve a given arrangement of the women. Moreover, once the women are seated, the men cannot be rotated without changing the relative order of the people in the seating arrangement. Hence, the number of distinguishable seating arrangements is $$\frac{k!k!}{k} = (k - 1)!k!$$

Related Question