Question 557193
In a batch of 400 pieces, 10 are defective. 20 pieces are randomly chosen. What is the probability that no more than 6 pieces are defective? What is the probability that 0 pieces are defective?
-----
Binomial Problem with n = 20 and p(defective) = 1/40
----
P(0<= x <= 6) = binomcdf(20,1/40,6) = 0.9999
----
P(x = 0) = 20C0(1/40)^0*(39/40)^20 = (39/40)^20 = 0.6027
===============================================
Cheers,
Stan H.
=============