Position measures tell you where a value ranks within a dataset. If you scored at the 80th percentile, you did better than 80% of everyone. Quartiles divide sorted data into four equal chunks: Q1 (25th percentile), Q2 = median (50th), Q3 (75th). The IQR = Q3 − Q1 captures the middle 50% of data and is used to flag outliers — any value below Q1 − 1.5·IQR or above Q3 + 1.5·IQR is considered a potential outlier. A z-score tells how many standard deviations a value is from the mean: z = 0 means exactly at the mean, z = 2 means two standard deviations above it.
$$z=\frac{x-\mu}{\sigma}, \quad IQR=Q_3-Q_1$$
Quartile Position
For the ordered data 5, 8, 9, 12, 15, 18, 20, 24, 30, find $Q_1$ and $Q_3$ using the median-of-halves method.