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. The ui+1 ~ U(0, 1) pseudorandom number from continuous uniform distribution within (0, 1) is generated, after that the b·ui+1 values are attributed.

  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