document.write( "Question 947926: Suppose that an unfair coin comes up heads 53.7% of the time. The coin is flipped a total of 17 times.
\n" );
document.write( "a.) What is the probability that you get exactly 10 tails?
\n" );
document.write( "b.) What is the probability that you get at most 15 heads? \n" );
document.write( "
Algebra.Com's Answer #578511 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Suppose that an unfair coin comes up heads 53.7% of the time. The coin is flipped a total of 17 times. \n" ); document.write( "Binomial Problem with n = 17 and p(heads) = 0.537 \n" ); document.write( "-------------------- \n" ); document.write( " a.) What is the probability that you get exactly 10 tails? \n" ); document.write( "Ans: P(x = 10) = 17C10*0.537^10*0.463^7 = binompdf(17,0.537,10) = 0.1770 \n" ); document.write( "----------------------------------\r \n" ); document.write( "\n" ); document.write( " b.) What is the probability that you get at most 15 heads? \n" ); document.write( "Ans: P(0<= x <= 15) = binomcdf(17,0.537,15) = 0.9996 \n" ); document.write( "============== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "------------- \n" ); document.write( " |