Let's say I have $5$ unfair coins. Each with an independent, known, probability of landing on heads. I flip each coin once. How can I find the probability that I get $3$ or more heads?
Example:
$P(H_1) = .38$
$P(H_2) = .18$
$P(H_3) = .71$
$P(H_4) = .66$
$P(H_5) = .29$
Well, the easiest method and most clear one I suppose would be casework. Complementary counting would give the same number of cases.
Find the probability of each of the following:
Try (1, 2, 3) heads and (4, 5) tails, or (1, 2, 4) heads and (3, 5) tails, etc.
Then do (1, 2, 3, 4) heads and (5) tails, etc.
Then do (1, 2, 3, 4, 5) heads.
Then add up the probabilities of everything. To make it easier, I suppose you can write a simple program or code, but this problem is pretty hard as the numbers you gave are pretty random.