How can I find the number of ways in which the letters $$z,z,y,y,x,x,w,w,v,v$$ can be arranged so that two letters of the same kind never appear consecutively.
I am not confident that my approach is correct in regards to the initial logic to solve the problem as well as possibly over/undercounting throughout.
My answer:
Logic:
Answer =
Total possible choices -
(total choices where 5 doubles occur) -
(total choices where 4 doubles occur) -
(total choices where 3 doubles occur) -
(total choices where 2 doubles occur) -
(total choices where 1 double occurs)
Total Possible Choices $$=10!$$ $$=3628800$$
Total Possible Choices Where 5 "Doubles" Occur
Let each double be equal to a singluar value - eg: z = z,z; v = v,v
This simplifys the equation to find the number of possible choices to:
$$\binom{5}{1}\times\binom{4}{1}\times\binom{3}{1}\times\binom{2}{1}\times\binom{1}{1}$$
$$ =5!$$
$$=120$$
as all 10 positions will be taken up if 5 doubles are present.
Total Possible Choices Where 4 "Doubles" Occur
Not sure if this is correct
$$=P(n,r)$$
$$=P(10,8)$$
$$=1814400$$
This process is followed for the remaining occurances.
3 Doubles
$$=P(10,6) = 151200$$
2 Doubles
$$=P(10,4) = 5040$$
1 Double
$$=P(10,2) = 90$$
Finding the Answer $$ = 3628800 - (120) - (1814400)-(151200)-(5040)-(90)$$ $$ = 1657950$$
Is this approach remotely correct?, if not what should I be doing instead?