Question 792386
At the end of 2010, 31% of the households in the Us had a Blu-ray player. If eight households are chosen at random,
-------
Binomial Problem with n = 8 and p(have) = 0.31
---------- 

find the probability that
a.Exactly five of them have a Blu-ray.
P(x = 5) = 8C5(0.31)^5*(0.69)^3 = binompdf(8,0.31,5) = 0.0527
--------------------------------------------
b. At least five of them have a Blu-ray player.
P(5<= x <=8) = 1 - P(0<= x <=4) = 1 - binomcdf(8,0.31,4) = 0.0661
--------------------------------------------
c. At most four of them have a Blu-ray player.
Ans: 1-binomcdf(8,0.31,3) = 0.2126
======================================
Cheers,
Stan H.
=============