简体   繁体   中英

Probability of 6 independent events in excel

I want to calculate the probability of 6 independent events in excel. I know the general formula to do this howver it is very cumbersome to implement in excel. 联合概率

Is there a better way?

The equation in your question suggests that you are asking for the probability of one or more of the events happening. This is the same as asking for the probability of "not none of them" happening. In Excel, you can calculate this using the following formula:

=1-PRODUCT(1-A1,1-A2,1-A3,1-A4,1-A5,1-A6)

(Here I am assuming that the probability of the events are given in cells A1:A6 .)

However, if instead you are asking for the probability of all of the events happening, it's just the product of their individual probabilities:

=PRODUCT(A1,A2,A3,A4,A5,A6)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM