Overview
Percentiles and quartiles describe the position of a value within a dataset, telling us what percentage of data falls below that value.
Definitions
| Term | Definition | Notation |
|---|---|---|
| Percentile | Value below which a given % falls | |
| Quartile | Divides data into 4 equal parts | |
| Decile | Divides data into 10 equal parts |
Percentiles
Definition
Key Percentiles
| Percentile | Also Known As | Meaning |
|---|---|---|
| , First quartile | 25% below | |
| , Median | 50% below | |
| , Third quartile | 75% below | |
| , First decile | 10% below | |
| , Ninth decile | 90% below |
Percentile Calculation
Locator Formula
For the -th percentile:
Interpolation
If (where is integer, is decimal):
Example
Data (sorted): 12, 15, 18, 22, 25, 28, 32, 35 ()
Find :
Quartiles
Definitions
| Quartile | Percentile | Description |
|---|---|---|
| First quartile | ||
| Second quartile (median) | ||
| Third quartile |
Method 1: Median of Halves
- Find the median ()
- = median of values below
- = median of values above
Method 2: Position Formula
Calculating Quartiles Example
Data: 3, 7, 8, 12, 13, 14, 18, 21, 23, 27 ()
Lower half: 3, 7, 8, 12, 13
Upper half: 14, 18, 21, 23, 27
Z-Score and Percentiles
For normal distributions:
| Z-Score | Percentile |
|---|---|
| -3 | 0.13 |
| -2 | 2.28 |
| -1 | 15.87 |
| 0 | 50 |
| 1 | 84.13 |
| 2 | 97.72 |
| 3 | 99.87 |
Converting z-score to percentile for normal distribution:
Where is the standard normal CDF.
Applications
| Use Case | Percentile/Quartile |
|---|---|
| Standardized tests | SAT, GRE percentile ranks |
| Growth charts | Height/weight percentiles |
| Income distribution | Household income quartiles |
| Academic rankings | Class rank percentile |
Interpreting Percentiles
"A score at the 90th percentile" means:
- 90% of scores are at or below this value
- 10% of scores are above this value
- NOT the same as "scoring 90%"
Comparing Methods
Different software may use different methods:
| Method | Description |
|---|---|
| Inclusive | Uses all data for each half |
| Exclusive | Excludes median from halves |
| Linear interpolation | Interpolates between values |
Always specify the method when precision matters!