Moment Generating Functions
About 271 wordsLess than 1 minute
2025-08-04
Definition
The moment generating function (MGF) of a random variable X is a function that provides a way to compute all moments of the distribution.
MX(t)=E[etX]
For discrete random variables:
MX(t)=x∑etx⋅pX(x)
For continuous random variables:
MX(t)=∫−∞∞etx⋅fX(x)dx
Properties
Moment Generation
The n-th moment of X can be obtained by differentiating the MGF n times and evaluating at t=0:
E[Xn]=MX(n)(0)
Key Properties
- Uniqueness: If two random variables have the same MGF, they have the same distribution
- Linear Transformations: For Y=aX+b, MY(t)=ebtMX(at)
- Independence: If X and Y are independent, MX+Y(t)=MX(t)⋅MY(t)
Common MGFs
Distribution | MGF | Domain |
---|---|---|
Bernoulli(p) | 1−p+pet | All t |
Binomial(n,p) | (1−p+pet)n | All t |
Poisson(λ) | eλ(et−1) | All t |
Normal(μ,σ²) | eμt+21σ2t2 | All t |
Exponential(λ) | λ−tλ | t<λ |
Uniform(a,b) | t(b−a)etb−eta | t=0 |
Applications
- Finding moments: Easy computation of expected values, variances, and higher moments
- Characterizing distributions: Unique identification of probability distributions
- Sum of random variables: Simplifying analysis of sums of independent variables
- Limit theorems: Proving convergence in distribution
For more details on expectation and variance, see Expectation and Variance.