Given that the chance of success on an attempt is $11/30$, what is the chance of more than $m$ failures? I think I should consider the complement of the statement, but I am stuck at this point.
chance of more than $m$ failures
0
$\begingroup$
probability
-
0Do you mean "more than $m$ failures before the first success"? – 2012-11-20
-
0@ espen180 yes indeed – 2012-11-20
2 Answers
3
We are concidering each trial to be independent. Then this is an example of a negative binomial distribution. See http://en.wikipedia.org/wiki/Negative_binomial_distribution
Let $p$ be the probability of success. Then the probability of getting exactly $k$ failures before the first success is given by $P_k = (1-p)^k p$, the probability of $k$ failures and one success. Now, we want the total probability for all $k>m$. This is
$$P=\sum_{k=m+1}^{\infty} (1-p)^k p$$
Do you see why this is? Can you now evaluate the probability?
-
0you could write P as the sum from k=0 to infinity minus the sum from k=0 to k=m. Is this correct? – 2012-11-20
-
0Yes, you can do this. However, the sum from $0$ to $\infty$ is 1 because it is a probability distribution. Nevertheless, it is a good exercise to calculate it. – 2012-11-20
-
0@ espen180 okey, thank you very much – 2012-11-20
2
To have more than $m$ failures before the first success, you need to start with $m+1$ failures, and if the probability of success is $p$ and each failure is independnet of the others, the probability is $$(1-p)^{m+1}.$$
-
0isn't this the probability of precisely m+1 failures? – 2012-11-20
-
0It is the probability of exactly $m+1$ failures in the first $m+1$ attempts, followed by anything. And that is what you want. It is the same as espen180's expression. – 2012-11-20
-
0@ Henry okey, now I understand. Thanks – 2012-11-20