document.write( "Question 882762: a true/false test has 10 questions each of which has 2 possible answers, only one of which is correct. If you guess on all questions what is the probability that you will answer at least 6 questions correctly ?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #533085 by ewatrrr(24785) You can put this solution on YOUR website! p(correct) = .5, n = 10 \n" ); document.write( "P(x ≥ 6) = 1 - P(x ≤ 5) = 1 - binomcdf(10, .5, 5) \n" ); document.write( " |