document.write( "Question 670370: a student is taking a multiple choice exam in whihc each question has 4 choices. there are 5 multiple choice questions on the exam. What is the probability that she will get:
\n" );
document.write( "1) 5 questions correct
\n" );
document.write( "2) At least four questions correct
\n" );
document.write( "3) no questions correct
\n" );
document.write( "4) no more than two questions correct? \n" );
document.write( "
Algebra.Com's Answer #416938 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! a student is taking a multiple choice exam in whihc each question has 4 choices. there are 5 multiple choice questions on the exam. What is the probability that she will get: \n" ); document.write( "---- \n" ); document.write( "Binomial Problems with n = 5 ; p(correct) = 1/4 ; p(wrong) = 3/4 \n" ); document.write( "------------------------------------------- \n" ); document.write( "1) 5 questions correct \n" ); document.write( "Ans: (1/4)^5 = 0.0009766 \n" ); document.write( "------------------------------------ \n" ); document.write( "2) At least four questions correct \n" ); document.write( "Ans: P(4<= x <=5) = 1- p(0<= x <= 3) = 1 - binomcdf(5,1/4,3) = 0.0156 \n" ); document.write( "------------------- \n" ); document.write( "3) no questions correct \n" ); document.write( "Ans: (3/4)^5 = 0.2373 \n" ); document.write( "-------------------------------- \n" ); document.write( "4) no more than two questions correct? \n" ); document.write( "P(0<= x <=2) = binomcdf(5,1/4,2) = 0.8965 \n" ); document.write( "=============================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |