Home page for accesible maths 5.6 Poisson random variables

Style control - access keys in brackets

Font (2 3) - + Letter spacing (4 5) - + Word spacing (6 7) - + Line spacing (8 9) - +

5.6.1 Poisson approximation to the Binomial

One use of Poisson random variables for rare event modelling. Consider a Binomial random variable R from n trials with the probability of success being θ. A rare event has a small probability of occurring, but when there are a large number of trials, the probability that one or more events occur is not negligible.

Define λ=nθ. We will send n while keeping λ fixed (and so θ=λ/n).

To get our result, we will need the following result from calculus:

limn(1+xn)n=ex[=exp(x)]

for all x.

Now we calculate

P(R=r) = (nr)θr(1-θ)n-r
= n!r!(n-r)!(λn)r(1-λn)n-r
= λrr!(1-λn)nexp(-λ)(1-λn)-r1n!(n-r)!nr1
λrr!exp(-λ),

where the limits are taken as n.

Rare events: The binomial pmf with large n and small θ can be approximated by a Poisson pmf with parameter λ=nθ. For a good approximation n100 and θ.01.

Example 5.24.

An outbreak of poliomyelitis (Guillain-Barre syndrome =GBS) occurred in Finland in 1984 and as a consequence an intensive vaccination programme occurred. Before the vaccination programme the average number of cases of GBS was 3.67 per month. In the month after the vaccination programme there were 14 cases of GBS reported.

How unusual is this? Compute the p-value = P(observed value or worse), under the assumption of natural Poisson variability. It is P(R14) and measures the worry in observing 14 cases.

R hint: 1-sum( dpois(0:13,lambda=3.67) )

Solution.

We could count the number of susceptible people, and estimate the probability that each catches GBS. However, since this is a rare event, we can instead model the number of cases each month as RPois(3.67):

pR(r)=3.67rexp(-3.67)r!

for r=0,1,2,,. The p-value is

P(R14)=1-r=013p(r)=0.000031.

Very small and so worrying: the vaccination appears to have caused excess cases. Worry!