document.write( "Question 638257: A basketball player has a history of making 80% of the foul shots taken during the games. What is the probability that one of the next five foul shots he\r
\n" );
document.write( "\n" );
document.write( "a. makes three missed shots?
\n" );
document.write( "b. makes at least 3 shots?
\n" );
document.write( "c. makes at most 2 shots? \n" );
document.write( "
Algebra.Com's Answer #402093 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A basketball player has a history of making 80% of the foul shots taken during the games. \n" ); document.write( "----- \n" ); document.write( "Binomial Problem with p(make) = 0.8 ; and P(miss) = 0.2 \n" ); document.write( "--------------------------\r \n" ); document.write( "\n" ); document.write( "What is the probability that of the next five foul shots he \n" ); document.write( "a. misses 3 shots? \n" ); document.write( "P(x = 3) = 5C3(0.2)^3*(0.8)^2 = binompdf(5,0.2,3) = 0.0512 \n" ); document.write( "------------------------------------ \n" ); document.write( "b. makes at least 3 shots? \n" ); document.write( "P(3<= x <=5) = 1 - P(0<= x <=2) = 1-binomcdf(5,0.8,2) = 0.9421 \n" ); document.write( "----- \n" ); document.write( "c. makes at most 2 shots? \n" ); document.write( "P(0<= x<=2) = binomcdf(5,0.8,2) = 0.0579 \n" ); document.write( "================= \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "================= \n" ); document.write( " \n" ); document.write( " |