Gaussian mixture
A Gaussian mixture is a weighted sum of Normal densities. Each component has its own mean and standard deviation; each sample is drawn from exactly one component, chosen at random according to the mixing weight.
mixture w · N(μ₁, σ₁) (1 − w) · N(μ₂, σ₂) E[X] = 0.60, Var = 3.63
What to notice
- Bimodality is not automatic. Even with , the mixture looks unimodal unless the means are separated by roughly two standard deviations. A rough rule: is the tipping point.
- Weight controls which mode dominates. At the components contribute equally; push the slider and one peak drowns out the other.
- Overall mean and variance decompose. The mean is the weighted average of component means. The variance picks up an extra term from the squared distance of each component from the overall mean — a special case of the law of total variance.
Why it matters
Mixtures are the stats world’s Swiss army knife for “kind of Normal but not quite”:
- Clustering. Given data, fit a mixture with the EM algorithm and the posterior component probabilities tell you which cluster each point most likely came from.
- Density estimation. A mixture of enough Normals can approximate any continuous density to arbitrary accuracy, much like how a Fourier series approximates periodic functions.
- Heavy tails from simple ingredients. Two Normals with wildly different produce a leptokurtic “outlier-prone” mixture — a cheap model for contaminated data.