Question 185999
In testing a new drug, researchers found that 5% of all patients using it will have a mild side effect. A random sample of 11 patients using the drug is selected. Find the probability that:
a) exactly 2 will have this mild side effect
Ans: binompdf(11,0.05,2) = 0.0867
Another way to get that answer P(x=2) = 11C2(0.5)^2*(0.95)^9 = 55*0.0025*0.6302
= 0.0867
---------------------------------------

b) at least 1 will have this mild side effect
Ans: 1 - binompdf(11,0.05,0) = 0.4312
-------------
Another way: P(1<=x<=11) = 1-P(x=0) = 1- 11C0(0.05)^0(0.95)^11 
= 1 - 1*1*0.95^11 = 1-5688= 0.4312
========================================
You must let me know if you do not understand these answers.
It is essential that you understand how to calculate binomial
probabilities.
========================================
Cheers,
Stan H.