document.write( "Question 870230: A student randomly guesses at 20 multiple choice questions. Each question has 4 possible answers with only one being correct, and each is independent of every other question.
\n" );
document.write( "find the probability that the student guesses 4 right, 3 correctly, more than 8 correctly, between 4 and 6 inclusively, would any of these be likely to occur? \n" );
document.write( "
Algebra.Com's Answer #524804 by ewatrrr(24785) You can put this solution on YOUR website! p(correct) = .25, n = 20 \n" ); document.write( "P(x = 4) = binompdf(20, .25, 4)= .1897 \n" ); document.write( "P(x = 3) = P(x = 3) = binompdf(20, .25, 3) = .1339 \n" ); document.write( "p(x > 8) = 1 - P(x = 7) = binomcdf(20, .25, 7) = .0409 \n" ); document.write( "P( 4≤ x ≤ 6) = .7858 - .7749 = .0111 \n" ); document.write( "P( x ≥ 4 ) = 1 - binomcdf(20, .25, 3)= .7748 \n" ); document.write( "P(x ≤ 6) = binomcdf(20, .25, 6)= .7858 \n" ); document.write( " |