Poisson Distribution¶
The Poisson random variable counts the number of successes in n independent Bernoulli trials in the limit as n→∞ and p→0 where the probability of success in each trial is p and np=λ≥0 is a constant. It can be used to approximate the Binomial random variable or in it’s own right to count the number of events that occur in the interval [0,t] for a process satisfying certain “sparsity “constraints. The functions are
p(k;λ)=e−λλkk!k≥0,F(x;λ)=⌊x⌋∑n=0e−λλnn!=1Γ(⌊x⌋+1)∫∞λt⌊x⌋e−tdt,μ=λμ2=λγ1=1√λγ2=1λ.
M(t)=exp[λ(et−1)].
Implementation: scipy.stats.poisson