[Math] Binomial Distribution Question (Exactly/At Least $x$ Trials for Success)

probability

I am a little embarrassed to ask this question, but for the life of me I cannot figure it out.

A man pays \$1 a throw to win a \$3 doll. His probability of landing a throw is 0.1. What is the probability that two throws will be required to win the doll? What is the probability that $x$ throws is needed?

The book said the probability that $x$ throws is required is $0.1(0.9)^{x-1}$. How did they get this?

I tried using a binomial distribution, but I don't know the number of trials

EDIT:

I have another similar problem, but i am having problems with determining the success rate

Three men toss coins to see who pays for coffee. If all three match, they toss again. Otherwise the "odd man" pays for the coffee. What is the probability that they will need to do this more than once? And at most twice?

I basically thought that outcomes like HHH is equal to TTT and likewise any combination of HHT = TTH.

So essentially we either stop after the first toss or we toss again and that makes the success probability equal to 1/2 and the failure is equal to 1/2.

Best Answer

To win the doll in exactly two throws means that the first throw was a failure (90% likely) and the second throw a success (10% likely). Assuming each throw is independent of the others, you can just multiply the probabilities together to get $$ 0.9 \cdot 0.1 = 0.09. $$

More generally, if exactly $x$ throws are required, then the first $x-1$ throws were failures and the final throw a success. Multiplying it all out gives $$ 0.9^{x-1}\cdot 0.1. $$


The probability of requiring more than three throws to win can be seen as the complement of requiring three or fewer throws to win. That is, $$ \Pr(\text{more than three throws}) = 1 - \Pr(\text{three or fewer throws}). $$ As is common with problems using "at most" or "at least", it is useful to break the event into several instances of "exactly": $$ \begin{align*} & \Pr(\text{3 or fewer throws})\\ = & \Pr(\text{exactly 1 throw}) + \Pr(\text{exactly 2 throws}) + \Pr(\text{exactly 3 throws})\\ = & 0.9^0 \cdot 0.1 + 0.9^1 \cdot 0.1 + 0.9^2 \cdot 0.1\\ = & 0.271. \end{align*} $$ Finally, $$ \begin{align*} \Pr(\text{more than three throws}) &= 1 - \Pr(\text{three or fewer throws})\\ &= 1 - 0.271\\ &= 0.729. \end{align*} $$

Related Question