⚡
Memory Point
MEAN = average (sensitive to outliers)
MEDIAN = middle value (best for skewed data)
MODE = most frequent (best for categories)
▸ Worked Example
Data: 3, 7, 7, 9, 100. Find mean, median, mode.
Mean = (3+7+7+9+100)/5 = 126/5 = 25.2 (distorted by 100)
Median = middle value = 7 (more representative)
Mode = 7 (appears most)
→ With the outlier 100, median is best measure here
⚠️
Trap: Forgetting to SORT the data before finding median! Always order from smallest to largest first.
▸ Your Turn
Data: 5, 2, 8, 2, 15, 4, 2. Find the mean, median, and mode.
💡 Sort first! Which measure would you use for house prices in a neighbourhood?