document.write( "Question 1054112:  Here is a simple probability model for multiple-choice tests. Suppose each student has probability p of correctly answering a question chosen at random from a universe of possible questions. (A strong student has a higher p than a weak student.) Answers to different questions are independent. (Round your answers to four decimal places.)
\n" );
document.write( "(a) Stacey is a good student for whom p = 0.71. Use the Normal approximation to find the probability that Stacey scores between (and including) 70% and 80% on a 100-question test. 
\n" );
document.write( "(b) If the test contains 250 questions, what is the probability that Stacey will score between (and including) 70% and 80%? You see that Stacey's score on the longer test is more likely to be close to her \"true score.\" 
\n" );
document.write( " 
\n" );
document.write( " \n" );
document.write( "
| Algebra.Com's Answer #669314 by stanbon(75887)      You can put this solution on YOUR website! (a) Stacey is a good student for whom p = 0.71. Use the Normal approximation to find the probability that Stacey scores between (and including) 70% and 80% on a 100-question test. \n" ); document.write( "mean = n*p = 100*0.71 = 71 \n" ); document.write( "std = sqrt(n*p*q) = sqrt(71*0.29) = 4.5376 \n" ); document.write( "---- \n" ); document.write( "Binomial: P(70<= x <=80) ~ Normal:P(69.5<= x <=80.5) \n" ); document.write( "z(69.5) = (59.5-71)/4.5376 = -2.5344 \n" ); document.write( "z(80.5) = (80.5-71)/4.5376 = 2.0936 \n" ); document.write( "------ \n" ); document.write( "Ans: p(-2.7344 < z < 2.0936) = normalcdf(-2.7344,2.0936) = 0.9762 \n" ); document.write( "----------------------------------------- \n" ); document.write( " \n" ); document.write( "(b) If the test contains 250 questions, what is the probability that Stacey will score between (and including) 70% and 80%? You see that Stacey's score on the longer test is more likely to be close to her \"true score.\" \n" ); document.write( "mean = n*p = 250*0.71 = 177.5 \n" ); document.write( "std = sqrt(177.5*0.29) = 7.1746 \n" ); document.write( "Note: 0.7*250 = 175 ; 0.8*250 = 200 \n" ); document.write( "-------- \n" ); document.write( "z(175) = (175-177.5)/7.1746 = -2.5 \n" ); document.write( "z(200) = (200-177.5)/7.1746 = 3.1363 \n" ); document.write( "--- \n" ); document.write( "etc. \n" ); document.write( "I'll let you finish the problem. \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "------------- \n" ); document.write( " \n" ); document.write( " |