Question 663125
From a large shipment of transistors from a supplier, 1% of the items are known to be defective. If a sample of 200 transistors are selected at random, what is the probability that 4 or more transistors will be defective? 
----
Binomial Problem with n = 200 ; p(defect) = 0.01 
----
P(x>=4) = 1 - P(0<= x <=3) = 1 - binomcdf(200,0.01,3) = 0.1420
====================
Cheers,
Stan H.