Question 662582
A recent report in businessweek indicates that 20 percent of all employess steal from their company each year. if a company employs 50 people, what is the probability that fewer than 5 emplyees steal? More than 5 employees steal? Exactly 5 employees steal? More than 5 but fewer than 15 employees steal?
------
Binomial Problem with n = 50 ; p(steal) = 0.2
----
what is the probability that fewer than 5 emplyees steal?
Ans: P(0<= x < 4) = binomcdf(50,0.2,4) = 0.0185
--------------------------------------- 
More than 5 employees steal?
Ans: 1 - answer to previous = 0.9815
------------------------------------- 
Exactly 5 employees steal?
Ans: P(x = 5) = 50C5(0.2)^5*(0.95)^45 = binompdf(50,0.2,5) = 0.0295 
---------------------------  
More than 5 but fewer than 15 employees steal?
Ans: P(6<= x <= 14) = binomcdf(50,0.2,14)-binomcdf(50,0.2,5) = 0.8913
===============
Cheers,
Stan H.