document.write( "Question 280325: For a student to pass a particular course they must pass at least 8 out of 10 tests. For each test the probability of the student passing is 0.88. Determine the probability that the student: \r
\n" );
document.write( "\n" );
document.write( "a) passes exactly 8 out of 10 tests.\r
\n" );
document.write( "\n" );
document.write( "b) passes the course. \n" );
document.write( "
Algebra.Com's Answer #203737 by stanbon(75887) ![]() You can put this solution on YOUR website! For a student to pass a particular course they must pass at least 8 out of 10 tests. For each test the probability of the student passing is 0.88. Determine the probability that the student: \n" ); document.write( "a) passes exactly 8 out of 10 tests. \n" ); document.write( "Binomial Problem with n = 10, p = 0.88, x = 8 \n" ); document.write( "Ans: P(x=8) = 10C8(0.88)^8(0.12)^2 = binompdf(10,0.88,8) = 0.233 \n" ); document.write( "--------------------------------- \n" ); document.write( "b) passes the course: 8<= x <=10 \n" ); document.write( "Ans:: 1-binomcdf(10,0.88,7) \n" ); document.write( "= 1 - 0.1087 \n" ); document.write( "= 0.8913 \n" ); document.write( "===================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |