What is mean absolute deviation?
The mean absolute deviation (MAD) of a data set is the average distance between each value and the mean of the set. It answers a simple question: "on average, how far are my data points from their center?" Because it is expressed in the same units as the original data, MAD is one of the most intuitive ways to describe how spread out a set of numbers is.
The formula
For a data set x₁, x₂, …, xₙ with mean x̄:
MAD = (1/n) · Σ |xᵢ − x̄|
In words: compute the mean, subtract it from every value, take the absolute value of each difference (so negative and positive deviations do not cancel), add those absolute deviations together, and divide by the number of points, n.
Worked example
Take the data set 4, 8, 6, 5, 3, 10, 9, 7 (n = 8). The sum is 52, so the mean is 52 ÷ 8 = 6.5. The absolute deviations from 6.5 are 2.5, 1.5, 0.5, 1.5, 3.5, 3.5, 2.5, 0.5, which add up to 16. Dividing by 8 gives MAD = 16 ÷ 8 = 2. So on average each value sits 2 units away from the mean of 6.5.
MAD vs. standard deviation
Both statistics measure spread, but they treat deviations differently. Standard deviation squares each deviation, averages the squares, and takes a square root — which magnifies large deviations and makes it sensitive to outliers. MAD simply averages the raw absolute deviations, so it is more robust and easier to explain. For data drawn from a normal distribution the two are related by MAD ≈ 0.7979 × standard deviation (that constant is √(2/π)). MAD is never larger than the standard deviation for the same data.
Why use MAD?
- Interpretability: it is a plain average distance, in the data's own units — no squaring or square roots to explain.
- Robustness: it is less inflated by a single extreme value than standard deviation or variance.
- Teaching: it is commonly introduced in middle- and high-school statistics as a first measure of variability before variance and standard deviation.