

InterviewSolution
Saved Bookmarks
1. |
Given three identical boxes I, II and III, each containing two coins. In box I, both coins are gold coins, in box II, both are silver coins and in the box III, there is one gold and one silver coin. A person chooses a box at random and takes out a coin. If the coin is of gold, what is the probability that the other coin in the box is also of gold? |
Answer» Let E1, E2 and E3 be the events that boxes I, II and III are chosen, respectively Then P(E1) = P(E2) = P(E3) = 1/3 Also, let A be the event that ‘the coin drawn is of gold’ Then P(A|E1) = P(a gold coin from bag I) = 2/2 =1 P(A|E2) = P(a gold coin from bag II) = 0 P(A|E3) = P(a gold coin from bag III) = 1/2 Now, the probability that the other coin in the box is of gold = the probability that gold coin is drawn from the box I. = P(E1|A) By Bayes' theorem, we know that P(E1/A) = (P(E1)P(A/E1))/)(P(E1)P(A/E1) + P(E2)P(A/E2) + P(E3)P(A/E3)) = (1/3 x 1)/(1/3 x 1 + 1/3 x 0 + 1/3 x 1/2) = 2/3 |
|