Poisson Distribution

The Poisson distribution is the discrete distribution that is one of the most important limiting cases of the binomial distribution. With the growth n and fixed value of the product np=λ > 0 the binomial distribution B(n,p) converges to the Poisson distribution.

The function of probability density is given by the formula:

Where:

To model random values, use an algorithm based on a ratio of the Poisson distribution with the λ parameter and exponential distribution with the parameter (1/λ). Thus, the following operations are executed to draw a sample from pseudo-random value P(λ):

1. Assume that e–λ, = 1 and = 0.

2. Generate a pseudo-random variable ui+1 ~ U(0, 1) from the continuous uniform distribution at the interval (0, 1), and after this assign the values b·ui+1.

3. If a, the value i is returned, otherwise the algorithm returns to the step 2 with + 1.

See also:

ISmPoissonDistribution | IStatistics.Poisson | Library of Methods and Models