- Home
- /
- Statistics
- /
- center spread and distributions
- /
- Quartiles
Quartiles are values that divide ordered data into four equal parts: Q_1 (25th percentile) marks the boundary below which 25% of data falls, Q_2 (the median, 50th percentile) splits the data in half, and Q_3 (75th percentile) marks the boundary below which 75% falls. Quartiles tell you more than just the middle - they show how data spreads across the full range.
Definition
Quartiles are values that divide ordered data into four equal parts: Q_1 (25th percentile) marks the boundary below which 25% of data falls, Q_2 (the median, 50th percentile) splits the data in half, and Q_3 (75th percentile) marks the boundary below which 75% falls.
๐ก Intuition
If you line up 100 people by height and divide into 4 equal groups, quartiles mark the dividing points. Q_1 is where the shortest 25% ends, Q_2 is the middle, Q_3 is where the tallest 25% begins.
๐ฏ Core Idea
Quartiles split sorted data into four equal quarters. Q1 is the 25th percentile, Q2 is the median (50th percentile), and Q3 is the 75th percentile.
Example
Notation
Q_1 is the first quartile (25th percentile), Q_2 is the second quartile (median), and Q_3 is the third quartile (75th percentile). The IQR = Q_3 - Q_1.
๐ Why It Matters
Quartiles tell you more than just the middle - they show how data spreads across the full range.
๐ญ Hint When Stuck
First, sort all data from smallest to largest. Then find the median (Q2) which splits the data into two halves. Finally, find Q1 as the median of the lower half and Q3 as the median of the upper half.
Formal View
Related Concepts
See Also
๐ง Common Stuck Point
Different textbooks use slightly different methods for computing Q1 and Q3 โ always check which method is being used to avoid calculation discrepancies.
โ ๏ธ Common Mistakes
- Including median when calculating Q_1/Q_3
- Confusing with percentiles
- Not ordering data first
Frequently Asked Questions
What is Quartiles in Statistics?
Quartiles are values that divide ordered data into four equal parts: Q_1 (25th percentile) marks the boundary below which 25% of data falls, Q_2 (the median, 50th percentile) splits the data in half, and Q_3 (75th percentile) marks the boundary below which 75% falls.
When do you use Quartiles?
First, sort all data from smallest to largest. Then find the median (Q2) which splits the data into two halves. Finally, find Q1 as the median of the lower half and Q3 as the median of the upper half.
What do students usually get wrong about Quartiles?
Different textbooks use slightly different methods for computing Q1 and Q3 โ always check which method is being used to avoid calculation discrepancies.
Prerequisites
Next Steps
How Quartiles Connects to Other Ideas
To understand quartiles, you should first be comfortable with median intro. Once you have a solid grasp of quartiles, you can move on to stat box plot and stat interquartile range.