Give the following question:
A missile component have a 5% probability to fail.
In order to enlarge the probability of success of the missile, we install
nidentical components in that missile, so if one of thesencomponents will success, the missile will success too.that should
nbe for a missile success probability greater than 99%?
I just used the [Binomial distribution formula][1]:
$Pr(X = 1) = \binom{n}{1} 0.95^1 0.05^{n-1} = n 0.95^1 0.05^{n-1}$
But as long as n goes higher , $pr(1)$ goes lower.
Where is my problem and how should this question be solved?
$$P(X\geq 1) = \sum_{x=1}^{n} \left(\matrix{n\\x}\right)(1-p)^{x}(p)^{n-x} = 1 - P(X=0)$$ where $X$ is the number of succeses, and $p$ is the probability of failure.
$$ P(X=0) = \left(\matrix{n\\0}\right)(1-p)^{0}p^{n} = p^n $$