Three measures describe where distributions center: mode, mean, and median. Each reveals different structural features.Quick Definitions
Mode: Peak location—where probability or density reaches maximumMean: Weighted balance point calculated from all valuesMedian: The 50th percentile that divides total probability equallySymmetric Distributions
When distributions mirror themselves around a center point, all three measures collapse to the same value.Normal distribution: mode = median = mean = μDiscrete Uniform on {1,2,3,4,5}: all three equal 3Perfect symmetry forces the peak, the balance point, and the probability split to occupy identical positions.Skewed Distributions
Asymmetry separates the three measures in consistent patterns.Right skew (tail stretches toward larger values):mode<median<mean Extreme large values drag the mean rightward. The median holds closer to the probability bulk. The mode stays fixed at the density peak.Exponential distribution: mode = 0, median = λln(2), mean = λ1Left skew (tail stretches toward smaller values):mean<median<mode The ordering reverses—mean pulled left, mode anchored at the right peak.Comparison Table
Comparing Mode, Mean, and Median
| Feature | Mode | Mean | Median |
|---|
| Calculation | Find maximum | Weight all values | Find 50th percentile |
| Uniqueness | Can have multiple | Single value | Single value (continuous) |
| Outlier impact | None | Strong | None |
| Data type | Any (including categorical) | Numerical only | Numerical only |
| Interpretation | Most likely value | Average outcome | Middle value |
,
## Robustness Differences
Mean: Vulnerable. One extreme observation can shift it substantially.
Median: Resistant. Values beyond the 50% threshold have no influence.
Mode: Immune. Tail behavior irrelevant unless it creates a new peak.
Income data illustrates this: billionaires inflate the mean drastically while leaving median and mode nearly unchanged.
Selection Criteria
Choose mode for:
• Categorical outcomes (colors, brands, types)
• Identifying the most frequent occurrence
• Detecting multiple concentration points
Choose mean for:
• Symmetric data without extreme values
• Leveraging mathematical properties (additivity, scaling)
• Incorporating all observations equally
Choose median for:
• Skewed distributions
• Data contaminated by outliers
• Representing a "central" value that's actually achievable
Spatial Relationships
Symmetric case: All three occupy the same point at distribution center.
Right-skewed case: Mode sits at the left peak, median slightly right, mean furthest right chasing the tail.
Left-skewed case: Reversed ordering with mean leftmost, mode rightmost.