document.write( "Question 662582: A recent report in businessweek indicates that 20 percent of all employess steal from their company each year. if a company empoys 50 people, what is the probability that fewer than 5 emplyees steal? More than 5 employees steal? Exactly 5 employees steal? More than 5 but fewer than 15 employees steal? \n" ); document.write( "
Algebra.Com's Answer #412378 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A recent report in businessweek indicates that 20 percent of all employess steal from their company each year. if a company employs 50 people, what is the probability that fewer than 5 emplyees steal? More than 5 employees steal? Exactly 5 employees steal? More than 5 but fewer than 15 employees steal? \n" ); document.write( "------ \n" ); document.write( "Binomial Problem with n = 50 ; p(steal) = 0.2 \n" ); document.write( "---- \n" ); document.write( "what is the probability that fewer than 5 emplyees steal? \n" ); document.write( "Ans: P(0<= x < 4) = binomcdf(50,0.2,4) = 0.0185 \n" ); document.write( "--------------------------------------- \n" ); document.write( "More than 5 employees steal? \n" ); document.write( "Ans: 1 - answer to previous = 0.9815 \n" ); document.write( "------------------------------------- \n" ); document.write( "Exactly 5 employees steal? \n" ); document.write( "Ans: P(x = 5) = 50C5(0.2)^5*(0.95)^45 = binompdf(50,0.2,5) = 0.0295 \n" ); document.write( "--------------------------- \n" ); document.write( "More than 5 but fewer than 15 employees steal? \n" ); document.write( "Ans: P(6<= x <= 14) = binomcdf(50,0.2,14)-binomcdf(50,0.2,5) = 0.8913 \n" ); document.write( "=============== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |