Followup to this question: Probability of selecting 1 white ball given $t$ removed balls
Let there be an urn of $b$ balls, $w$ of which are white. Uniformly and randomly throw away exactly $t,(0≤t<b)$ balls. Then randomly select one of the remaining $b−t$ balls.
Given that the randomly selected ball is white, what is the probability that at least one of the thrown away balls is white?
I would appreciate some feedback on my work as I'm not sure what I'm doing wrong. So if we let $A$ be the event that that the randomly selected ball is white and $B$ be the event that at least one of the thrown away balls is white. Then we want to find $P(B|A) = \frac{P(A\cap B)}{P(A)}$
Since $A, B$ aren't necessarily independent events, then we must solve $P(A \cap B) = P(B)*P(A|B)$.
I know that $P(B) = 1 - \frac{{b-w \choose t}}{b \choose t}$ from limiting the range of PMF of the problem to $[1,c]$ instead of $[0,c]$.
I also know that $P(A) = \frac{w}{b}$.
But when I solve for $P(A|B)$ using PMF and solution presented in the link above, I just get $P(A)*P(B)$ which doesn't make a lot of sense to me. Please advise. Thank you. Also feedback on my solution would be nice too
Edit: Typo
Here is a third answer:
$P(A)$ is the probability that the $t+1$th randomly selected ball is white
$P(B)$ is the probability that at least one of the $t$ thrown away balls are white
$P(B^c)=1-P(B)$ is the probability that none of the $t$ thrown away balls are white
Then I would have thought
$P(A)=\dfrac{w}{b}$
$P(B^c) = \dfrac{{b-w \choose t}}{b \choose t}$
$P(A \mid B^c) = \dfrac{w}{b-t}$
$P(A \cap B^c) = \dfrac{w}{b-t}\dfrac{{b-w \choose t}}{b \choose t}$
$P(B^c \mid A) = \dfrac{b}{b-t}\dfrac{{b-w \choose t}}{b \choose t}=\dfrac{{b-w \choose t}}{b-1 \choose t}$
$P(B \mid A) = 1 - \dfrac{{b-w \choose t}}{b-1 \choose t}$
As an illustration of the differences, consider $w=2,b=4,t=2$: my expression gives an answer of $\frac23$ while molloculle's answer gives $\frac{5}{12}$ and Graham Kemp's gives $\frac12$. I think that if the third ball is white, there is a $\frac23$ probability the other white ball was one of the first two thrown away and a $\frac13$ probability the other white ball was the remaining fourth ball. Looking at it another way in this example, of the $4!=24$ ways of ordering the four balls, $12$ have the third ball white and $8$ of those $12$ have at least one of the first two balls white, with $\frac{8}{12}=\frac23$