Calculating Range and Interquartile Range
In statistics, measures of dispersion help us understand the spread of data. Range is the difference between the highest and lowest values in a dataset. Interquartile Range (IQR) measures the spread of the middle 50% of data, calculated as Q₃ - Q₁, where Q₃ is the third quartile and Q₁ is the first quartile.
Steps to Calculate Range:
- Identify the maximum value (max).
- Identify the minimum value (min).
- Use the formula: Range = max - min.
Steps to Calculate IQR:
- Arrange the data in ascending order.
- Find Q₁ (25th percentile) and Q₃ (75th percentile).
- Use the formula: IQR = Q₃ - Q₁.
For ungrouped data, list all values. For grouped data, estimate quartiles using cumulative frequency.
Example for ungrouped data: Data: 4, 8, 6, 5, 10
- Max = 10, Min = 4
- Range = 10 - 4 = 6
- Q₁ = 5, Q₃ = 8
- IQR = 8 - 5 = 3.
Key points to remember
- Range = max value - min value.
- IQR = Q₃ - Q₁, where Q₁ and Q₃ are quartiles.
- Arrange data in ascending order for accurate calculations.
- Use cumulative frequency for grouped data.
Worked example
Calculate the range and IQR for data: 3, 7, 5, 12, 9.
- Range: Max = 12, Min = 3, Range = 12 - 3 = 9.
- Q₁ = 5, Q₃ = 9, IQR = 9 - 5 = 4.