document.write( "Question 253367: A True-False test has 10 questions with each having 2 possible answers with one correct. Assume a student randomly guesses the answers to every question.\r
\n" );
document.write( "\n" );
document.write( "A. What is the probability of getting exactly 5 correct answers?\r
\n" );
document.write( "\n" );
document.write( "B. What is the probability of getting less than 6 correct answers?\r
\n" );
document.write( "\n" );
document.write( "This is what I have come up with so far n=10 p=2 =.05 for p
\n" );
document.write( " p(5) + P(10) =.000+
\n" );
document.write( " P(6) + P(10) =.000+ \n" );
document.write( "
Algebra.Com's Answer #185679 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A True-False test has 10 questions with each having 2 possible answers with one correct. Assume a student randomly guesses the answers to every question. \n" ); document.write( "---------- \n" ); document.write( "P(correct) = 1/2 ; P(wrong) = 1/2 \n" ); document.write( "------------------------------------ \n" ); document.write( "A. What is the probability of getting exactly 5 correct answers? \n" ); document.write( "Binomial Problem with n = 10, p = 1/2 , x = 5 \n" ); document.write( "P(x=5) = 10C5*(1/2)^5*(1/2)^5 = 252*0.00097656 = 0.2461 \n" ); document.write( "------------------------------------------------------------------ \n" ); document.write( "B. What is the probability of getting less than 6 correct answers? \n" ); document.write( "P(0<= x <=5) = binomcdf(10,1/2,5) = 0.6230.. \n" ); document.write( "---------------------------------------------------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |