I need a function where the input is a list of probability values from 0 to 1, and the output is the chance that one of these probabilities comes out true.
eg.
0.5 + 0.5 = 0.75
0.9 + 0.9 + 0.9 = 0.999
Is there a standard name for this function/method/operation?
It is the complementary cumulative distribution function of the maximum of independent (but not necessarily identical) Bernoulli random variables: $$1-\prod_i (1-p_i)$$