Question 510580
If 10% of the parts produced from a manufacturing process is defective, what is the probability that there are 15 or more defectives in a random sample of 100 items?
------
Binomial Problem with n = 100 and p(defective) = 0.10
---
P(15 <= x <= 100) 
= 1 - P(0<= x <=14) 
= 1 - binomcdf(100,0.1,14) 
= 0.0726
=============
Cheers,
Stan H.
=============