document.write( "Question 437698: During a semester, 40% of the students are taking a mathematics course. Determine the probability that of the five students selected...
\n" );
document.write( "a) exactly 2 are taking a math course
\n" );
document.write( "b) at least 4 students are taking a math course
\n" );
document.write( "c) fewer than 4 students are taking a math course \n" );
document.write( "
Algebra.Com's Answer #302805 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! During a semester, 40% of the students are taking a mathematics course. Determine the probability that of the five students selected... \n" ); document.write( "a) exactly 2 are taking a math course \n" ); document.write( "P(x= 2) = 5C2(0.4)^2(0.6)^3 = binompdf(5.0.4,2) = 0.3456 \n" ); document.write( "------------------------------------- \n" ); document.write( "b) at least 4 students are taking a math course \n" ); document.write( "P(4<= x<=5) = 1-P(0<= x <=3) = 1-binomcdf(5,0.4,3) = 0.0870 \n" ); document.write( "-------------------------------------- \n" ); document.write( "c) fewer than 4 students are taking a math course \n" ); document.write( "P(0<= x <=4) = binomcdf(5,0.4,4) = 0.9898 \n" ); document.write( "------------------------------------ \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "============ \n" ); document.write( " |