document.write( "Question 264581: A multiple choice test has 20 questions with each having 4 possible answers with one correct. Assume a student randomly guesses the answer to every question
\n" );
document.write( "a. What is the probability of getting exactly 9 correct answers?
\n" );
document.write( "b. What is the probability of getting less than 9 correct answers? \n" );
document.write( "
Algebra.Com's Answer #194779 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A multiple choice test has 20 questions with each having 4 possible answers with one correct. Assume a student randomly guesses the answer to every question \n" ); document.write( "----- \n" ); document.write( "Binomial Problem with n = 20, p = 1/4 \n" ); document.write( "------ \n" ); document.write( "a. What is the probability of getting exactly 9 correct answers? \n" ); document.write( "P(x=9) = 20C9(1/4)^9(3/4)^11) = 0.02706... \n" ); document.write( "------------------------------------------------ \n" ); document.write( "b. What is the probability of getting less than 9 correct answers? \n" ); document.write( "P(0<= x <=8) = binomcdf(20,4^-1,8) = 0.9591... \n" ); document.write( "============ \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |