document.write( "Question 286451: If 60% of all woman work outside the home. In a random sample of 20 woman what is the probability that:\r
\n" );
document.write( "\n" );
document.write( "a. exactly 15 are employed
\n" );
document.write( "b. at least 10 are employed
\n" );
document.write( "c. at most 5 are not employed \n" );
document.write( "
Algebra.Com's Answer #207757 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! If 60% of all woman work outside the home. In a random sample of 20 woman what is the probability that: \n" ); document.write( "Binomial Problem with n = 20 ; p = 0.6 \n" ); document.write( "--------------------------------------- \n" ); document.write( "a. exactly 15 are employed \n" ); document.write( "P(x = 15) = 20C15(0.6)^15*(0.4)^5 = 0.0746... \n" ); document.write( "------- \n" ); document.write( "b. at least 10 are employed \n" ); document.write( "P(10<= x <=15) = 1 - binomcdf(20,0.6,9) = 0.8725 \n" ); document.write( "------- \n" ); document.write( "c. at most 5 are not employed \n" ); document.write( "P(not employed) = 0.4 \n" ); document.write( "P(0<= x <=5) = binomcdf(20,0.4,5) = 0.1256 \n" ); document.write( "================================================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |