Mean Absolute Deviation Formula

The Formula

\text{MAD} = \frac{\sum |x_i - \bar{x}|}{n}

When to use: Standard deviation can feel abstract with its squaring and square roots. MAD is simpler: just ask 'on average, how far is each data point from the center?' If the mean test score is 80 and the MAD is 5, a typical student scored about 5 points away from 80—some above, some below.

Quick Example

Data: 2, 4, 6, 8, 10. Mean = 6.
Deviations: |2-6|=4, \; |4-6|=2, \; |6-6|=0, \; |8-6|=2, \; |10-6|=4
\text{MAD} = \frac{4+2+0+2+4}{5} = \frac{12}{5} = 2.4

Notation

|x_i - \bar{x}| is the absolute deviation of value x_i from the mean \bar{x}

What This Formula Means

The average distance between each data value and the mean of the data set. Calculated by finding the mean, computing the absolute value of each deviation from the mean, and averaging those absolute deviations.

Standard deviation can feel abstract with its squaring and square roots. MAD is simpler: just ask 'on average, how far is each data point from the center?' If the mean test score is 80 and the MAD is 5, a typical student scored about 5 points away from 80—some above, some below.

Formal View

\text{MAD} = \frac{1}{n}\sum_{i=1}^{n} |x_i - \bar{x}| where \bar{x} = \frac{1}{n}\sum_{i=1}^{n} x_i

Worked Examples

Example 1

easy
Calculate the Mean Absolute Deviation (MAD) for \{2, 5, 7, 10, 6\} and explain what it measures.

Solution

  1. 1
    Mean: \bar{x} = (2+5+7+10+6)/5 = 30/5 = 6
  2. 2
    Absolute deviations: |2-6|=4, |5-6|=1, |7-6|=1, |10-6|=4, |6-6|=0
  3. 3
    MAD = \frac{4+1+1+4+0}{5} = \frac{10}{5} = 2
  4. 4
    Interpretation: on average, each value is 2 units away from the mean

Answer

MAD = 2. On average, each data point deviates from the mean by 2 units.
MAD measures the average absolute distance of data points from the mean. Unlike variance (which squares deviations), MAD keeps deviations in the original units. It is more interpretable than variance and more resistant to extreme values than variance.

Example 2

medium
Compare MAD and standard deviation for the data \{1, 5, 5, 5, 9\}. Calculate both and explain when MAD is preferred.

Common Mistakes

  • Forgetting absolute values: deviations from the mean always sum to zero without them
  • Dividing by the wrong number: MAD uses n (the number of data points), not n-1
  • Confusing MAD with standard deviation—MAD uses absolute values, SD uses squared values

Why This Formula Matters

MAD is the most accessible measure of variability for middle school students. It builds intuition about spread before introducing the more complex standard deviation, and it's used in real data analysis for robust estimation.

Frequently Asked Questions

What is the Mean Absolute Deviation formula?

The average distance between each data value and the mean of the data set. Calculated by finding the mean, computing the absolute value of each deviation from the mean, and averaging those absolute deviations.

How do you use the Mean Absolute Deviation formula?

Standard deviation can feel abstract with its squaring and square roots. MAD is simpler: just ask 'on average, how far is each data point from the center?' If the mean test score is 80 and the MAD is 5, a typical student scored about 5 points away from 80—some above, some below.

What do the symbols mean in the Mean Absolute Deviation formula?

|x_i - \bar{x}| is the absolute deviation of value x_i from the mean \bar{x}

Why is the Mean Absolute Deviation formula important in Math?

MAD is the most accessible measure of variability for middle school students. It builds intuition about spread before introducing the more complex standard deviation, and it's used in real data analysis for robust estimation.

What do students get wrong about Mean Absolute Deviation?

Don't forget the absolute value! Without it, positive and negative deviations cancel out, and you always get zero.

What should I learn before the Mean Absolute Deviation formula?

Before studying the Mean Absolute Deviation formula, you should understand: mean, absolute value.