There are four playing cards face down on a table, two are red two are black. You must guess which two are red by pointing to them, and implicitly which two are black. Assuming all configurations are equally likely, and that you do not have psychic abilities, find the probability that exactly j of your guesses are correct for j = 0, 1, 2, 3, 4.
Blitzstein, Introduction to Probability, exercise 1-30.
My thoughts:
First, I do not fully understand the j guesses part. I assume it means that you play n rounds of the game, and must find the probability of
0, 1, 2, 3, 4of the n games being won...?As all configurations are equally likely, this reads as an ordered problem without replacement when picking cards in each round. Therefore probability of selecting two red cards is
1/6I think the general answer is
P(j wins of n Games) = (1/6)**j * (5/6)**(n-j)but I have invented the variable n because the initial question appears vague.
- P(j=0) selected zero red cards P = 1/6 - P(j=1) selected one red card, one black card P = 4/6 - P(j=2) selected two red cards P = 1/6 - P(j=3) you can't select three cards, you can only select two cards P = 0 - P(j=4) you can't select four cards, you can only select two cards P= 0
– 2017-02-20