There are 10 seats numbered 1 through 10. There are 5 boys and 4 girls. The girls must sit in the even numbered seats. How many ways can they sit such that there are no empty seats?
Here is what I tried:
g b g b g b g b b
1 2 3 4 5 6 7 8 9 10
or
b b g b g b g b g
1 2 3 4 5 6 7 8 9 10
Therefore the girls can be arranged 4! but in two separate configurations so: 4!*2 accounts for all the ways the girls can sit.
I then used the same logic for boys (it does not state that boys can not sit in the even seats, so a boy can sit in the seat numbered "2"): 5!*2
I multiplied these results together: 48*240=11,520
There is no answer guide for this so I am just trying to see if my thought process is correct.
Thanks!
The number of ways to seat the girls is $4! \binom{5}{4}$ (5 available seats, select 4, permute 4); the number of ways of seating the 5 boys is $5! \binom{6}{5}$ (after seating the girls, there are 6 seats free; select 5 for the boys, permute). In all:
$\begin{align*} 4! \binom{5}{4} \cdot 5! \binom{6}{5} &= 4! \frac{5!}{4! 1!} \cdot 5! \frac{6!}{5! 1!} \\ &= 5! \cdot 6! \\ &= 86\,400 \end{align*}$