Bunuel
A honey farm orders 2 jars of bees. Jar 1 has 99 bees; jar 2 has 97 bees. For every bee received, there is a 50% chance that it is a male and a 50% chance that it is a female. If a jar has at least 1 male, but more females than males, the honey farm keeps the jar; otherwise the jar is returned. If:
a = the probability that Jar 1 is kept.b = the probability that Jar 2 is kept.
What is the value of a - b =
A. 1/2^99
B. 1/9
C. 1/4
D. 3/2^99
E. 1/2^97
Not sure what I am doing wrong, my answer doesn't match any of the options
Here is what I have done so far-
A jar can be accepted if it meets both the conditions
- At least one male bee
- Number of females > Number of males (Note that both the jars have odd number of bees, hence number of males cannot be equal to the number of females)
Probability (At least one male bee) = 1 - Probability(all female bees)
= \(1 - (\frac{1}{2})^{n}\)
n is the number of bees in the jar
Number of females> Number of males = I think the Probability of this is \(\frac{1}{2}\) (either the number of males is greater than the number of females or vice versa).
Jar 1Probability of keeping the jar = a = Probability (At least one male bee) AND Probability of (Number of females> Number of males)
= \((1 - (\frac{1}{2})^{99}) * \frac{1}{2}\)
= \((\frac{1}{2} - (\frac{1}{2})^{100})\)
Jar 2Probability of keeping the jar = b = Probability (At least one male bee) AND Probability of (Number of females> Number of males)
= \((1 - (\frac{1}{2})^{97} ) * \frac{1}{2}\)
= \((\frac{1}{2} - (\frac{1}{2})^{98})\)
a -b \((\frac{1}{2} - (\frac{1}{2})^{100}) - ( \frac{1}{2} - (\frac{1}{2})^{98})\)
\((\frac{1}{2} - (\frac{1}{2})^{100}) - \frac{1}{2} + (\frac{1}{2})^{98}\)
\(\frac{1}{2}^{98} - \frac{1}{2}^{100}\)
\(\frac{1}{2}^{98}(1-\frac{1}{2}^{2})\)
\(\frac{1}{2}^{98}(1-\frac{1}{4})\)
\(\frac{1}{2}^{98}(\frac{3}{4})\)
\(\frac{3}{2^{100}}\)
Bunuel - Can you share some hint as to what I am doing incorrect here