Example 1 — Find Q1 and Q3
EasyProblem
For the ordered data , find Q1 and Q3.
Solution
-
We want the quarter cut points, so split at the median first.
Name the structure before touching arithmetic — that is what makes the right method obvious.
-
Ask the recognition question: Am I splitting ordered data into four groups that each contain the same fraction of the values?
If the answer is yes, the concept applies; the cue, not a keyword, decides the method.
-
Median splits into lower and upper ; take each half's median.
The rule is chosen only after the structure matches, so the steps mean something.
-
Q1 , Q3 .
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 — cut the sorted data into four equal parts. If it does not, revisit the recognition step before changing the arithmetic.
Answer
Q1 , Q3
Takeaway: Quartiles are the medians of the lower and upper halves of ordered data.