Photo AI

Last Updated Sep 27, 2025

Poisson Approximations of Binomials Simplified Revision Notes

Revision notes with simplified explanations to understand Poisson Approximations of Binomials quickly and effectively.

user avatar
user avatar
user avatar
user avatar
user avatar

353+ students studying

19.1.2 Poisson Approximations of Binomials

Introduction

The Poisson distribution can be used to approximate a binomial distribution under specific conditions. This approximation simplifies calculations when the number of trials (nn) is large, and the probability of success (pp) is small. Instead of working directly with B(n,p)B(n, p), we use a Poisson distribution with mean λ=np\lambda = np

This note covers:

  1. Conditions for the Poisson approximation.
  2. How to use the Poisson approximation in calculations.
  3. Worked examples with step-by-step solutions.

Binomial Distribution

If XB(n,p)X \sim B(n, p), then:

P(X=x)=(nx)px(1p)nxP(X = x) = \binom{n}{x} p^x (1-p)^{n-x}

where:

  • nn: Number of trials,
  • pp: Probability of success,
  • xx: Number of successes.

Poisson Approximation to Binomial

When nn is large and pp is small (np10np \leq 10), the binomial distribution B(n,p)B(n, p) can be approximated by the Poisson distribution Po(λ)\text{Po}(\lambda), where:

λ=np\lambda = np

For YPo(λ)Y \sim \text{Po}(\lambda), the probability mass function is:

P(Y=x)=λxeλx!P(Y = x) = \frac{\lambda^x e^{-\lambda}}{x!}

where λ\lambda is the mean and variance of the distribution.

Why Use the Poisson Approximation?

  • Simplifies Calculations: For large nn and small pp, computing (nx)\binom{n}{x} and powers of pp becomes cumbersome. The Poisson formula is much simpler.
  • Real-Life Applications: The Poisson distribution is often used in contexts like rare events over time or space (e.g., accidents, calls to a call center).

Worked Examples

infoNote

Example 1: Using the Poisson Approximation


Problem

A factory produces lightbulbs, and each bulb has a 0.0020.002 probability of being defective. If 10001000 bulbs are tested, find the probability that:

  1. Exactly 2 bulbs are defective.
  2. At most 1 bulb is defective.

Step 1: Check Conditions for Poisson Approximation

For the binomial distribution B(n,p)B(n, p)

  • n=1000n=1000
  • p=0.002p=0.002 Calculate λ=np\lambda = np
λ=1000×0.002=2\lambda = 1000 \times 0.002 = 2

Since nn is large and pp is small, the Poisson approximation is appropriate: YPo(2)Y \sim \text{Po}(2)


Step 2: Find P(Y=2)P(Y = 2)

Use the Poisson formula:

P(Y=x)=λxeλx!P(Y = x) = \frac{\lambda^x e^{-\lambda}}{x!}

Substitute λ=2\lambda = 2 and x=2x = 2

P(Y=2)=22e22!=4×e22P(Y = 2) = \frac{2^2 e^{-2}}{2!} = \frac{4 \times e^{-2}}{2}

Using e20.1353e^{-2} \approx 0.1353

P(Y=2)=4×0.13532=0.2706P(Y = 2) = \frac{4 \times 0.1353}{2} = 0.2706

Step 3: Find P(Y1)P(Y \leq 1)

P(Y1)=P(Y=0)+P(Y=1)P(Y \leq 1) = P(Y = 0) + P(Y = 1)

Calculate P(Y=0)P(Y = 0)

P(Y=0)=λ0eλ0!=1×e21=e20.1353P(Y = 0) = \frac{\lambda^0 e^{-\lambda}}{0!} = \frac{1 \times e^{-2}}{1} = e^{-2} \approx 0.1353

Calculate P(Y=1)P(Y = 1)

P(Y=1)=λ1eλ1!=2×e21P(Y = 1) = \frac{\lambda^1 e^{-\lambda}}{1!} = \frac{2 \times e^{-2}}{1} =2×0.1353=0.270= 2 \times 0.1353 = 0.270

Add the probabilities:

P(Y1)=0.1353+0.2706=0.4059P(Y \leq 1) = 0.1353 + 0.2706 = 0.4059

Final Answer:

  1. P(Y=2)=:success[0.2706]P(Y = 2) = :success[0.2706]
  2. P(Y1)=:success[0.4059]P(Y \leq 1) = :success[0.4059]
infoNote

Example 2: Comparing Binomial and Poisson Probabilities


Problem

A raffle has 200200 tickets, and each ticket has a 0.010.01 chance of being a winner. Find the probability of exactly 3 winning tickets:

  1. Using the binomial distribution.
  2. Using the Poisson approximation.

Part 1: Using the Binomial Distribution

For XB(200,0.01)X \sim B(200, 0.01), the probability is:

P(X=3)=(2003)(0.01)3(10.01)197P(X = 3) = \binom{200}{3} (0.01)^3 (1-0.01)^{197}

Step 1: Compute (2003)\binom{200}{3}

(2003)=200×199×1983×2×1=1313400\binom{200}{3} = \frac{200 \times 199 \times 198}{3 \times 2 \times 1} = 1313400

Step 2: Compute powers of 0.010.01 and 0.990.99

(0.01)3=0.000001,(0.99)1970.1348(0.01)^3 = 0.000001, \quad (0.99)^{197} \approx 0.1348

Step 3: Calculate:

P(X=3)=1313400×0.000001×0.1348=0.1769P(X = 3) = 1313400 \times 0.000001 \times 0.1348 = 0.1769

Part 2: Using the Poisson Approximation


Step 1: Check conditions:

n=200,p=0.01,λ=np=200×0.01=2n = 200, p = 0.01, \lambda = np = 200 \times 0.01 = 2

Poisson approximation is appropriate: YPo(2)Y \sim \text{Po}(2)


Step 2: Use the Poisson formula:

P(Y=3)=λ3eλ3!P(Y = 3) = \frac{\lambda^3 e^{-\lambda}}{3!}

Substitute λ=2\lambda = 2

P(Y=3)=23e26=8×0.13536=0.1804P(Y = 3) = \frac{2^3 e^{-2}}{6} = \frac{8 \times 0.1353}{6} = 0.1804

Final Answer:

  1. Binomial: P(X=3)=:success[0.1769]P(X = 3) = :success[0.1769]
  2. Poisson: P(Y=3)=:success[0.1804]P(Y = 3) = :success[0.1804] The Poisson approximation is close to the binomial result.

Note Summary

infoNote

Common Mistakes

  1. Using Poisson approximation when nn is small or pp is large: The approximation is only valid when nn is large and pp is small (np10np \leq 10).
  2. Forgetting to calculate λ=np\lambda = np: Ensure the Poisson mean is correctly computed.
  3. Ignoring the factorial in the Poisson formula: The denominator x!x! is essential when calculating probabilities.
  4. Assuming exact results: The Poisson approximation is an estimate and may slightly differ from the binomial result.
infoNote

Key Formulas

  1. Binomial Distribution:
P(X=x)=(nx)px(1p)nxP(X = x) = \binom{n}{x} p^x (1-p)^{n-x}
  1. Poisson Approximation:
P(Y=x)=λxeλx!,λ=npP(Y = x) = \frac{\lambda^x e^{-\lambda}}{x!}, \quad \lambda = np
  1. Conditions for Approximation:
  • nn is large,
  • pp is small,
  • λ=np10\lambda = np \leq 10
Books

Only available for registered users.

Sign up now to view the full note, or log in if you already have an account!

500K+ Students Use These Powerful Tools to Master Poisson Approximations of Binomials

Enhance your understanding with flashcards, quizzes, and exams—designed to help you grasp key concepts, reinforce learning, and master any topic with confidence!

20 flashcards

Flashcards on Poisson Approximations of Binomials

Revise key concepts with interactive flashcards.

Try Further Maths Further Statistics 1 Flashcards

2 quizzes

Quizzes on Poisson Approximations of Binomials

Test your knowledge with fun and engaging quizzes.

Try Further Maths Further Statistics 1 Quizzes

29 questions

Exam questions on Poisson Approximations of Binomials

Boost your confidence with real exam questions.

Try Further Maths Further Statistics 1 Questions

27 exams created

Exam Builder on Poisson Approximations of Binomials

Create custom exams across topics for better practice!

Try Further Maths Further Statistics 1 exam builder

50 papers

Past Papers on Poisson Approximations of Binomials

Practice past papers to reinforce exam experience.

Try Further Maths Further Statistics 1 Past Papers

Other Revision Notes related to Poisson Approximations of Binomials you should explore

Discover More Revision Notes Related to Poisson Approximations of Binomials to Deepen Your Understanding and Improve Your Mastery

96%

114 rated

Poisson & Binomial Distributions

The Poisson Distribution

user avatar
user avatar
user avatar
user avatar
user avatar

404+ studying

196KViews
Load more notes

Join 500,000+ A-Level students using SimpleStudy...

Join Thousands of A-Level Students Using SimpleStudy to Learn Smarter, Stay Organized, and Boost Their Grades with Confidence!

97% of Students

Report Improved Results

98% of Students

Recommend to friends

500,000+

Students Supported

50 Million+

Questions answered