Section 8.5 Generating Functions for Poisson Process Distributions
Moment Generating Functions 5.5.1 can be derived for each of the distributions in this chapter.
Proof.
Using the Poisson probability function
where we used a new poisson distribution with new mean to convert the sum.
Corollary 8.5.2. Poisson Properties via Moment Generating Function.
Proof.
Continuing,
and therefore
Continuing with the second derivative,
and therefore
which is the squared mean plus the variance for the poisson distribution.
Theorem 8.5.3. Moment Generating Function for Exponential.
Proof.
Using the Exponential probability function 8.3.4
Corollary 8.5.4. Exponential Properties via Moment Generating Function.
Proof.
Continuing,
and therefore
Continuing with the second derivative,
and therefore
which is the squared mean plus the variance for the poisson distribution.
Theorem 8.5.5. Moment Generating Function for Gamma.
Proof.
Using the Gamma probability function 8.4.3,
since the last integral is on the Gamma probability function but with an adjusted mean.
Corollary 8.5.6. Gamma Properties via Moment Generating Function.
Proof.
Continuing,
and therefore
Continuing with the second derivative,
and therefore
which is the squared mean plus the variance for the poisson distribution.
Once again, Sage can obtain the final answers quickly. For Poisson:
xxxxxxxxxx
var('t,mu')
M = e^(mu * (e^t - 1))
Mt = derivative(M,t)
Mtt = derivative(Mt,t)
show(M)
show(Mt)
show(Mt(t=0))
show(Mtt)
show(Mtt(t=0))