Sitonce
Country: HK
Show exams for United States Hong Kong
Sign in

Mean Absolute Deviation and Data Spread

Updated 6 min read
Key takeaway

Mean absolute deviation (MAD) is the average distance of data values from the mean.

More key points
  • Find the mean, subtract it from each value, take the absolute value of every difference, and average those distances.
  • A larger MAD means values are more spread out around the mean in the data’s original units.
On this page10 sections
  1. The formula in plain language
  2. Calculate MAD step by step
  3. Worked example
  4. Compare two data sets with the same center
  5. What MAD says about variability
  6. How an outlier affects MAD
  7. Mean absolute deviation versus standard deviation and range
  8. A common interpretation trap
  9. Common mistakes
  10. Exam takeaway

Two groups can have the same mean but differ in how tightly their values cluster. The mean tells you the center; a measure of spread describes variability around it. Mean absolute deviation, often abbreviated MAD, gives the average distance between each data value and the mean. Because it uses absolute distances, values above and below the mean do not cancel each other out.

The formula in plain language

For a data set with n values x₁ through xₙ and mean x̄, the mean absolute deviation about the mean is MAD = [|x₁ − x̄| + |x₂ − x̄| + … + |xₙ − x̄|] / n. In words: calculate how far each value is from the mean, ignore whether it is above or below by using absolute value, add those distances, and divide by the number of values.

The sequence matters. Do not average the signed deviations: their sum is always zero when measured around the arithmetic mean. Do not square the deviations and take a square root either; that is the core idea behind standard deviation. MAD keeps each distance linear and easy to interpret in the same units as the original observations.

Calculate MAD step by step

  1. Add the data values and divide by their count to find the mean.
  2. Subtract the mean from each value to get its deviation.
  3. Take the absolute value of each deviation so every distance is nonnegative.
  4. Add the absolute deviations.
  5. Divide by the number of observations.
  6. Write the answer in the same units as the data and interpret it as an average distance from the mean.

Worked example

Find the MAD for the quiz scores 2, 4, 6, and 8. First find the mean: (2 + 4 + 6 + 8) / 4 = 5. Next calculate each absolute distance from 5: |2 − 5| = 3, |4 − 5| = 1, |6 − 5| = 1, and |8 − 5| = 3. Their sum is 8, and 8 / 4 = 2. The mean absolute deviation is 2 score points. In this small set, a typical value is on average two points away from the mean of five.

A table can make the arithmetic easier to audit:

ValueDeviation from mean 5Absolute deviation
22 − 5 = −33
44 − 5 = −11
66 − 5 = 11
88 − 5 = 33
Total8

The negative deviations are not errors; they show which values fall below the mean. Absolute value removes the sign only when measuring distance. Keep the sign in the deviation column if it helps you check the subtraction, then use nonnegative values in the total.

Compare two data sets with the same center

Set A is 2, 4, 6, 8. Set B is 2, 5, 5, 8. Both have mean 5, and both have a range of 6. But Set A’s absolute deviations are 3, 1, 1, 3, giving MAD 2. Set B’s absolute deviations are 3, 0, 0, 3, giving MAD 1.5. Set B’s values sit closer to the mean on average, even though the minimum and maximum are the same.

That comparison shows why one measure is not enough to describe every feature. The range uses only the smallest and largest values. MAD uses the distance of every observation from the mean. A set can share a range with another set yet have a different pattern among its middle observations.

What MAD says about variability

A lower MAD means data values, on average, lie closer to the mean. A higher MAD means their typical absolute distance is larger. The comparison is most straightforward when the groups use the same measurement units and a comparable scale. If one class has an MAD of 2 points and another has an MAD of 8 points, the second class shows more average spread in those score units.

MAD is not the distance of every value from the mean. Some values may be closer and others farther away. Nor does it say what direction the data vary; absolute distance is nonnegative. It does not reveal the distribution’s shape by itself. Use a graph, a center measure, and other summaries when a problem asks for more than average spread.

How an outlier affects MAD

An outlier can increase MAD because it contributes a large absolute distance. For the data 1, 2, 3, 4, 10, the mean is 4. The absolute deviations are 3, 2, 1, 0, and 6. Their sum is 12, so MAD = 12/5 = 2.4. The value 10 pulls the mean upward and also sits six units away from it.

MAD uses absolute distances, so an extreme value affects the total in proportion to its distance rather than the square of its distance. Standard deviation squares deviations before averaging, which gives especially large distances more weight. Neither measure is immune to outliers. The median absolute deviation is a different robust statistic centered on the median; check how a problem defines “MAD” if the context is advanced.

Mean absolute deviation versus standard deviation and range

Range is maximum minus minimum. It is quick but ignores all values between the extremes. Mean absolute deviation averages absolute distances from the mean. Standard deviation is based on squared deviations and then returns to the original units by taking a square root. All three describe spread, but they are calculated differently and can respond differently to unusual data.

In a basic data question, follow the named measure exactly. If asked for range, do not calculate MAD. If asked for mean absolute deviation, do not divide the squared deviations or take a square root. If comparing two groups, identify the statistic’s units and what a larger or smaller value means before choosing the interpretation.

A common interpretation trap

Suppose two distributions have the same mean but MAD values of 3 and 7. The second distribution has greater average absolute distance from its mean. That does not mean every observation in it is farther from the mean, and it does not mean its average is higher. The center is unchanged; the spread differs. Avoid converting a statement about an average distance into a claim about every individual value.

Common mistakes

  • Taking the absolute value before subtracting. Compute each difference from the mean first, then take its absolute value.
  • Forgetting to find the mean from the data set before finding the deviations.
  • Adding signed deviations, which cancel to zero around the mean.
  • Dividing by one fewer than the number of data values. The basic descriptive MAD calculation divides by n.
  • Confusing mean absolute deviation with median absolute deviation or standard deviation.
  • Saying every data value is exactly MAD units from the mean. MAD is an average distance.

Exam takeaway

Mean absolute deviation is a five-step calculation: mean, deviations, absolute values, sum, divide by the count. The result estimates the average distance of observations from the mean, in the original units. When comparing groups, a larger MAD indicates more average spread; it does not change the meaning of the mean or describe every individual value.

Common questions

Why do you take the absolute value of each deviation?

Values above and below the mean have positive and negative signed deviations that cancel. Absolute values turn both into distances so they can be averaged as spread.

Does mean absolute deviation use the same units as the data?

Yes. It averages distances measured in the original units, such as points, minutes, or inches.

Is mean absolute deviation the same as median absolute deviation?

No. Mean absolute deviation about the mean averages distances from the mean. Median absolute deviation typically uses the median as its center and is a different statistic.