document.write( "Question 888341: A bank’s head office is concerned about the accuracy of the reports being submitted by the bank’s newest branch. The head office observes that 10% of reports from the newest branch contain an error.
\n" );
document.write( "During a given week, the head office receives 5 reports from the newest branch. What is the probability that exactly one contains an error? What is the probability that at least one contains an error?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #537290 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A bank’s head office is concerned about the accuracy of the reports being submitted by the bank’s newest branch. The head office observes that 10% of reports from the newest branch contain an error. \n" ); document.write( " During a given week, the head office receives 5 reports from the newest branch. \n" ); document.write( "------- \n" ); document.write( "Binomial Problem with n = 5 and p(error) = 0.1 \n" ); document.write( "------------------ \n" ); document.write( "What is the probability that exactly one contains an error? \n" ); document.write( "P(x = 1) = 5C1*0.1*0.9^4 = binompdf(5,0.1,1) = 0.3281 \n" ); document.write( "---------------------------\r \n" ); document.write( "\n" ); document.write( "What is the probability that at least one contains an error? \n" ); document.write( "P(at least one) = 1 - P(none) \n" ); document.write( "P(at least one) = 1 - P(x = 0) = 1 - 0.9^5 = 0.6126 \n" ); document.write( "-------------------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "-------------------------- \n" ); document.write( " \n" ); document.write( " |