Let k be the number of defective items.
p=0.005 - the probability of having defective item
q=1−p=0.995 - the probability of having not defective item
We will use Binomial Distribution Formula:
In our case, probability that exactly m items are defective is
P(k=m)=C(1000,m)pmq1000−m
a) P(k=1) - probability that only one item is defective
P(k=1)=C(1000,1)p1q999=1000×0.005×0.995999≈0.0334
Answer: 0.0334
b) P(k≤2) - probability that at most two items are defective (i.e. k=0,1,2)
P(k=0)=C(1000,0)p0q1000=1×1×0.9951000≈0.0066
P(k=1)≈0.0334
P(k=2)=C(1000,2)p2q998=21000×999×0.0052×0.995998≈0.0839
P(k≤2)≈0.0066+0.0334+0.0839≈0.1240
Answer: 0.1240
c) P(k>3) - probability that more than three items are defective
P(k>3)=1−P(k≤3)=1−(P(k≤2)+P(k=3))
P(k=3)=C(1000,3)p3q997=3×2×11000×999×998×0.0053×0.995997≈0.1403
P(k>3)≈1−(0.1240+0.1403)≈0.7357
Answer: 0.7357
Comments