Photo AI

Last Updated Sep 27, 2025

Poisson Hypothesis Testing Simplified Revision Notes

Revision notes with simplified explanations to understand Poisson Hypothesis Testing quickly and effectively.

user avatar
user avatar
user avatar
user avatar
user avatar

428+ students studying

21.1.1 Poisson Hypothesis Testing

Introduction

Hypothesis testing for the mean of a Poisson distribution involves determining whether the observed data supports a specified value of the population mean λ\lambda (or equivalently μ\mu, where μ=λ\mu = \lambda). This note focuses on:

  1. Setting up null and alternative hypotheses.
  2. Performing one-tailed and two-tailed tests.
  3. Using critical regions to make decisions about hypotheses.

The Poisson Distribution

For a random variable XPo(λ)X \sim \text{Po}(\lambda)

P(X=x)=λxeλx!,x=0,1,2,P(X = x) = \frac{\lambda^x e^{-\lambda}}{x!}, \quad x = 0, 1, 2, \dots

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

Hypotheses for Poisson Tests

In hypothesis testing, the hypotheses are expressed in terms of λ\lambda (the mean of the Poisson distribution):

Null Hypothesis (H0H_0):

Assumes a specific value for λ\lambda, e.g. H0:λ=λ0H_0: \lambda = \lambda_0

Alternative Hypothesis (H1H_1):

Specifies a different value or range for λ\lambda, depending on the test:

  • One-tailed (e.g., H1:λ>λ0H_1: \lambda > \lambda_0 or H1:λ<λ0H_1: \lambda < \lambda_0)
  • Two-tailed (e.g., H1:λλ0H_1: \lambda \neq \lambda_0).

Test Statistic

The test statistic is the observed value of XX, which follows Po(λ)\text{Po}(\lambda).

The test compares XX to the critical region determined by H0H_0.

Significance Level and Critical Region

The significance level (α\alpha) is the probability of rejecting H0H_0 when H0H_0 is true.

The critical region is the range of XX values that lead to rejecting H0H_0. It is determined by ensuring that:

P(Reject H0H0 true)αP(\text{Reject } H_0 | H_0 \text{ true}) \leq \alpha

Worked Examples

infoNote

Example 1: One-Tailed Test


Problem

A shop receives an average of 55 complaints per day. A new policy is introduced, and the manager believes that complaints have decreased. A random sample shows 22 complaints on a given day.

Test, at the 5% significance level, whether the mean number of complaints has decreased.


Step 1: Define Hypotheses

  • H0:λ=5H_0: \lambda = 5 (mean complaints per day remain the same),
  • H1:λ<5H_1: \lambda < 5 (mean complaints per day have decreased).

Step 2: Identify Test Statistic and Distribution

Under H0,XPo(5)H_0, X \sim \text{Po}(5)


Step 3: Determine the Critical Region

The test is one-tailed, so the critical region is for low values of XX.

Find rr such that:

P(Xrλ=5)0.05P(X \leq r | \lambda = 5) \leq 0.05

Using Poisson probabilities:

P(X0)=e5×500!=e50.0067P(X \leq 0) = e^{-5} \times \frac{5^0}{0!} = e^{-5} \approx 0.0067P(X1)=P(X=0)+P(X=1)P(X \leq 1) = P(X = 0) + P(X = 1) =e5+e5×511!0.0067+0.0337=0.0404= e^{-5} + e^{-5} \times \frac{5^1}{1!} \approx 0.0067 + 0.0337 = 0.0404P(X2)=P(X1)+P(X=2)P(X \leq 2) = P(X \leq 1) + P(X = 2) =0.0404+e5×522!0.0404+0.0842=0.1246= 0.0404 + e^{-5} \times \frac{5^2}{2!} \approx 0.0404 + 0.0842 = 0.1246

At r=1,P(X1)0.0404<0.05r=1, P(X \leq 1) \approx 0.0404 < 0.05, so the critical region is X ≤ 1


Step 4: Compare Test Statistic to Critical Region

The observed value is X=2X = 2.

Since 2∉[0,1],X2 \not\in [0, 1], X is not in the critical region.


Step 5: Conclusion

There is insufficient evidence to reject H0H_0 at the 5%5\% significance level.

The mean number of complaints has not significantly decreased.

infoNote

Example 2: Two-Tailed Test


Problem

A factory produces items with an average of 88 defects per day. After equipment changes, 55 defects are observed on a given day.

Test, at the 10% significance level, whether the mean number of defects has changed.


Step 1: Define Hypotheses

  • H0:λ=8H_0: \lambda = 8 (mean number of defects remains the same),
  • H1:λ8H_1: \lambda \neq 8 (mean number of defects has changed).

Step 2: Identify Test Statistic and Distribution

Under H0,XPo(8)H_0, X \sim \text{Po}(8)


Step 3: Determine the Critical Region

The test is two-tailed.

Split the significance level into two tails: α=0.1\alpha = 0.1, so each tail has α/2 = 0.05

Find r1r_1 and r2r_2 such that:

P(Xr1λ=8)0.05,P(Xr2λ=8)0.05P(X \leq r_1 | \lambda = 8) \leq 0.05, \quad P(X \geq r_2 | \lambda = 8) \leq 0.05

Left Tail:

Using cumulative probabilities for XPo(8)X \sim \text{Po}(8)

P(X5)=0.1912,P(X4)=0.0902P(X \leq 5) = 0.1912, \quad P(X \leq 4) = 0.0902

Critical value: r1=4r_1 = 4


Right Tail:

Using complementary probabilities:

P(X12)=1P(X11)=10.9329=0.0671.P(X \geq 12) = 1 - P(X \leq 11) = 1 - 0.9329 = 0.0671.

Critical value: r2=12r_2 = 12

Critical region: X ≤ 4 or X ≥ 12


Step 4: Compare Test Statistic to Critical Region

The observed value is X=5X = 5.

Since 5∉[0,4][12,),X5 \not\in [0, 4] \cup [12, \infty), X is not in the critical region


Step 5: Conclusion

There is insufficient evidence to reject H0H_0 at the 10%10\% significance level.

The mean number of defects has not significantly changed.

Note Summary

infoNote

Common Mistakes

  1. Misinterpreting hypotheses: Always frame H0H_0 and H1H_1 in terms of λ\lambda, the mean of the Poisson distribution.
  2. Incorrect critical region: Ensure cumulative probabilities correspond to the correct tail(s) for one-tailed or two-tailed tests.
  3. Using the wrong distribution: Verify that the test statistic follows a Poisson distribution under H0H_0
infoNote

Key Formulas

  1. Poisson Probability:
P(X=x)=λxeλx!P(X = x) = \frac{\lambda^x e^{-\lambda}}{x!}
  1. Critical Region:
  • One-tailed: P(XrH0)αP(X \leq r | H_0) \leq \alpha or P(XrH0)αP(X \geq r | H_0) \leq \alpha
  • Two-tailed: Split α\alpha between the two tails.
  1. Mean and Variance of Poisson:
E[X]=λ,Var(X)=λ\mathbb{E}[X] = \lambda, \quad \text{Var}(X) = \lambda
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 Hypothesis Testing

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 Hypothesis Testing

Revise key concepts with interactive flashcards.

Try Further Maths Further Statistics 1 Flashcards

2 quizzes

Quizzes on Poisson Hypothesis Testing

Test your knowledge with fun and engaging quizzes.

Try Further Maths Further Statistics 1 Quizzes

29 questions

Exam questions on Poisson Hypothesis Testing

Boost your confidence with real exam questions.

Try Further Maths Further Statistics 1 Questions

27 exams created

Exam Builder on Poisson Hypothesis Testing

Create custom exams across topics for better practice!

Try Further Maths Further Statistics 1 exam builder

50 papers

Past Papers on Poisson Hypothesis Testing

Practice past papers to reinforce exam experience.

Try Further Maths Further Statistics 1 Past Papers

Other Revision Notes related to Poisson Hypothesis Testing you should explore

Discover More Revision Notes Related to Poisson Hypothesis Testing to Deepen Your Understanding and Improve Your Mastery

96%

114 rated

Poisson & Geometric Hypothesis Testing

Hypothesis Testing

user avatar
user avatar
user avatar
user avatar
user avatar

261+ studying

192KViews
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