distributions
Mixture Distributions
You should know: continuous probability distributions, discrete probability distributions
Overview
A mixture distribution arises when a random variable's distribution is a weighted combination of two or more component distributions. Intuitively, one first randomly selects a component according to mixing weights, then draws an observation from the selected component. Mixture models are ubiquitous in data science (Gaussian mixture models for clustering), actuarial science (modelling heterogeneous populations), and Bayesian statistics (prior-predictive distributions). They can capture multi-modality, heavy tails, and other complex shapes that a single parametric family cannot.
Intuition
Suppose a factory has two machines: machine A produces bolts with diameter ~ N(10, 0.1²) and machine B produces bolts with diameter ~ N(10.5, 0.2²). If 70% of bolts come from A and 30% from B, the diameter of a randomly selected bolt follows a mixture: 0.7·N(10, 0.01) + 0.3·N(10.5, 0.04). The resulting distribution will be bimodal — two bumps — reflecting the two machines. A mixture is the distribution you see when you sample from a heterogeneous population without knowing which subpopulation each observation belongs to.
Formal Definition
A random variable X follows a mixture distribution with K components if its density (or PMF) can be written as:
Worked Examples
- 1
Mixture mean: weighted average of component means.
- 2
Component variances: σ₁² = 1, σ₂² = 1. Within-component variance:
- 3
Between-component variance (spread of means around μ = 2):
- 4
Total variance = within + between.
✓ Answer
E[X] = 2, Var(X) = 7.
Practice Problems
A mixture of two exponentials: with probability 0.3 draw from Exp(1) (mean 1) and with probability 0.7 draw from Exp(0.5) (mean 2). Find the mean of the mixture.
A Gaussian mixture has weights π₁ = 0.5, π₂ = 0.5 and component means μ₁ = −2, μ₂ = 2 with component variances σ₁² = σ₂² = 1. Find the overall mean and variance.
Quiz
Summary
- A mixture distribution has density f(x) = Σπₖfₖ(x) where πₖ ≥ 0 and Σπₖ = 1.
- E[X] = Σπₖμₖ (weighted average of component means).
- Var(X) = within-component variance + between-component variance (law of total variance).
- Mixture models capture heterogeneous populations, multi-modality, and heavy tails.
Mathematics