SOLUTION: A poll of 10 employees is taken in a small company to determine the number of employees that favor unionization. Suppose that 60% of employees prefer unionization. What is the pr

Algebra ->  Probability-and-statistics -> SOLUTION: A poll of 10 employees is taken in a small company to determine the number of employees that favor unionization. Suppose that 60% of employees prefer unionization. What is the pr      Log On


   



Question 768182: A poll of 10 employees is taken in a small company to determine the number of employees that favor unionization. Suppose that 60% of employees prefer unionization. What is the probability that x equals 1? what is the probability that x is greater than 8? probability that x is greater than or equal to 5?
Answer by stanbon(75887) About Me  (Show Source):
You can put this solution on YOUR website!
A poll of 10 employees is taken in a small company to determine the number of employees that favor unionization. Suppose that 60% of employees prefer unionization. What is the probability that x equals 1? what is the probability that x is greater than 8? probability that x is greater than or equal to 5?
--------
Binomial Problem with n = 10 and p(favor) = 0.6
---------
P(x = 1) = 10C1(0.6)*(0.4)^9 = binompdf(10,0.6,1) = 0.0016
---
P(8<= x <=10) = 1- P(0<= x <=7) = 1 - binomcdf(10,0.6,7) = 0.1673
--------------
P(5<= x <=10) = 1- P(0<= x <=4) = 1 - binomcdf(10,0.6,4) = 0.8338
============================
Cheers,
Stan H.