The exercise says like this
There are 3 boxes containing balls:
- The first has 3 white and 2 black
- The second has 2 white and 3 black
- The third has 3 white and 3 black
Only one ball is chosen from each box. If two of the chosen balls are white:
- What is the probability that one of the balls was chosen from the first box?
The result is 15/19
- So, what's the real solution to this exercise?
The data I gather so far are
- Ci: "The ball is of the box i" such that i = 1 or 2 or 3
- B: "The ball is white"
N: "The ball is black"
P(B|C1) = 3/5, P(N|C1) = 2/5
P(B|C2) = 2/5, P(N|C2) = 3/5
P(N|C3) = 1/2, P(B|C3) = 1/2
P(Ci) = 1/3
P(B|C1unionC2unionC3) = 2/3, Or should it be an intersection between the three?
P(B) = P(B|C1)*P(C1) + P(B|C2)*P(C2) + P(B|C3)*P(C3)
P(B) = 1/2
P(C1|B) = P(B|C1)*P(C1) / P(B) = 2/5