I have the following problem:
A farmer has 5 sheep and 4 lambs. He wants to shear 3 of them, picked at random. What are the probabilities that in his selection there are 0, 1, 2 and 3 lambs?
Now, I know that the sum of the probabilities have to add up to 1, because in all of the possible combinations there will necessarily be either 0, 1, 2 or 3 lambs. However, when I add up my probabilities, they do not add up to 1. Here is what I'm doing:
$ 3C3\times\frac{5C3}{8C3} + 3C1\times\frac{4C1}{8C3} + 3C2\times\frac{4C2}{8C3} + 3C3\times\frac{4C3}{8C3}$
Essentially, I've analyzed each individual case - when there are 0 lambs (or conversely, 3 sheep), 1 lamb, 2 lambs and finally three lambs. I've then multiplied each case by the number of ways in which they can be ordered, i.e. 1 lamb can be ordered $3C1 = 3$ ways. However, this all adds up to $\frac{11}{14}$, not to 1.
Can someone please orient me on what I'm doing wrong? Thanks!