A small committee of two is formed from a group of 4 boys and 8 girls. If at least one of the members of the committee is a girl, what is the probability that both members are girls?
So far I have tried: Multiplying the original number of original girls ($\frac{8}{12}$) by one minus hence it is given to us one is already part of the committee ($\frac{7}{11}$) to no avail. Also did some other things similar to what i just said before that I don't remember since I was trying everything that I could conjure up.How do i tackle this problem?.
Define event $A$ to be both members are girls and $B$ to be at least one member is a girl, we have
$$P(A) =1- \frac{{4 \choose 2}}{{12 \choose 2}} = \frac{10}{11}$$
$$P(B) = \frac{{8 \choose 2}}{{12 \choose 2}} = \frac{14}{33}$$
So, you are looking for $$P(A |B ) = \frac{P(A \cap B)}{P(B)} \stackrel{A \subset B}{=} \frac{P(A)}{P(B)} = \frac{\frac{14}{33}}{\frac{10}{11}} = \frac{7}{15}$$
This simulation in python seems to confirm the result
because $r/s \approx \frac{7}{15}$.
Edit :
I made the simulation because the probability seemed too low to me, then thanks to @Bram28 answer I realized that another way was possible, and that was also a better intuitive estimate of the amount I had in mind !