I am trying this question:
We have a bag with 10 blue jacks and 20 red jacks. We pick 3 jacks from the bag at random and with replacement. We are told that at least one jack is red.
Compute the expected values of blue jacks and red jacks, again being told that we have at least one red jack
My attempt so far:
I am trying to use Bayes' law to calculate the probabilities first, before I multiply by the number of balls to find the final expected values. However, when I am trying to calculate the conditional probability, I do not know how to include the "at least one red jack" part into the Bayes' formula.
$$P(\text{blue jack} \mid \text{given at least one red jack}) = \frac{P(\text{blue jack}\ \cap\ \text{at least one red jack}) }{\text{P(at least one red jack)}}$$
But wouldn't the numerator of the above fraction be $0$? I am new to probability and I would appreciate some help understanding this. Thank you.
Since there was some confusion, I'll write out what I see as an explicit computation.
First note that the probability of seeing at least one red one is $1-\left(\frac 13\right)^3=\frac {26}{27}$
Now, The (unconditional) probability of three reds is $\left(\frac 23\right)^3=\frac 8{27}$
The (unconditional) probability of exactly one blue is $3\times \left(\frac 23\right)^2\times\frac 13=\frac {12}{27}$
The (unconditional) probability of exactly two blue is $3\times \left(\frac 13\right)^2\times\frac 23=\frac {6}{27}$
If we restrict to the space wherein we have seen at least a single red we get the conditional probabilities $\frac 8{26},\frac {12}{26},\frac 6{26}$
Sanity check: these do add to $1$.
The expected number of Blues is then $$0 \times \frac 8{26}+1 \times \frac {12}{26}+2 \times \frac 6{26}=\frac {24}{26}=\frac {12}{13}$$
The expected number of Reds is then $$3 \times \frac 8{26}+2 \times \frac {12}{26}+1 \times \frac 6{26}=\frac {54}{26}=\frac {27}{13}$$
Sanity check: These add to $3$ as they should.