Overview
The mean, median, and mode are three measures of central tendency—ways to describe the "center" of a dataset.
Definitions
| Measure | Definition | When to Use |
|---|---|---|
| Mean | Arithmetic average | Symmetric data, no outliers |
| Median | Middle value | Skewed data, ordinal data |
| Mode | Most frequent value | Categorical data, bimodal |
Formulas
Arithmetic Mean
For a dataset with values:
Population Mean
Weighted Mean
Median Calculation
- Order the data from smallest to largest
- If is odd: median = middle value
- If is even: median = average of two middle values
Examples
Odd number of values (5 values): 2, 5, 7, 9, 12
- Position:
- Median = 7 (the 3rd value)
Even number of values (6 values): 2, 5, 7, 9, 12, 15
- Positions: 3rd and 4th values
- Median =
Mode
The value(s) that appear most frequently.
| Type | Description |
|---|---|
| Unimodal | One mode |
| Bimodal | Two modes |
| Multimodal | Multiple modes |
| No mode | All values appear equally |
Properties
Mean Properties
- Uses all data values
- Affected by outliers
- Sum of deviations from mean = 0:
- Can be calculated for interval/ratio data
Median Properties
- Not affected by outliers
- 50% of data above, 50% below
- Can be calculated for ordinal, interval, or ratio data
Mode Properties
- Can be used for categorical data
- Not affected by outliers
- May not exist or may not be unique
Relationship in Distributions
| Distribution | Relationship |
|---|---|
| Symmetric | Mean ≈ Median ≈ Mode |
| Right-skewed | Mode < Median < Mean |
| Left-skewed | Mean < Median < Mode |
Choosing the Right Measure
| Situation | Best Measure |
|---|---|
| Normal distribution | Mean |
| Skewed distribution | Median |
| Outliers present | Median |
| Categorical data | Mode |
| Ordinal data | Median or Mode |
Examples
Example 1: Test Scores
Data: 85, 90, 78, 92, 88, 85, 95, 85
Ordered: 78, 85, 85, 85, 88, 90, 92, 95
Example 2: With Outlier
Salaries: $40k, $42k, $45k, $48k, $200k
The median ($45k) better represents typical salary.
Example 3: Weighted Mean
Grades: Homework (20%): 90, Midterm (30%): 80, Final (50%): 85