document.write( "Question 868737: A marksman can hit the center of a target with a probability of p = 0.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.\r
\n" );
document.write( "\n" );
document.write( "Would you be kind enough to include the solution? Thank you... \n" );
document.write( "
Algebra.Com's Answer #523807 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! p(hitcenter) = .4, n = 10 \n" ); document.write( "a) P(x=6)= binompdf(10, .4, 6) \n" ); document.write( "b) P( x ≤ 3) = binomcdf(10, .4, 3) \n" ); document.write( "c) mean = 4 and SD = sqrt(4*.6) \n" ); document.write( " |