- 3,372
- 465
Suppose you have a box with 10 balls, the 4 are red, the 5 are blue and the 1 is white.
The probability of dragging each ball is 0.4~,~0.5~,~0.1 respectively.
Now if I ask what is the probability of getting 3 balls in the order: red -> blue -> white, what is the right answer if balls are replaced/not replaced?
I have some problem in understanding the logic behind my approach to answer this...
first I thought: P_{tot} = P(R) P(B) P(W) This gives the probability of dragging a red, a blue and a white ball... It doesn't seem right for ordered draggings since it also counts the dragging of : blue->red->white.
If the balls are replaced, then the dragging doesn't affect the probabilities, and so the correct probability of the successive drawing would be:
P(RBW)= \frac{P(R) P(B) P(W)}{3 !}= \frac{0.02}{6} = \frac{1}{300}
Since the written P_{tot} = P(RBW)+ P(RWB)+ P(BRW) + P(BWR) + P(WBR) + P(WRB) (permutations of 3).
Then I thought of using the conditional probability...I define two events: A_1,A_2. The A_1 is the event that I drag a blue ball given that I had dragged a red ball before: A_1 = (B|R) and the probability is:
P(A_1)= P(B|R)= \frac{P(B \cap R)}{P(R)}= \frac{P(B) P(R)}{P(R)} = P(B)
Then A_2 is dragging a white ball, given that A_1 is true:
P(A_2)= P(W|A_1)= \frac{P (W \cap A_1)}{P(A_1)} = P(W)
and so the P(RBW)=P(W)=0.1 \ne \frac{1}{300}
I used that P(x \cap y) = P(x) P(y) since they are statistically independent events.
So what is wrong in either of these approaches? They obviously don't give the same result...However, logically they make sense to me
The probability of dragging each ball is 0.4~,~0.5~,~0.1 respectively.
Now if I ask what is the probability of getting 3 balls in the order: red -> blue -> white, what is the right answer if balls are replaced/not replaced?
I have some problem in understanding the logic behind my approach to answer this...
first I thought: P_{tot} = P(R) P(B) P(W) This gives the probability of dragging a red, a blue and a white ball... It doesn't seem right for ordered draggings since it also counts the dragging of : blue->red->white.
If the balls are replaced, then the dragging doesn't affect the probabilities, and so the correct probability of the successive drawing would be:
P(RBW)= \frac{P(R) P(B) P(W)}{3 !}= \frac{0.02}{6} = \frac{1}{300}
Since the written P_{tot} = P(RBW)+ P(RWB)+ P(BRW) + P(BWR) + P(WBR) + P(WRB) (permutations of 3).
Then I thought of using the conditional probability...I define two events: A_1,A_2. The A_1 is the event that I drag a blue ball given that I had dragged a red ball before: A_1 = (B|R) and the probability is:
P(A_1)= P(B|R)= \frac{P(B \cap R)}{P(R)}= \frac{P(B) P(R)}{P(R)} = P(B)
Then A_2 is dragging a white ball, given that A_1 is true:
P(A_2)= P(W|A_1)= \frac{P (W \cap A_1)}{P(A_1)} = P(W)
and so the P(RBW)=P(W)=0.1 \ne \frac{1}{300}
I used that P(x \cap y) = P(x) P(y) since they are statistically independent events.
So what is wrong in either of these approaches? They obviously don't give the same result...However, logically they make sense to me

Last edited: