document.write( "Question 880822: Suppose an unfair coin comes up heads 30.9% of the time if it is flipped. If the coin is flipped 14 times, what is the probability that:
\n" );
document.write( "a) it comes up heads exactly 9 times?
\n" );
document.write( "b)it comes up tails more than 11 times? \n" );
document.write( "
Algebra.Com's Answer #531730 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Suppose an unfair coin comes up heads 30.9% of the time if it is flipped. If the coin is flipped 14 times, what is the probability that: \n" ); document.write( "---- \n" ); document.write( "Binomial Problem with p(heads) = 0.309 and p(tails) = 0.691 \n" ); document.write( "a) it comes up heads exactly 9 times? \n" ); document.write( "P(x = 9) = 14C9*(0.309)^9*(0.691)^5 = binompdf(14,0.301,9) = 0.0068 \n" ); document.write( "-------------------------------------\r \n" ); document.write( "\n" ); document.write( " b)it comes up tails more than 11 times? \n" ); document.write( "P(12<= x <=14) = 1 - P(0<= x <=11) = 1 - binomcdf(14,0.691,11) = 0.1140 \n" ); document.write( "=================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "=================== \n" ); document.write( " |