Two chefs A and B are challenged to separately create a new dish in 2 hours. From past experience, we know that:
- The probability that chef A’s dish is a hit is 2/3
- The probability that chef B’s dish is a hit is 1/2
- The probability that at least one of their dishes is a hit is 3/4
Assuming that only one of the dishes can be labeled a hit, what is the probability that it was created by chef A?
My approach:
Given, P(A) = 2/3 P(B) = 1/2 P(A,B) = 3/4
P(A|B) = P(A) + P(B) - P(A,B) = 5/12
P(A only wins) = P(A) - P(A|B) = 1/4
P(B only wins) = P(B) - P(A|B) = 1/12
Therefore
P(A only | one chef wins) = 1/4 / ( 1/4 + 1/12 ) = 3/4
Is this correct ?