document.write( "Question 1008087: A history quiz had 8 multiple choice questions. Each question has 4 answer choices. A student has forgotten that the quiz was to tale place and guesses at all of the answers.\r
\n" );
document.write( "
\n" );
document.write( "\n" );
document.write( "a) Find the probability that the student gets exactly 5 of the 8 questions correct.\r
\n" );
document.write( "\n" );
document.write( "b) Find the probability that the student gets at least 6 questions correct. \n" );
document.write( "
Algebra.Com's Answer #623833 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A history quiz had 8 multiple choice questions. Each question has 4 answer choices. A student has forgotten that the quiz was to tale place and guesses at all of the answers. \n" ); document.write( "---- \n" ); document.write( "Binomial Problems with n = 8 and P(correct) = 1/4 \n" ); document.write( "---------------------- \r \n" ); document.write( "\n" ); document.write( "a) Find the probability that the student gets exactly 5 of the 8 questions correct. \n" ); document.write( "P(x = 5) = 8C5*(1/4)^5*(3/4)^3 = binompdf(8,1/4,5) = 0.0231 \n" ); document.write( "---------------------- \n" ); document.write( "b) Find the probability that the student gets at least 6 questions correct. \n" ); document.write( "P(6<= x <=8) = 1 - binomcdf(8,1/4,5) = 0.0042 \n" ); document.write( "============= \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "---------- \n" ); document.write( " |