stupid idiot
New Member
- Joined
- Jun 11, 2004
- Messages
- 18
I know the first way (the ordered way) is correct, but why? Can someone explain this to me please.Suppose two balls are drawn with replacement from a jar containing 1 red ball, 1 white ball, and 1 black ball. If order is important, the possible samples are
{(B,W), (W,B), (B,R), (R,B), (W,R), (R,W), (B,B), (W,W), (R,R)};
and the total number of samples is 3<sup>2</sup> = 9. If order is not important, the possible samples are
{(B,W), (B,R), (W,R), (B,B), (W,W), (R,R)};
and the total number of samples is <sup>(3+2-1)</sup>C<sub>2</sub> = 6
Now, consider the probability of drawing 2 white balls. It first appears that if the sample space is ordered, this probability is 1/9, but if it is unordered, the probability is 1/6. What is wrong with this reasoning, and what is the correct probability?
And can someone derive for me or explain to me with logics the formula: <sup>(n+r-1)</sup>C<sub>r</sub> for unordered selection with replacement.