Theorem 8.2.1 Poisson Probability Function
Assume X measures the number of successes in an interval [0,T] within some Poisson process. Then,
for R={0,1,2,...}.
Consider a Poisson Process where you start with an interval of fixed length T and where X measures the variable number of successes, or changes, within a that interval. The resulting distribution of X will be called a Poisson distribution.
Assume X measures the number of successes in an interval [0,T] within some Poisson process. Then,
for R={0,1,2,...}.
For a sufficiently large natural number n, break up the given interval [0,T] into n uniform parts each of width h = T/n. Using the properties of Poisson processes, n very large implies h will be very small and eventually small enough so that
However, since there are a finite number of independent intervals each with probability p of containing a success then you can use a Binomial distribution to evaluate the corresponding probabilities so long as n is finite. Doing so yields and taking the limit as n approaches infinity gives:
Using the Power Series expansion for the natural exponential,
Using the f(x) generated in the previous theorem
which confirms the use of \(\mu\) in the original probability formula.
Continuing with \(\mu = \lambda T\text{,}\) the variance is given by
To derive the skewness and kurtosis, you can depend upon Sage...see the live cell below.
xxxxxxxxxx
var('x,mu')
assume(x,'integer')
f(x) =e^(-mu)*mu^x/factorial(x)
mu = sum(x*f,x,0,oo).factor()
M2 = sum(x^2*f,x,0,oo).factor()
M3 = sum(x^3*f,x,0,oo).factor()
M4 = sum(x^4*f,x,0,oo).factor()
pretty_print('Mean = ',mu)
v = (M2-mu^2).factor()
pretty_print('Variance = ',v)
stand = sqrt(v)
sk = ((M3 - 3*M2*mu + 2*mu^3)).factor()/stand^3
pretty_print('Skewness = ',sk)
kurt = (M4 - 4*M3*mu + 6*M2*mu^2 -3*mu^4).factor()/stand^4
pretty_print('Kurtosis = ',(kurt-3).factor(),'+3')