We have $8$ a's, $6$ b's and $5$ c's. If no two c's are together then calculate the probability of two b's not coming together.
I try to solve it but I'm realy confused. The number of permutations looks very much. Will the complementary method be solved?
Without any restrictions the total no of permutations are \begin{equation} \frac{19!}{8!6!5!} \end{equation} No of permutations such that no two c's are together are \begin{equation} \frac{14!}{8!6!} \binom{15}{5} = \binom{14}{6} \binom{15}{5} \label{1} \tag{1} \end{equation} First arrange a's and b's without any restrictions, and place c's in those 15 gaps created by that arrangement. No of permutations such that no two b's or c's together are \begin{equation} \binom{9}{5} \binom{14}{6} \label{2} \tag{2} \end{equation} i.e. first arrange all a's (one way), arrange all c's in 9 gaps created by this, finally arrange 6 b's in 14 gaps. The required probability of no two b's together given no two c's together are \begin{equation} \frac{\binom{9}{5} \binom{14}{6}}{\binom{14}{6} \binom{15}{5}} = \frac{\binom{9}{5}}{\binom{15}{5}} \end{equation}
PS: There is a small confusion on whether to arrange b's or c's first in the gaps created by a's in the last case. I considered arranging c's first, since the no of permutations in this case are higher compared to arranging b's first. I'm open to any suggestions if I'm wrong.