Cumulative Odds for Dynamic Probability
I want to know how to calculate the cumulative odds of an event being successful as more attempts are made. One caveat is that the odds each attempt are not static and increase as more attempts are made.
For example:
1st attempt is 1/4069 odds.
2nd attempt is 1/1365 odds.
3rd attempt is 1/819 odds.
4th attempt is 1/585 odds.
5th attempt is 1/455 odds.
How would I calculate the cumulative odds that the event should have been successful with increasing attempts?
My understanding is that it should be as follows:
1st attempt - (1/4069) = ~0.024576%
2nd attempt - (4068/4069)*(1/1365) = ~0.073242%
3rd attempt - (4068/4069)*(1364/1365)*(1/819) = ~0.121981%
Am I correct in my approach?
1 Answer
Suppose you want to compute the cumulative probability that you have a sucess in the first two tries. Then
\[P[n\leq 2]=P(1)+(1-P(1))P(2).\]
Note that $(1-P(1))P(2)$ is the probability that ther is a failure in the first attepmt and success in the second.
Similarly
\[P[n\leq 3]=P(1)+(1-P(1))P(2)+(1-p(1))(1-p(2))p(3)\]
and so on.

- 1 Answer
- 299 views
- Pro Bono
Related Questions
- Expected Value of the Product of Frequencies for a Triangular Die Rolled 15 Times
- ARIMA model output
- General understanding of statistics
- Question about sample size calculation for a single arm long term follow-up study
- Ridge Regression for Panel Data Analysis
- Figuring out the maths for the probability of two adopted teens randomly being matched as pen pals in 2003
- Elements in a set
- Calculating P values from data.
What does "2nd attempt is 1/1365 odds" mean? Does it mean having success in the first two attempts or having success in the second attempt?
It means the chance of success on the 2nd attempt is now 1/1365 instead of 1/4069 as in the first attempt.