document.write( "Question 908563: Tintin is a student taking a statistics course. Unfortunately, Tintin is not good student. He does not read
\n" );
document.write( "the textbook before the class, does not do homework and regularly misses classes. Tintin intends to rely
\n" );
document.write( "on luck to pass the next quiz. The quiz consists of 10 multiple-choice questions. Each question has five
\n" );
document.write( "possible answers, only one of which is correct. Tintin plans to guess the answer to each question.
\n" );
document.write( "a. What is probability that he gets no answer correct?
\n" );
document.write( "b. What is probability that he gets two answers correct?
\n" );
document.write( "c. What is the probability that he gets all answer correct?
\n" );
document.write( "d. What is the probability that he fails the quiz? A mark is considered a failure if it is less than 50%.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #551279 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! The quiz consists of 10 multiple-choice questions. Each question has five \n" ); document.write( "possible answers, only one of which is correct. \n" ); document.write( "P(correct) = 1/5 ; P(wrong) = 4/5 \n" ); document.write( "----------------------------------------- \n" ); document.write( "Tintin plans to guess the answer to each question. \n" ); document.write( "a. What is probability that he gets no answer correct? \n" ); document.write( "Ans: (4/5)^10 = 0.1074 \n" ); document.write( "---------------------------------------- \n" ); document.write( "b. What is probability that he gets two answers correct? \n" ); document.write( "P(x = 2) = 10C2*(1/5)^2*(4/5)8 = binompdf(10,1/5,2) = 0.3020 \n" ); document.write( "---------------------------------------------------------------- \n" ); document.write( "c. What is the probability that he gets all answer correct? \n" ); document.write( "Ans: (1/5)^10 \n" ); document.write( "-------------------------------- \n" ); document.write( "d. What is the probability that he fails the quiz? \n" ); document.write( "A mark is considered a failure if it is less than 50%. \n" ); document.write( "P(0<= x <=4) = binomcdf(10,5^-1,4) = 0.9672 \n" ); document.write( "--------------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "===================== \n" ); document.write( " |