document.write( "Question 108362: You are taking a multiple-choice quiz that consists of 3 questions. Each question has 4 possible answers, only one of which is correct. To complete the quiz, you randomly guess the answer to each question. Find the probability of guessing (A) exactly 2 answers correctly, (B) at least 2 answers correctly, or (C) less than 2 answers correctly. \n" ); document.write( "
Algebra.Com's Answer #78997 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! You are taking a multiple-choice quiz that consists of 3 questions. Each question has 4 possible answers, only one of which is correct. To complete the quiz, you randomly guess the answer to each question. \n" ); document.write( "--------- \n" ); document.write( "With 4 possible answers on each question, \n" ); document.write( "P(correct) = 0.25 \n" ); document.write( "P(wrong) = 0.75 \n" ); document.write( "------------------\r \n" ); document.write( "\n" ); document.write( " Find the probability of guessing \n" ); document.write( "(A) exactly 2 answers correctly, = binompdf(3,0.25,2)=0.1406... \n" ); document.write( "(B) at least 2 answers correctly, = 1 - binomcdf(3,0.25,2)=0.0.15625... \n" ); document.write( "(C) less than 2 answers correctly.= binomcdf(3,0.25,1) = 0.84375 \n" ); document.write( "========= \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |