Can Calculating Cumulative Binomial Probabilities Be Simplified?

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 5K views
Mdhiggenz
Messages
324
Reaction score
1

Homework Statement



Of all the weld failures in a certain assembly, 85%
of them occur in the weld metal itself, and the remaining
15% occur in the base metal. A sample of
20 weld failures is examined.

a. What is the probability that fewer than four of
them are base metal failures?

Is there a faster way to solve rather than doing p(x=0)+p(x=1)+p(x=2)+p(x=3)?

Thanks

Brandon


Homework Equations





The Attempt at a Solution

 
Physics news on Phys.org
Mdhiggenz said:

Homework Statement



Of all the weld failures in a certain assembly, 85%
of them occur in the weld metal itself, and the remaining
15% occur in the base metal. A sample of
20 weld failures is examined.

a. What is the probability that fewer than four of
them are base metal failures?

Is there a faster way to solve rather than doing p(x=0)+p(x=1)+p(x=2)+p(x=3)?

Thanks

Brandon


Homework Equations





The Attempt at a Solution


No, the way you said is about as short as possible. You can sometines speed things up a bit by doing it recursively: if
[tex]P(k) = {n \choose k} p^k (1-p)^{n-k}[/tex]
we have
[tex]\frac{P(k+1)}{P(k)} = r(k) \equiv \frac{n-k}{k+1} \frac{p}{1-p},[/tex]
so if we start from ##P(0) = (1-p)^n##, we can get ##P(1) = r(0) P(0),## ##P(2) = r(1) P(1),## etc.