Example 1 — Median of six values
EasyProblem
Find the median of .
Solution
-
The list is already ordered and is even, so two values share the middle.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: After sorting the data smallest to largest, what value sits exactly in the middle?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Locate the two middle values (3rd and 4th) and average them.
The rule is chosen only after the structure matches, so the steps mean something.
-
Middle values are and , so .
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 — the middle of the line-up. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Takeaway: With an even count, the median is the average of the two center values.