MAD vs Standard Deviation

Both terms below come up in the same part of the course, and students mix them up. Here is each one defined on its own, side by side, so you can see where they part company.

Mean absolute deviation (MAD)

Describing data

The mean absolute deviation is the average distance between the data values and the mean, using absolute values instead of squares.

The mean absolute deviation answers one plain question: on average, how far does a value sit from the mean? You take each deviation, drop its sign, and average the results, which gives MAD=1nxixˉ\text{MAD} = \frac{1}{n}\sum |x_i - \bar{x}|, where xˉ\bar{x} (x-bar) is the mean and nn is the number of values. For the data 2, 4, 6, 8 the mean is 5, the absolute deviations are 3, 1, 1, and 3, and the MAD is 8/4=28/4 = 2. It reports spread in the original units the way the standard deviation does, but without squaring and then taking a square root.

Full entry for MAD

Standard deviation

Describing data

The standard deviation measures the typical distance of data values from the mean, in the same units as the data.

The standard deviation summarizes spread as the typical gap between a value and the mean. The sample standard deviation is s=1n1(xixˉ)2s = \sqrt{\frac{1}{n-1}\sum (x_i - \bar{x})^2}, where xix_i are the values, xˉ\bar{x} (x-bar) is the mean, and nn is the number of values. For example, a small ss means the data cluster tightly around the mean, while a large ss means they spread out widely. It is the square root of the variance, which returns the measure to the original units.

Full entry for standard deviation

Where each one fits in the course