document.write( "Question 869277: A marksman can hit the center of a target with a probability of p = .4. Find the probability that out of 10 trials, the marksman can hit the center\r
\n" );
document.write( "\n" );
document.write( "a.Exactly 6 times
\n" );
document.write( "b.At most 3 times
\n" );
document.write( "c.Find the mean and standard deviation for this situation.
\n" );
document.write( "
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #524110 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A marksman can hit the center of a target with a probability of p = .4. Find the probability that out of 10 trials, the marksman can hit the center \n" ); document.write( "a.Exactly 6 times \n" ); document.write( "P(x = 6) = 10C6*(0.4)^6*(0.6)^4 = binompdf(10,0.4,6) = 0.1115 \n" ); document.write( "--------------------- \n" ); document.write( "b.At most 3 times \n" ); document.write( "P(0<= x <=3) = binomcdf(10,0.4,3) = 0.3823 \n" ); document.write( "--------------------- \n" ); document.write( "c.Find the mean and standard deviation for this situation. \n" ); document.write( "mean = np = 10*0.4 = 4 \n" ); document.write( "std = sqrt(npq) = sqrt(4*0.6) = 1.5492 \n" ); document.write( "========================================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "======================== \n" ); document.write( " \n" ); document.write( " |