Rahul Sharma (Editor)

Zero truncated Poisson distribution

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In probability theory, the zero-truncated Poisson (ZTP) distribution is a certain discrete probability distribution whose support is the set of positive integers. This distribution is also known as the conditional Poisson distribution or the positive Poisson distribution. It is the conditional probability distribution of a Poisson-distributed random variable, given that the value of the random variable is not zero. Thus it is impossible for a ZTP random variable to be zero. Consider for example the random variable of the number of items in a shopper's basket at a supermarket checkout line. Presumably a shopper does not stand in line with nothing to buy (i.e. the minimum purchase is 1 item), so this phenomenon may follow a ZTP distribution.

Since the ZTP is a truncated distribution with the truncation stipulated as k > 0, one can derive the probability mass function g(k;λ) from a standard Poisson distribution f(k;λ) as follows:

g ( k ; λ ) = P ( X = k X > 0 ) = f ( k ; λ ) 1 f ( 0 ; λ ) = λ k e λ k ! ( 1 e λ ) = λ k ( e λ 1 ) k !

The mean is

E [ X ] = λ 1 e λ = λ e λ e λ 1

and the variance is

Var [ X ] = λ + λ 2 1 e λ λ 2 ( 1 e λ ) 2 = E [ X ] ( 1 + λ E [ X ] )

Generated Zero-truncated Poisson-distributed random variables

Random variables sampled from the Zero-truncated Poisson distribution may be achieved using algorithms derived from Poisson distributing sampling algorithms.

init: Let k ← 1, t ← e−λ / (1 - e−λ) * λ, s ← t. Generate uniform random number u in [0,1]. while s < u do: k ← k + 1. t ← t * λ / k. s ← s + t. return k.

References

Zero-truncated Poisson distribution Wikipedia