24 total
Understand the concept of a probability generating function (PGF) and construct and use the PGF for given distributions, including the discrete uniform, binomial, geometric and Poisson distributions.
Use formulae for the mean and variance of a discrete random variable in terms of its PGF, and use these formulae to calculate the mean and variance of a given probability distribution.
Use the result that the PGF of the sum of independent random variables is the product of the PGFs of those random variables.
A probability generating function (PGF) provides an elegant and efficient way of describing a discrete probability distribution. Instead of working with probability tables, we can represent the entire distribution using a single mathematical function.
For a discrete random variable X with values xi, the probability generating function is defined as:
GX(t)=∑xtxP(X=x)=E(tX)
The variable t is called a dummy variable and has no intrinsic meaning, but plays an important role in calculating expectations and variances.
Property 1: When t=1, the PGF equals 1 (since the sum of all probabilities is 1):
GX(1)=1
Property 2: The coefficient of tr in the expansion of GX(t) gives P(X=r).
Property 3: We can extract probabilities from the PGF using:
P(X=r)=r!GX(r)(0)
where GX(r)(0) denotes the r-th derivative of GX(t) evaluated at t=0.
Consider the following probability distribution:
| x | 0 | 1 | 2 | 3 | 4 | 5 | 6 |
|---|---|---|---|---|---|---|---|
| P(X=x) | 0.1 | 0.2 | 0.3 | 0.15 | 0.1 | 0.1 | 0.05 |
The PGF is constructed by applying the definition:
GX(t)=0.1t0+0.2t1+0.3t2+0.15t3+0.1t4+0.1t5+0.05t6
GX(t)=0.1+0.2t+0.3t2+0.15t3+0.1t4+0.1t5+0.05t6
For a distribution with x=2,4,5,10 and probabilities 0.1,0.2,0.3,0.4 respectively:
GX(t)=0.1t2+0.2t4+0.3t5+0.4t10
Notice that the powers of t correspond to the values of x, not sequential indices.
Sign in to view full notes