document.write( "Question 1206327: A quiz consists of 20 multiple-choice questions, each with 4 possible answers. For someone who makes random guesses for all of the answers, find the probability of passing if the minimum passing grade is 70 %. \n" ); document.write( "
Algebra.Com's Answer #843693 by math_tutor2020(3817)\"\" \"About 
You can put this solution on YOUR website!

\n" ); document.write( "As the other tutor points out, BinomDist is a great spreadsheet function to use.
\n" ); document.write( "You can generate a table as indicated and add up the values using the Sum command. Manually adding the values would be fairly tedious busy-work.\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "A quicker shortcut would be to use the cumulative flag of the BinomDist function.\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "The cumulative flag is the value of L at the end in the template
\n" ); document.write( "BinomDist(k, n, p, L)
\n" ); document.write( "If L = 0, then it computes an individual binomial value.
\n" ); document.write( "If L = 1, then it computes a cumulative sum\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "Typing in =BinomDist(13,20,0.25,1) will compute the binomial sum from k = 1 to k = 13.
\n" ); document.write( "The result of this calculation is approximately 0.999970488
\n" ); document.write( "Subtract this from 1 to determine the sum from k = 14 to k = 20.
\n" ); document.write( "1 - 0.999970488 = 0.000029512
\n" ); document.write( "Round this however instructed.\r
\n" ); document.write( "
\n" ); document.write( "\n" ); document.write( "Side note: if your spreadsheet displays 2.9512E-05, or something along those lines, it means 2.9512 * 10^(-5). Then the -5 exponent moves the decimal point 5 spots to the left to arrive at 0.000029512
\n" ); document.write( "
\n" ); document.write( "
\n" );