How many ways are there to arrange 6 girls and 15 boys in a circle such that there are at least 2 boys between any 2 adjacent girls? Please help me how to proceed with this.
My approach:
Arrange first the girls in $5!$ ways, now we must choose $12$ boys from the $15$ in $15 \choose 12$ ways, and these boys will be arranged such that each girl has $2$ boys next to them in $12!$ Ways, then the remaining $3$ boys are left. We have already placed $18$ people, so we have $19$ position left for first boy, then $20$ position for 2nd boy and $21$ position for 3rd. So I get it as,
$5!$$15 \choose 12$($12!$)($19*20*21$)
But this looks clumsy and I'm not sure if its correct.
I searched for similar circular permutation questions on this site, but it was mostly regarding equal number of boys and girls, and since this question is different I couldn't co relate. If question is repeated, apologies and kindly redirect me to such duplicate question, else please help me find the solution. Thank you
First place some girl and let's say that her name is Alice.
Now place the other girls (indeed $5!$ possibilities).
The boys must be placed in an row/arrangement ($15!$ possibilities) in the understanding that the first will be placed at the right side of Alice, the second boy next to the first boy, et cetera.
To meet the condition that at least $2$ boys are present between $2$ adjacent girls we must find the number of sums: $$k_1+k_2+k_3+k_4+k_5+k_6=15$$ where every $k_i$ is an integer $\geq2$.
Setting $n_i:=k_i-2$ we find that this is the same as finding the number of sums:$$n_1+n_2+n_3+n_4+n_5+n_6=3$$ where every $n_i$ is a nonnegative integer.
Applying stars and bars we find $\binom{3+5}5=\binom85$ possibilities for that.
So we end up with a total of $$5!15!\binom85$$possibilities.