Key Takeaways
- Measures of dispersion tell how “spread out” data is, not just the center.
- Use range for a quick sense of spread, IQR for messy/outlier data, and SD for typical spread around the mean.
- In many classes: symmetric data → mean + SD; skewed/outliers → median + IQR.
Measures of dispersion can feel confusing because there are several choices (range, IQR, variance, standard deviation). You’re not behind. You just need a clear method.
You’ll learn what each one means, how to compute them step-by-step, and when to report what—plus worked examples.

Quick answer
Measures of dispersion are numbers that describe how spread out your data is. Common ones are range, interquartile range (IQR), variance, and standard deviation (SD).
Use IQR when your data is skewed or has outliers (extreme values). Use SD when the data is fairly balanced around the mean and you want “typical distance from the mean.”
What “dispersion” means (simple definition)
Dispersion (spread of data) means how far values are from each other and from the center. It is also called variability.
Two sets can have the same mean (average value) but totally different spread—so you need dispersion too.

The 4 main measures (what they mean and formulas)
1) Range (fast but sensitive)
Range (max − min) is the distance from the smallest to the largest value.
- Good for: quick comparisons
- Weakness: one extreme value can change it a lot
2) Interquartile Range (IQR) (strong with outliers)
Quartiles (cut points that split ordered data into 4 parts).
IQR (middle 50% spread) is: IQR = Q3 − Q1.
- Good for: skewed data, outliers
- Why: it ignores the extreme ends
3) Variance (spread in “squared units”)
Variance (average squared distance from the mean).
- Population variance: σ² = Σ(x − μ)² / N
- Sample variance: s² = Σ(x − x̄)² / (n − 1)
Variance is useful in formulas, but it’s in squared units, so it’s harder to “feel” in real life.
4) Standard deviation (SD) (most used)
Standard deviation (typical distance from the mean).
- Population SD: σ = √(σ²)
- Sample SD: s = √(s²)
SD is popular because it goes back to the original units (like points, cm, minutes).
Read also: Understanding Standard Deviation
When to report what (the fast rule)
The pairing rule (common in classes)
- If the data looks fairly symmetric (not lopsided): report mean + SD.
- If the data is skewed or has outliers: report median + IQR.
Quick comparison table
| Situation | Best “center” to report | Best “spread” to report | Why |
|---|---|---|---|
| Balanced/symmetric data | Mean (average value) | SD (typical distance) | SD uses all values well when extremes don’t dominate |
| Skewed or outliers | Median (middle value) | IQR (middle 50%) | IQR is less affected by extremes |
| Need a fast rough spread | Mean or median | Range (max−min) | Very quick, but can be “hijacked” by one extreme |

Step-by-step method
Step 0: Put your data in order
Sort from smallest to largest. This helps with range and IQR.
Step 1: Compute range
- Find max and min
- Range = max − min
Step 2: Compute IQR
- Find Q1 (25th percentile)
- Find Q3 (75th percentile)
- IQR = Q3 − Q1
Step 3: Compute sample SD (by hand)
- Find the mean x̄ (average value).
- Subtract: (x − x̄) for each value
- Square each: (x − x̄)²
- Add them: Σ(x − x̄)²
- Divide by n − 1 to get variance s²
- Square root: s = √s²
Why do we divide by (n − 1) for a sample?
Sample SD uses n − 1 because your sample mean is already “fit” to your data, which makes distances look a bit smaller than they would be in the full population. Dividing by n − 1 corrects that shrink effect. (This is called Bessel’s correction.)
What to write on your paper (mini-checklist)
- Data (sorted): ________
- Range = max − min = ________
- Q1 = ________, Q3 = ________ → IQR = Q3 − Q1 = ________
- Mean x̄ = ________
- Table of (x − x̄) and (x − x̄)²
- s² = Σ(x − x̄)² / (n − 1) = ________
- s = √s² = ________
Quick self-check (to catch errors fast)
- Range and IQR should never be negative.
- SD should be 0 or positive (0 only if all values are the same).
- If your SD is huge, check if you forgot to square root (you might still have variance).
- If your calculator SD doesn’t match, check whether it used population or sample SD.

Worked examples
Example 1: Range
Data: 3, 5, 6, 6
- min = 3, max = 6
- Range = 6 − 3 = 3
Why: It’s just “largest minus smallest.”
Example 2: IQR
Data (sorted): 2, 3, 3, 4, 7, 9, 10, 10
- Lower half: 2, 3, 3, 4 → Q1 = (3 + 3)/2 = 3
- Upper half: 7, 9, 10, 10 → Q3 = (9 + 10)/2 = 9.5
- IQR = Q3 − Q1 = 9.5 − 3 = 6.5
Why: IQR measures the spread of the middle 50%.
Example 3: Sample SD
Data: 4, 6, 8
- Mean: x̄ = (4 + 6 + 8)/3 = 18/3 = 6
- Differences:
- 4 − 6 = −2
- 6 − 6 = 0
- 8 − 6 = 2
- Squares: 4, 0, 4 → sum = 8
- Variance: s² = 8/(n − 1) = 8/2 = 4
- SD: s = √4 = 2
Why: SD is the square root of variance.
Example 4: Outlier changes range a lot
Data A: 10, 11, 12, 13, 14
- Range = 14 − 10 = 4
Data B: 10, 11, 12, 13, 100
- Range = 100 − 10 = 90
Why this matters: Range can explode because of one outlier. That’s why IQR is often safer with outliers.
Practice set (with answer key)
Directions
For each data set, compute what the question asks.
- 5, 7, 8, 9: Find the range
- 2, 2, 3, 3, 10: Find the range
- 1, 2, 2, 3, 4, 6, 7, 9: Find IQR
- 4, 6, 8: Find sample SD
- 10, 10, 10, 10: Find sample SD
- 3, 4, 4, 5, 9, 20: Find IQR
- (Trap) 1, 1, 1, 1, 50: Which is more useful here, SD or IQR? Why?
- You have skewed test-score data. Which pair should you report: mean+SD or median+IQR?
Answer key (short)
- 9 − 5 = 4
- 10 − 2 = 8
- Q1 = 2, Q3 = 7 → IQR = 5
- From Example 3: 2
- All same → SD = 0
- Short solution: Sorted: 3,4,4,5,9,20. Lower half 3,4,4 → Q1=4. Upper half 5,9,20 → Q3=9. IQR=9−4=5
- IQR, because one extreme value (50) can distort SD.
- Median + IQR

Common mistakes
| Mistake | Why it happens | Do this instead |
|---|---|---|
| Using range as the “main” spread with outliers | One extreme value changes max or min a lot | Use IQR when outliers are present |
| Mixing up variance and SD | Variance is SD squared | After variance, take the square root for SD |
| Dividing by n for a sample SD | Calculator or formula confusion | For a sample, use n − 1 |
| Getting a negative spread | Subtraction order error | Use max − min; use Q3 − Q1 (bigger minus smaller) |
| Finding quartiles on unsorted data | Quartiles depend on order | Sort first, then find Q1 and Q3 |
If you get stuck…
- “I don’t know what formula to use.”
Check the goal: quick spread (range), outlier-safe spread (IQR), typical spread around mean (SD). - “My answer is negative but it shouldn’t be.”
Re-check subtraction order: max − min, Q3 − Q1. - “I keep mixing up steps.”
Use the paper checklist section above and do it in the same order every time. - “My calculator gives a different value.”
Make sure you selected sample SD (n−1) vs population SD (n). - “I think my data is skewed.”
Compare mean and median: if they’re far apart, skew is likely. Then consider median + IQR.
If you still feel stuck after checking steps, it’s okay to ask your teacher how they want quartiles computed (different classes use slightly different quartile rules).
Study tools that can help
- If you want faster checking, use a descriptive statistics calculator to verify SD, variance, and quartiles after you do it by hand.
- If you get distracted during math notes, a clean notebook and a simple layout can make your steps easier to follow (especially for SD tables).
Next steps
- Standard Deviation Calculator — Go deeper on SD, formulas, and calculator differences.
- Descriptive Statistics Calculator — Check your mean, SD, variance, quartiles, and IQR quickly.
- Best High-Quality Notebooks for Math Notes — If your work gets messy, a better notes setup can reduce step errors.
- Mean, Median, Mode (guide) — (Anchor text prepared) Review center measures so you can pair center + spread correctly.
How we know
- Definitions and procedures align with widely used intro statistics materials (including OpenStax).
- SD and spread interpretations match standard textbook explanations of variation.
- IQR definition and formula match standard quartile-based summaries.
- Guidance on skew and mean-vs-median comes from reputable public health education material.
Use this the right way
Use this guide to understand the ideas and practice the steps. For homework and projects, show your work and explain your choice of measure (like “median + IQR because of outliers”). If you write a research report, cite any definitions or methods you use.
References
OpenStax. (2023). Introductory statistics 2e: 2.7 Measures of the spread of the data. https://openstax.org/books/introductory-statistics-2e/pages/2-7-measures-of-the-spread-of-the-data
Khan Academy. (n.d.). Range, variance, and standard deviation as measures of dispersion. https://www.khanacademy.org/math/statistics-probability/summarizing-quantitative-data/variance-standard-deviation-population/v/range-variance-and-standard-deviation-as-measures-of-dispersion
Manikandan, S. (2011). Measures of dispersion. Journal of Pharmacology & Pharmacotherapeutics, 2(4), 315–316. https://pmc.ncbi.nlm.nih.gov/articles/PMC3198538/


