For independent events the intersection is just the product:
Return the probability that all of them happen.
solve([0.5, 0.5]) -> 0.25 solve([0.9, 0.9, 0.9]) -> 0.7290000000000001
Sign in to write and run your own code.
solve(...)