How to Find Mean Absolute Deviation- Calculation Steps and Examples

What Is Mean Absolute Deviation?

Mean Absolute Deviation (MAD) measures how spread out a set of numbers is from their average. Unlike variance or standard deviation, MAD gives you the average distance between each data point and the mean — in plain numbers you can actually interpret.

It's useful when you want to understand variability without dealing with squared or rooted values. No squaring. No square roots. Just absolute differences.

The Formula

Here's the MAD formula in its simplest form:

MAD = Σ|x - μ| / n

Where:

Step-by-Step Calculation

Step 1: Find the Mean

Add up all your data points and divide by how many there are.

Step 2: Calculate Each Deviation

Subtract the mean from each individual data point. This gives you positive or negative numbers.

Step 3: Take Absolute Values

Ignore whether each deviation is positive or negative. Drop the negative sign on any negative values. Every deviation becomes positive.

Step 4: Sum the Absolute Deviations

Add up all the absolute deviations.

Step 5: Divide by the Number of Data Points

Take that sum and divide by n. That's your MAD.

Example 1: Small Data Set

Test scores: 70, 85, 92, 78, 88

Step 1: Find the Mean

(70 + 85 + 92 + 78 + 88) ÷ 5 = 413 ÷ 5 = 82.6

Step 2: Calculate Deviations

Score (x)x - Mean (82.6)|x - Mean|
7070 - 82.6 = -12.612.6
8585 - 82.6 = 2.42.4
9292 - 82.6 = 9.49.4
7878 - 82.6 = -4.64.6
8888 - 82.6 = 5.45.4

Step 3: Sum Absolute Deviations

12.6 + 2.4 + 9.4 + 4.6 + 5.4 = 34.4

Step 4: Divide by Number of Values

34.4 ÷ 5 = 6.88

These test scores have a MAD of 6.88. On average, each score sits 6.88 points away from the mean of 82.6.

Example 2: Real-World Scenario

Daily sales at a small store over a week: $320, $450, $380, $520, $410, $290, $470

Step 1: Find the Mean

(320 + 450 + 380 + 520 + 410 + 290 + 470) ÷ 7 = 2840 ÷ 7 = $405.71

Step 2 & 3: Calculate and Take Absolute Values

DaySalesDeviation|Deviation|
Mon$320-85.7185.71
Tue$45044.2944.29
Wed$380-25.7125.71
Thu$520114.29114.29
Fri$4104.294.29
Sat$290-115.71115.71
Sun$47064.2964.29

Step 4: Sum and Divide

Sum of absolute deviations = 454.29

MAD = 454.29 ÷ 7 = $64.90

Daily sales deviate from the average by about $65. That's useful for forecasting — you know to expect swings of roughly $65 from your typical $406 daily revenue.

MAD vs. Standard Deviation

Both measure spread, but they work differently:

FeatureMean Absolute DeviationStandard Deviation
Uses absolute valuesYesNo (uses squares)
Uses square rootsNoYes
InterpretabilityDirect (same units as data)Less intuitive for non-statisticians
Outlier sensitivityModerateHigh (squares amplify outliers)
Common useFinance, forecasting, quality controlResearch, academic statistics

MAD is easier to explain to someone who doesn't work with stats. "On average, values are 6.8 units away from the mean" makes sense. Standard deviation doesn't give you that direct interpretation.

Common Mistakes to Avoid

Getting Started: How to Calculate MAD in Practice

Here's a quick process you can apply to any data set:

  1. Write down your data in a list or column
  2. Calculate the mean by summing all values and dividing by the count
  3. Subtract the mean from each value individually
  4. Convert each difference to its absolute value (remove any negative signs)
  5. Add all absolute deviations together
  6. Divide by the number of data points

You can do this with a basic calculator, spreadsheet software like Excel or Google Sheets, or by hand for small data sets. In spreadsheets, you'd use the formula: =SUM(ABS(A1:An - AVERAGE(A1:An))) / n

When to Use Mean Absolute Deviation

MAD works best when:

It's less appropriate when extreme values are the point of your analysis — in those cases, standard deviation or variance might serve you better since they weight outliers more heavily.