Interquartile Range Formula
The Formula
When to use: The IQR ignores the extreme 25% on each end, capturing only the spread of the central bulk of data โ making it robust when outliers inflate the regular range.
Quick Example
Notation
What This Formula Means
The interquartile range (IQR) is Q3 - Q1 โ the spread of the middle 50% of the data, resistant to outliers.
The IQR ignores the extreme 25% on each end, capturing only the spread of the central bulk of data โ making it robust when outliers inflate the regular range.
Formal View
Worked Examples
Example 1
easySolution
- 1 Find Q_1: lower half is \{15, 22, 28, 35\}; Q_1 = \frac{22+28}{2} = 25
- 2 Find Q_3: upper half is \{42, 50, 58, 65\}; Q_3 = \frac{50+58}{2} = 54
- 3 Calculate IQR: IQR = Q_3 - Q_1 = 54 - 25 = 29
- 4 Interpretation: the middle 50% of values span a range of 29 units
Answer
Example 2
mediumCommon Mistakes
- Computing IQR as Q1 - Q3 instead of Q3 - Q1 โ IQR must be positive
- Confusing IQR with range โ range uses min and max, IQR uses Q1 and Q3
- Using IQR alone to describe the data without reporting the median โ IQR measures spread but not center
Why This Formula Matters
IQR is the standard spread measure for skewed or outlier-heavy data, and it defines the "fences" beyond which data points are classified as outliers in a box plot.
Frequently Asked Questions
What is the Interquartile Range formula?
The interquartile range (IQR) is Q3 - Q1 โ the spread of the middle 50% of the data, resistant to outliers.
How do you use the Interquartile Range formula?
The IQR ignores the extreme 25% on each end, capturing only the spread of the central bulk of data โ making it robust when outliers inflate the regular range.
What do the symbols mean in the Interquartile Range formula?
\text{IQR} = Q_3 - Q_1; the middle 50\% of the data
Why is the Interquartile Range formula important in Math?
IQR is the standard spread measure for skewed or outlier-heavy data, and it defines the "fences" beyond which data points are classified as outliers in a box plot.
What do students get wrong about Interquartile Range?
Outliers are typically defined as values more than 1.5 \times \text{IQR} from Q1 or Q3.
What should I learn before the Interquartile Range formula?
Before studying the Interquartile Range formula, you should understand: quartiles.