I'd like to calculate the probability that at least N independent events out of a set of M events complete successfully. Each event Ei has a probability of success of Pi.
For example, if there are four independent events each with a unique probability of success:
E1: P1
E2: P2
E3: P3
E4: P4
How do I calculate that probability that at least 1 event will be successful? At least 2 events? 3 events? The order of successes does not matter. Thanks for any help!
The best answer I could find is here:
http://mathbits.com/MathBits/TISection/Statistics2/binomialAtMost.htm
Unfortunately for me, it doesn't look like there's an easy way to get rid of the looping (summation) to solve the problem.
[self-study]tag & read its wiki. – gung - Reinstate Monica Oct 19 '16 at 01:18I'm trying to calculate the probability of at least M of N flights being completed given that each flight has an individual probability of completion. I see how I can get exactly M of N events using binomial series, and I suppose that I can just add up M, M+1, ... N probabilities in a loop to get the overall probability. I was hoping there was a way to simplify the expression to one formula and not use a loop for computational efficiency.
– dmjones Oct 21 '16 at 03:14