SOLUTION: For a binomial distribution, compare P(x = 3) when n = 10 and p = .4 to P(x = 7) when n = 10 and p = .6.

Algebra ->  Probability-and-statistics -> SOLUTION: For a binomial distribution, compare P(x = 3) when n = 10 and p = .4 to P(x = 7) when n = 10 and p = .6.      Log On


   



Question 223173: For a binomial distribution, compare P(x = 3) when n = 10 and p = .4 to P(x = 7) when n = 10 and p = .6.
Answer by stanbon(75887) About Me  (Show Source):
You can put this solution on YOUR website!
For a binomial distribution,
compare P(x = 3) when n = 10 and p = .4
binompdf(10,0.4,3) = 0.2150
--------
OR
P(x=3) = 10C3*(0.4)^3(0.6)^7 = 0.2150
--------------------------
to P(x = 7) when n = 10 and p = .6
binompdf(10,0.6,7) = 0.2150
OR
P(x = 7) = 10C7*(0.6)^7*0.4^3 = 0.2150
==============
Cheers,
Stan H.