Difference between revisions of "2024 SSMO Speed Round Problems/Problem 8"
(Created page with "==Problem== Bob has two coins; one is fair, and one lands on heads with a probability of <math>\frac{2}{3}.</math> Bob chooses a random coin and flips it twice. Alice watches...") |
|||
Line 4: | Line 4: | ||
==Solution== | ==Solution== | ||
+ | Let <math>P(f,k)</math> denote the fair coin shows <math>k</math> heads and <math>P(r,k)</math> denote the probability the rigged coin shows <math>k</math> heads. Note that the probability <math>k</math> heads are shown when Bob flips the coin is <math>\frac{P(f,k)+P(r,k)}{2}.</math> Now, if <math>k</math> heads are showing, the probability that Alice guesses correct is <math>\frac{\max(P(f,k),P(r,k))}{P(f,k)+P(r,k))}.</math> So, the answer is <cmath>\sum_{k=0}^{2}\left(\left(\frac{P(f,k)+P(r,k)}{2}\right)\left(\frac{\max(P(f,k),P(r,k))}{P(f,k)+P(r,k)}\right)\right).</cmath> It is easy to compute <cmath>P(f,0) = \frac{1}{4},P(f,1) = \frac{1}{2},P(f,2) = \frac{1}{4},P(r,0) = \frac{4}{9},P(r,1) = \frac{4}{9},\text{and }P(r,2) = \frac{1}{9}.</cmath> Therefore, the answer is <cmath>\left(\frac{\frac{4}{9}+\frac{1}{4}}{2}\right)\left(\frac{\frac{4}{9}}{\frac{4}{9}+\frac{1}{4}}\right)+\left(\frac{\frac{4}{9}+\frac{1}{2}}{2}\right)\left(\frac{\frac{1}{2}}{\frac{4}{9}+\frac{1}{2}}\right)+\left(\frac{\frac{1}{9}+\frac{1}{4}}{2}\right)\left(\frac{\frac{1}{4}}{\frac{1}{9}+\frac{1}{4}}\right) = </cmath><cmath>\frac{2}{9}+\frac{1}{4}+\frac{1}{8} = \frac{43}{72}\implies \boxed{115}.</cmath> | ||
+ | |||
+ | ~SMO_Team |
Latest revision as of 14:28, 10 September 2025
Problem
Bob has two coins; one is fair, and one lands on heads with a probability of Bob chooses a random coin and flips it twice. Alice watches the two coin flips and guesses whether Bob flipped the fair or rigged coin. Given that Alice is a good mathematician and guesses the more likely option (guessing randomly when they are equally likely), the probability she guesses right can be expressed as
for relatively prime positive integers \(m\) and \(n.\) Find
Solution
Let denote the fair coin shows
heads and
denote the probability the rigged coin shows
heads. Note that the probability
heads are shown when Bob flips the coin is
Now, if
heads are showing, the probability that Alice guesses correct is
So, the answer is
It is easy to compute
Therefore, the answer is
~SMO_Team