SOLUTION: 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

Algebra ->  Probability-and-statistics -> SOLUTION: 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      Log On


   



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.
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?

Answer by stanbon(75887) About Me  (Show Source):
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.
During a given week, the head office receives 5 reports from the newest branch.
-------
Binomial Problem with n = 5 and p(error) = 0.1
------------------
What is the probability that exactly one contains an error?
P(x = 1) = 5C1*0.1*0.9^4 = binompdf(5,0.1,1) = 0.3281
---------------------------
What is the probability that at least one contains an error?
P(at least one) = 1 - P(none)
P(at least one) = 1 - P(x = 0) = 1 - 0.9^5 = 0.6126
--------------------------
Cheers,
Stan H.
--------------------------