The page has taken the mode from its core definition through its discrete and continuous cases, modality classifications, comparison with mean and median, mathematical properties, finding procedures, common distribution formulas, and pitfalls. The table below collects the essentials into a single reference card, pairing each aspect of the mode with its concise statement and a concrete formula or example.
| Aspect |
Statement |
Example or formula |
| What the mode is |
the value where a probability distribution's mass or density reaches its maximum |
mode = argmaxx pX(x) or argmaxx f(x) |
| Discrete case |
the value k with the largest PMF; found by direct comparison |
Binomial(10, 0.3): mode = 3 |
| Continuous case |
the value x where the PDF peaks; found via calculus (and boundary check) |
Normal(μ, σ): mode = μ; Exponential(λ): mode = 0 |
| Modality classification |
unimodal, bimodal, multimodal, or no unique mode |
normal = unimodal; mixture of two normals = bimodal; uniform = no unique mode |
| Compared with mean & median |
peak vs balance point vs 50th percentile — same for symmetric, separate for skewed |
right skew: mode < median < mean |
| Key properties |
linear under aX + b; invariant under monotonic g; robust to outliers; not additive |
mode(aX + b) = a · mode(X) + b |
| When the mode shines |
categorical data; detecting mixtures and subpopulations; outlier-heavy data |
most-common color, most-frequent product category, MLE peak |
| When the mode is weak |
sums and convolutions (no additivity); flat distributions; small or sparse samples |
mode(X + Y) ≠ mode(X) + mode(Y); uniform has no unique mode |