2

I am studying probabilites and the notion of poisson random variable was introduced in the class. But it seems to me that the introduction of poisson random variable is to provide a easy approximation of the binomial random variable conditioned that n is large and p is small. Besides, the preconditions in the poisson distribution that events are independent of each other seem to come from the fact that binomial random variable is composed by many independent bernouli variables.

So I wonder if originally, poisson distribution was invented to model binomial distribution or was it invented to solve a particular kind of problem

  • You should take a look at my answer to a similar question about the exponential distribution. A Poisson distribution is the distribution of the random variable "number of points from the process $X$ in an interval $I$" where $X$ is a Poisson process. – Jack M Jul 09 '19 at 13:27

2 Answers2

2

The history of Poisson distribution https://en.wikipedia.org/wiki/Poisson_distribution#History shows that Siméon Denis Poisson introduced the distribution when discussing wrongful convictions of prisoners in a given country by focusing on certain random variables that count the number of discrete occurrences of that take place during a time interval of a given length.

It has since been used for reliability engineering.

To your point, it seems it was generally introduced as a way to model a specific phenomenon but was then applied to solve applications years later.

1

The Poisson is derived from the Binomial distribution, when one takes the limit of n, i.e. the number of experiments, to infinity, while demanding that the expected value stays the same (essentially reducing the probability to 1/n).

Intuitively, it means that there is no confined number of dichotomic (1 or 0) events, but possibly infinite amount of events.

This page explains it nicely (cached version):

Denote E(x) of the binomial distribution, np, by λ. Note: $p=\frac{\lambda}{n}$

If you develop the Binomial distribution formula, you arrive finally to this:

$P(x) = \frac{n}{n} \cdot \frac{n-1}{n} \cdots \frac{n-x+1}{n} \cdot \frac{\lambda^x}{x!}\left( 1 - \frac{\lambda}{n} \right)^n \left( 1 - \frac{\lambda}{n} \right)^{-x}$

If you take the limit of this expression when n goes to $\infty$, all the first x expressions reduce to 1, and the last expression as well; the second to last becomes $e^{-\lambda}$, and you are left with the Poisson distribution:

$\lim_{n \rightarrow \infty} P(x) = \frac{e^{-\lambda} \lambda^x}{x!}$

Edit: I'm not sure I understand the comments made to this answer. I try to write it more "rigorous-ly":

Suppose I have a series of R.V., s.t. $X_i\sim Bin(n, \frac{\lambda}{n})$. We see that under this setup, the expected value = $n \cdot \frac{\lambda}{n} = \lambda$ stays the same. If I then look at the PMF of this R.V. in the limit, I get that:

$$ \lim P_{X_n}(k) = \lim {n \choose k}(\frac{\lambda}{n})^k(1-\frac{\lambda}{n})^{n-k}=\frac{\lambda^k}{k!} \lim \frac{n!}{(n-k)!n^k} (1-\frac{\lambda}{n})^n (1-\frac{\lambda}{n})^{-k} $$

The 1st and 3rd terms go to 1. The 2nd term goes to $e^{-\lambda}$. And we get exactly the Poisson PMF.

Hope this clears it up for you guys.

  • 1
    You're mixing up asymptotical approximations and actual limits. For the last line to make sense, you need $\lambda=\lim \lambda_n$ with $\lambda_n=p_n/n$ for a Bernoulli success probability $p_n$ depending on $n$. – Mars Plastic Jul 08 '19 at 12:03
  • @MarsPlastic agreed the cited reference and Wikipedia clarify that the limit is only an approximation that ‘converges […] while the product np remains fixed or at least p tends to zero’. – Shelby Moore III Feb 08 '22 at 20:48
  • @ShelbyMooreIII I'm not sure I understand your comment. I already wrote that you have to hold the expectation constant. I edited now the answer, hope it helps you. – Maverick Meerkat Feb 08 '22 at 21:02
  • @MaverickMeerkat I had upvoted your answer because intuitively it’s an interesting result, although afaik it’s may not be a correct answer because I haven’t read that the Poisson distribution was derived from the Binomial when it was discovered, although I’m open to it may have been. I was merely agreeing with Mars that the notion of equivalence of a limit is misleading because the Binomial distribution is meaningless if n→∞ (you’ve still got the λ=np term in the result), so it can only ever be an asymptotic approximation to Binomial. – Shelby Moore III Feb 08 '22 at 23:59