The problem that I am having trouble figuring out is:
In how many ways can give five men and five girls be seated at a round table so that each girl is between two men?
I know that the formula for permutations is:
The number of permutations of n distinct objects taken r at a time is $P(n,r) = \frac {n!}{(n-r)!}$
Do I just substitute into the formula so that n = 10 (girls + men) and r = 2? Or is there an easier way to do this without the formula? Thanks in advance for any help.
If the chairs are fixed and cannot be moved, then there are two possibilities for where men and where women will sit. In each of them, you have 5! possibilities for men and 5! for women, so in total $2 \times (5!)^2$. However, if you don't distinguish rotations and consider $(a_1,\ldots, a_{10})$ to be the same as $(a_2,\ldots, a_{10}, a_1)$, then it's only $4!\times 5!$, because a fixed man sits "somewhere" and you have $4!$ options for the remaining 4 men; and 5! permutations for the women.