document.write( "Question 838518: An olympic archer is able to hit a bullseye 80% of the time. assume each shot is independent of the others. if she shoots 10 arrows,
\n" );
document.write( "a. what is the probability that she never misses.
\n" );
document.write( "b. what is the probability that she gets exactly 8 bulleyes.
\n" );
document.write( "c. what is the probabilty that she hits the bullseye more than she misses? \n" );
document.write( "
Algebra.Com's Answer #505137 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! An olympic archer is able to hit a bullseye 80% of the time. assume each shot is independent of the others. if she shoots 10 arrows, \n" ); document.write( "a. what is the probability that she never misses:: 0.8^10 = 0.1074 \n" ); document.write( "---------------------------------------------- \n" ); document.write( "b. what is the probability that she gets exactly 8 bulleyes. \n" ); document.write( "P(x = 8) = 10C8(0.8^8)(0.2^2) = binompdf(10,0.8,8) = 0.3020 \n" ); document.write( "---------------------------------------------- \n" ); document.write( "c. what is the probabilty that she hits the bullseye more than she misses? \n" ); document.write( "P(6<= x <=10) = 1 - binomcdf(10,0.8,5) = 0.9672 \n" ); document.write( "----------------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "------------------ \n" ); document.write( " \n" ); document.write( " |