I am using permutation knowledge to determine number of successful outcomes in following situation, but I am finding that my calculations are wrong according to solution at back of book.
QUESTION: What is wrong about my approach?
PROBLEM: 7 white balls and 3 black ball are placed randomly in a row. What is the probability that no 2 black balls are next to each other?
My approach is as below.
Total number of ways of placing in a row= 10!/(7! X 3!) = 120
We find number of ways in which 2 or 3 black balls are next to each other. We put 2 black balls together and consider it as one object. We now arrange 7 white balls, 1 black ball and 1 grouped black ball. 1 X 9!/(7! ) = 72 (Note: the grouped black balls can only be arranged in 1 way)
So, number of ways in which 2 or 3 black balls are not together = 120 - 72 = 48
Therefore, probability that 2 or 3 balls are not together is 48 / 120 = 0.4
BUT the answer in back of book is given as 7/15 which is .47.