MAD Example in Math- Understanding Mean Absolute Deviation
What Is Mean Absolute Deviation?
Mean Absolute Deviation (MAD) is a simple way to measure how spread out numbers are in a dataset. It tells you the average distance between each data point and the mean of the set.
No complicated squaring. No square roots. Just subtraction and division.
That's it. That's the whole appeal.
Why MAD Instead of Standard Deviation?
Standard deviation gets all the attention. But MAD is easier to interpret.
When you calculate standard deviation, you square the deviations. That means outliers get disproportionately weighted. One crazy value can tank your entire measure.
MAD treats every deviation equally. A distance of 5 counts as 5, not 25. This makes it more robust and intuitive for basic analysis.
How to Calculate MAD
Follow these steps in order:
- Find the mean (average) of your dataset
- Subtract the mean from each value to get individual deviations
- Take the absolute value of each deviation (drop the negative signs)
- Add all absolute deviations together
- Divide by the number of data points
Example: Test Scores
Your math class scored: 70, 75, 80, 85, 90
Step 1: Find the mean
(70 + 75 + 80 + 85 + 90) ÷ 5 = 80
Step 2: Calculate deviations from the mean
70 - 80 = -10
75 - 80 = -5
80 - 80 = 0
85 - 80 = 5
90 - 80 = 10
Step 3: Take absolute values
10, 5, 0, 5, 10
Step 4: Sum the absolute deviations
10 + 5 + 0 + 5 + 10 = 30
Step 5: Divide by number of data points
30 ÷ 5 = 6
The MAD is 6. On average, test scores deviate 6 points from the mean of 80.
When to Use MAD
MAD works best when:
- You need a quick measure of variability
- Your data has outliers you don't want to overweight
- You're teaching beginners (it's easier to explain than variance)
- You want interpretable results in the same units as your original data
MAD is less useful when you need to apply it in advanced statistical models, since absolute values create mathematical complications in further calculations.
MAD vs Standard Deviation
Here's how they compare using the same dataset:
| Measure | Formula Complexity | Outlier Sensitivity | Interpretability |
|---|---|---|---|
| MAD | Simple (subtract, absolute, average) | Low | Directly in original units |
| Standard Deviation | Complex (square, sum, divide, square root) | High | Less intuitive for non-statisticians |
Both measure spread. Neither is "better" universally. It depends on your data and your goal.
Common Mistakes
Forgetting absolute values. Deviations sum to zero by definition. That's why you must take absolute values. Skip this step and your MAD will always be zero.
Confusing MAD with mean deviation. They're the same thing. Some textbooks use "mean absolute deviation," others say "mean deviation." Same calculation.
Rounding too early. Keep decimals during calculation. Round only your final answer.
Quick Reference: MAD Calculation
For any dataset with n values:
MAD = (Σ |xi - x̄|) ÷ n
Where:
- xi = each individual value
- x̄ = the mean of all values
- Σ = sum of all
- n = number of values
That's your formula. Memorize it or write it down. Either way works.
Bottom Line
MAD gives you the average distance from the mean. It's straightforward, resistant to outliers, and easy to calculate by hand. If standard deviation feels like overkill for what you need, MAD is your alternative.
Use it when simplicity matters more than statistical sophistication.