Question 345069
from past experience, the pass rate of students has been 70%. if 8 students are randomly selected.
-----
Binomial Problem with n = 8 and p = 0.7
--------
a) what is the probability at least half will fail?
P(4<= x <=8) = 1-binomcdf(8,0.7,3) = 0.9420
-------------------------------------------------------
b) what is the standard deviation of the distribution?
std = sqrt(npq) = sqrt(8*0.7*0.3) = 1.2961
-------------------------------------------------------
c)what is the probability that no student will fail?
P(x = 0) = 0.7^8 = 0.0576
-------------------------------------------------------
d) state the name given to the probability distribution being described in the question and state one of its characteristics?
binomial; n independent trials.
===========================================
Cheers,
Stan H.