document.write( "Question 285518: suppose you are writing a multiple choice exam in which each answer has 5 choices. you decide to use in which you place 5 balls in a box (marked A,B,C,D,E). you randomly select 1 ball for each question and replace it, the marking on the ball determines your answer to the question. If there are 10 questions,
\n" );
document.write( "1. what is the probability of getting 5 questions correct?
\n" );
document.write( "2. getting at least 3 questions correct?
\n" );
document.write( "3. what is the expected number of correct answers?
\n" );
document.write( "4. what is the standard deviation? \n" );
document.write( "
Algebra.Com's Answer #207033 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! suppose you are writing a multiple choice exam in which each answer has 5 choices. you decide to use in which you place 5 balls in a box (marked A,B,C,D,E). you randomly select 1 ball for each question and replace it, the marking on the ball determines your answer to the question. If there are 10 questions, \n" ); document.write( "----------- \n" ); document.write( "Binomial Problem with n = 10 ; p = 1/5 \n" ); document.write( "1. what is the probability of getting 5 questions correct?: \n" ); document.write( "Ans: binompdf(10,1/5,5) = \n" ); document.write( "---------------------------------- \n" ); document.write( "2. getting at least 3 questions correct?: \n" ); document.write( "Ans: 1-binomcdf(10,1/5,2) = \n" ); document.write( "---------------------------------- \n" ); document.write( "3. what is the expected number of correct answers? \n" ); document.write( "ans: mean = np = 10(1/5) = 2 \n" ); document.write( "---------------------------------- \n" ); document.write( "4. what is the standard deviation? \n" ); document.write( " Ans: std = sqrt(npq) = sqrt(2*4/5) = sqrt(8/5) = 1.2649\r \n" ); document.write( "\n" ); document.write( "============================================================ \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |