document.write( "Question 1041069: A multiple choice test consists of four questions. Each question has five possible answers of which only one is correct. A student guesses on every question. Find the probability distribution of X, the number of questions she answers correctly.
\n" );
document.write( "
\n" );
document.write( "Table with x and P(X=x)
\n" );
document.write( "x= 1, 2, 3, 4 then
\n" );
document.write( "P(X=x)?\r
\n" );
document.write( "\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #656004 by stanbon(75887) ![]() You can put this solution on YOUR website! multiple choice test consists of four questions. Each question has five possible answers of which only one is correct. A student guesses on every question. Find the probability distribution of X, the number of questions she answers correctly.\r \n" ); document.write( "\n" ); document.write( "Table with x and P(X=x) \n" ); document.write( "x= 1, 2, 3, 4 then \n" ); document.write( "P(X=x)? \n" ); document.write( "----- \n" ); document.write( "Binomial Problem with p(correct) = 1/5 ; n = 4 \n" ); document.write( "P(X = 1 correct) = 4C1*(1/5)*(4/5)^3 = binompdf(4,1/5,1) = 0.4096 \n" ); document.write( "--- \n" ); document.write( "P(X = 2 correct) = 4C2(1/5)^2*(4/5)^2 = binompdf(4,1/5,2) = 0.1536 \n" ); document.write( "--- \n" ); document.write( "P(X = 3 correct) = binompdf(4,1/5,3) = 0.0256 \n" ); document.write( "etc. \n" ); document.write( "------------ \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |