A Question Of Percentages

57 Views Asked by At

If I have 4 chances and each chance has a 10% success rate, what is the overall percent chance that 1 chance will succeed? For example: A guy plays a roleplaying game. He has 4 peices of equipment where each peice has a 10% chance rocks will fall from the sky. The percentages don't stack. Meaning they don't add up to give a 40% chance. Each one is worked out independantley. So what would be the percent chance 1 will succeed out of all the 4?

2

There are 2 best solutions below

0
On

Hint: IF the chances are indepndent, than you should think of the binomial distribution.

0
On

Assuming the chances of success on each attempt are mutually independent (and equal), then the number of successes in the trial has a binomial distribution. $N\sim\mathcal{Bin}(4, 0.10)$

So the chance that exactly $n$ attempts succeed is determined by:

$$\Pr(N = n)={4\choose n}0.10^n0.90^{4-n}$$

However, you want the chance that at least one attempt succeeds, which can be more easily found by examining converse: the chance that no attempt succeeds

$$\Pr(N \geq 1)=1-\Pr(N = 0)$$