Example 1 — Spread of scores
EasyProblem
Find the MAD of the data set 6, 8, 10, 12, 14.
Solution
-
We want average distance from the mean, so first find the mean, then average the absolute deviations.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I averaging the ABSOLUTE distances of each value from the mean (not squared distances, not signed ones)?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Mean ; absolute deviations: .
The rule is chosen only after the structure matches, so the steps mean something.
-
.
Keep units, shape, or answer form tied to the story so the work does not become symbol pushing.
-
Check the answer against the original question.
It should fit the mental model — average distance from the center, no squaring. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: Average the absolute distances from the mean to get a same-units measure of spread.