document.write( "Question 347050: A multiple choice exam consists of 12 questions, each having 5 possible answers. To pass, you must answer at least 9 out of 12 questions correctly. What is the probability of passing if:
\n" );
document.write( "a. you go into the exam without knowing a thing, and have to resort to pure guessing?
\n" );
document.write( "b. you have studied enough so that on each question, 3 choices can be eliminated. But then you have to make a pure guess between the remaining 2 choices.
\n" );
document.write( "c. you have studied enough so that you know for sure the correct answer on 2 questions. For the remaining 10 questions you have to resort to pure guessing. \n" );
document.write( "
Algebra.Com's Answer #248164 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A multiple choice exam consists of 12 questions, each having 5 possible answers. To pass, you must answer at least 9 out of 12 questions correctly. What is the probability of passing if: \n" ); document.write( "a. you go into the exam without knowing a thing, and have to resort to pure guessing? \n" ); document.write( "--- \n" ); document.write( "Binomial Problem with p = 1/5 and n = 12 \n" ); document.write( "P(9<= x <=12) = 1 - binomcdf(12,1/5,8) = 0.0000623.. \n" ); document.write( "------- \n" ); document.write( "b. you have studied enough so that on each question, 3 choices can be eliminated. But then you have to make a pure guess between the remaining 2 choices. \n" ); document.write( "Binomial Problem with p = 1/2 and n = 12 \n" ); document.write( "P(9<= x <=12) = 1 - binomcdf(12,1/2,8) = 0.0730 \n" ); document.write( "============================ \n" ); document.write( "c. you have studied enough so that you know for sure the correct answer on 2 questions. For the remaining 10 questions you have to resort to pure guessing. \n" ); document.write( "Binomial: with p = 1/5 and n = 10 \n" ); document.write( "P(7<= x <=10) = 0.0008643.... \n" ); document.write( "================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |