Number of ways to arrange the letters $(A,A,A,A,A,B,B,B,C,C,C,D,E,E,F)$ such that no two $C's$ are together ?
My solution:
I calculated all possibilities with CC together i.e $\dfrac{14!}{5!3!2!}$ and subtracted it from total i.e $\dfrac{15!}{5!3!3!2!}$.
But my answer is wrong. Why?
Because the combinations where all three
Care adjacent were mishandled: each case ofCC Cwas counted separately from all the cases ofC CC, when in reality they're the same. You therefore need to subtract once all different combinations that have all threeC's together to get the correct number of combinations where at least twoC's are together.