You have $10$ coins each with a different probability ($p$) of landing heads. $p = [.05,.1,.15,.2,.25,...,.45,.5].$
What is the likelihood that at least $5$ coins land heads? Is there any more efficient way of calculating than doing the grunt work calculation of all the probabilities of the different outcomes?
Typically conditional probability is the most efficient computationally. Here is an example python code for your case: