Binomial Theorem: Real-World Scenarios (8)

medium 2 min read

Question

A factory produces 10001000 items per day. The probability that any one item is defective is 0.0050.005. Use the binomial theorem (or its approximation) to find the probability that exactly 33 items are defective on a given day.

This connects binomial expansion with binomial probability — a real-world JEE Main pattern.

Solution — Step by Step

n=1000n = 1000, p=0.005p = 0.005, k=3k = 3.

P(X=3)=(10003)p3(1p)997P(X = 3) = \binom{1000}{3} p^3 (1-p)^{997}.

(10003)=(1000999998)/61.66×108\binom{1000}{3} = (1000 \cdot 999 \cdot 998)/6 \approx 1.66 \times 10^8.

p3=(0.005)3=1.25×107p^3 = (0.005)^3 = 1.25 \times 10^{-7}.

(0.995)997(0.995)^{997}: use ln(0.995)0.005012\ln(0.995) \approx -0.005012, so 997×(0.005012)4.997997 \times (-0.005012) \approx -4.997, giving (0.995)997e50.0067(0.995)^{997} \approx e^{-5} \approx 0.0067.

P(X=3)1.66×108×1.25×107×0.00670.139P(X = 3) \approx 1.66 \times 10^8 \times 1.25 \times 10^{-7} \times 0.0067 \approx 0.139.

So about 13.9%13.9\%.

Final answer: P(X=3)0.14P(X = 3) \approx 0.14.

Why This Works

The binomial PMF (nk)pk(1p)nk\binom{n}{k}p^k(1-p)^{n-k} counts how many ways to pick kk defectives out of nn, weighted by the probability of any one such configuration. The binomial theorem ensures these probabilities sum to 11 (by setting x=px = p and y=1py = 1-p in (x+y)n(x+y)^n).

For large nn and small pp with npnp moderate, the binomial converges to the Poisson distribution. Here np=5np = 5, so P(X=3)e553/60.140P(X=3) \approx e^{-5} 5^3/6 \approx 0.140 — matching our exact answer.

Alternative Method

Poisson approximation. With λ=np=5\lambda = np = 5:

P(X=3)e5533!=0.0067×12560.140P(X = 3) \approx \frac{e^{-5} \cdot 5^3}{3!} = \frac{0.0067 \times 125}{6} \approx 0.140

Faster than the binomial, accurate to within a few percent for n20n \geq 20, p0.05p \leq 0.05.

When nn is large and pp small (rare event), use the Poisson approximation. JEE often slips this in disguised as a binomial — the Poisson saves time.

Common Mistake

Using (1p)n(1-p)^n instead of (1p)nk(1-p)^{n-k}. The exponent is the number of “successes” we did NOT have, which is nk=997n - k = 997, not 10001000.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next