Question 662152
how many ways can a person toss a coin 14 times so the number of heads is between 8 and 10 inclusive
-----
Binomial Problem with n = 14 and P(heads) = 1/2
----------------
P(8<= x <=10) = binomcdf(14,0.5,10) - binomcdf(14,0.5,7) = 0.3666
======================
Cheers,
Stan H.
=======================