Mean Absolute Deviation from the Mean
Mean absolute deviation (MAD) is the average of the absolute distances from each data value to the mean: add |x − mean| for every value, then divide by the number of values.
More key points
- Absolute values keep distances nonnegative, so deviations do not cancel.
On this page7 sections
The mean tells you a data set's arithmetic center, but not how tightly the observations cluster around it. Mean absolute deviation (MAD) summarizes that spread by finding each value's distance from the mean, making those distances positive, and averaging them. A smaller MAD means values are closer to the mean on average; a larger MAD means they are more spread out.
Calculate MAD in four steps
- Find the arithmetic mean of the data values.
- Subtract the mean from each value to get its deviation.
- Take the absolute value of each deviation so every distance is nonnegative.
- Add the absolute deviations and divide by the number of values.
For the values 2, 4, 6, the mean is (2 + 4 + 6)/3 = 4. Their deviations from the mean are −2, 0, and 2. The absolute deviations are 2, 0, and 2, with a total of 4. Divide by three values: MAD = 4/3, or about 1.33. On average, each observation is about 1.33 units from the mean.
The absolute-value step is essential. If you simply averaged the signed deviations, they would always sum to zero for a data set measured around its mean. Positive and negative differences would cancel, concealing the actual spread.
Compare two groups
Two groups can have the same mean but different variability. Set A: 8, 10, 12 has mean 10 and MAD (2 + 0 + 2)/3 = 4/3. Set B: 2, 10, 18 also has mean 10, but MAD (8 + 0 + 8)/3 = 16/3. Both center at 10, yet observations in set B are farther from that center on average.
MAD is expressed in the same units as the original data. If test scores are measured in points, MAD is in points. That makes its interpretation straightforward: it estimates a typical absolute distance from the mean, although it is not necessarily the distance of any actual observation.
MAD compared with range and standard deviation
The range uses only the minimum and maximum, while MAD uses every observation's distance from the mean. Standard deviation also summarizes distance from the mean, but it squares deviations before averaging and then takes a square root. Squaring gives relatively more influence to large deviations. MAD keeps deviations in their original scale and is easier to interpret directly.
MAD still depends on the mean, which can be pulled by an extreme value. It is less sensitive to extreme deviations than standard deviation's squaring step, but it is not a fully resistant measure. When a distribution is strongly skewed or contains outliers, median and interquartile range often provide a more resistant summary.
Read a table and avoid rounding errors
A frequency table requires each value's absolute deviation to be weighted by its frequency. If score 5 occurs three times, include its distance from the mean three times, or multiply that distance by 3. Divide the sum of weighted absolute deviations by the total frequency, not by the number of rows in the table.
For example, a table lists value 1 with frequency 2 and value 4 with frequency 1. There are three observations and the mean is (1 + 1 + 4)/3 = 2. The absolute deviations are 1 for each occurrence of 1 and 2 for the occurrence of 4, so the total is 1 + 1 + 2 = 4 and MAD = 4/3. In table form, use 2|1 − 2| + 1|4 − 2|, then divide by 2 + 1. The frequency weights the deviation, not just the original value.
Keep exact fractions or decimals through the calculation and round only at the end when asked. If the mean is 7.5 and the data value is 4, the absolute deviation is |4 − 7.5| = 3.5. The expression |7.5 − 4| gives the same result, but use one consistent subtraction convention.
Common errors
- Forgetting to calculate the mean before measuring distances.
- Leaving negative deviations negative so they cancel positive ones.
- Dividing by the number of distinct values instead of total observations in a frequency table.
- Reporting the sum of deviations instead of their average.
- Confusing mean absolute deviation with the median absolute deviation abbreviation sometimes also called MAD.
- Claiming that MAD describes the full range of the data.
The abbreviation MAD can refer to different statistics in advanced settings. In a basic mean absolute deviation question, the mean is the center unless the prompt explicitly specifies the median. Read the definition provided and follow the center the question names.
If a distribution has an extreme value, compare the mean and median before selecting a summary. The mean is pulled toward the extreme, and the deviations used in mean absolute deviation are then measured from that shifted center. MAD remains an average of absolute distances, but it does not have the same outlier resistance as median absolute deviation. For a long-tailed data set, a problem may ask for the median and IQR instead because those measures better represent a typical observation and the central spread.
Interpret the MAD in the data’s original units
Mean absolute deviation is the average of the absolute distances from the mean. For data 2, 4, and 6, the mean is 4 and the absolute deviations are 2, 0, and 2, so MAD = 4/3. The result uses the same units as the observations, unlike variance, which uses squared units.
The MAD gives a typical absolute distance from the mean, but it does not show whether deviations are above or below the center because signs are removed. Two distributions can share the same MAD yet have different shapes. Pair it with a graph or other summary when the question asks about skew, clusters, or extremes.
Exam takeaway
Find the mean, measure each observation's absolute distance from it, add those distances, and divide by the number of observations. Interpret MAD in the same units as the data. Use it to compare spread, while recognizing that range and standard deviation summarize variability differently.
Common questions
What is the formula for mean absolute deviation?
MAD = Σ|x − x̄|/n, the sum of absolute distances from the mean divided by the number of observations.
Why do you take absolute values?
Absolute values keep distances nonnegative so positive and negative deviations do not cancel.
Does MAD use the same units as the data?
Yes. If the data are in points, the mean absolute deviation is in points.
Is mean absolute deviation the same as standard deviation?
No. Both measure spread around the mean, but standard deviation squares deviations before averaging and taking a square root; MAD averages absolute distances.