Unlike the other random variables discussed here, we define the Poisson random variable directly through its pmf:
The pmf of a Poisson random variable is for , with otherwise, where the parameter . We say .
The Poisson random variable arises physically in two ways:
The number of events in a fixed time interval of a continuous time process where events occur at random at a given rate over time. (Covered in later courses.)
The number of successes when the probability of success is very rare.
Examples of Poisson random variables are
the number of raindrops to land on your head in a given time interval,
the number of floods of a river in a year,
the number of deaths due to typhoid over a year, (assuming typhoid cases are independent),
the number of hits on a website in a given period of time.
Calculate the probabilities of , and deaths from typhoid in a year if the number has a Poisson random variable with .
R hint: dpois(0:2,lambda=4.6)
Verify that is a proper probability mass function. This proof makes use of the definition of the exponential function in terms of its series expansion.
For each ,
If show that . The technique is similar to that in the above example.
Find the variance of the Poisson rv by first computing .
Hence
Thus a key property of the Poisson pmf is that the expectation and variance are both equal to .
Use R to give a barplot of the Poisson pmf on , when and when .
par(mfrow=c(1,2)) barplot( dpois(0:7,lambda=0.5),names.arg=c(0:7),ylim=c(0,1) ) barplot( dpois(0:7,lambda=3),names.arg=c(0:7),ylim=c(0,1) )