8.2 Measures of Spread: Range, IQR, Variance, & Standard Deviation
Key Takeaways
- The range (R = \text{Maximum} - \text{Minimum}) quantifies the total span of a dataset in a single calculation but is exceptionally vulnerable to isolated outliers.
- Quartiles divide an ordered dataset into four equal segments (25% each), establishing the Five-Number Summary: Minimum, Q_1 (25th percentile), Median/Q_2 (50th percentile), Q_3 (75th percentile), and Maximum.
- The Interquartile Range (\text{IQR} = Q_3 - Q_1) measures the spread of the middle 50% of the dataset and is resistant (robust) against extreme values.
- The 1.5 \times \text{IQR} outlier rule establishes mathematical fences: \text{Lower Fence} = Q_1 - 1.5 \times \text{IQR} and \text{Upper Fence} = Q_3 + 1.5 \times \text{IQR}; observations outside these fences are classified as outliers.
- Standard deviation (s = \sqrt{\frac{\sum (x_i - \bar{x})^2}{n-1}}) measures average distance from the mean; shifting data (x + c) leaves s unchanged, while scaling data (k \cdot x) scales s by |k|.
The Critical Role of Measures of Dispersion (Spread)
While measures of central tendency identify the center or typical value of a dataset, measures of dispersion (spread) describe the variability, scatter, or degree of clustering among observations. Center and spread are complementary: knowing only the center of a distribution provides an incomplete picture.
Consider two manufacturing assembly lines producing steel bolts with an intended length of :
- Line A Bolt Lengths (mm): (Extremely low dispersion; highly consistent quality control)
- Line B Bolt Lengths (mm): (Extremely high dispersion; severe manufacturing defect rate)
Both lines share the exact same mean () and median (), but Line B exhibits extreme variability. The ACCUPLACER QAS exam tests four key measures of spread: Range, Quartiles & Interquartile Range (IQR), Variance, and Standard Deviation.
Range: Measuring Total Span
The range () is the simplest measure of statistical dispersion, defined as the arithmetic difference between the maximum and minimum values in a dataset:
Analytical Characteristics of Range
- Ease of Computation: Calculated in a single subtraction step.
- Extreme Sensitivity to Outliers: Because range depends entirely on the two extreme endpoints of the dataset, a single unusually large or small observation will artificially inflate the range, providing a distorted view of the dataset's overall variability.
Quartiles and the Five-Number Summary
Quartiles partition an ordered dataset into four equal segments, each containing exactly of the observations.
- First Quartile ( / 25th Percentile): The median of the lower half of the data; exactly of observations lie at or below , and lie above it.
- Second Quartile ( / Median / 50th Percentile): The overall median of the dataset; bisects the entire distribution into lower and upper halves ( below, above).
- Third Quartile ( / 75th Percentile): The median of the upper half of the data; exactly of observations lie at or below , and lie above it.
The Five-Number Summary
The Five-Number Summary provides a comprehensive numerical skeleton of any distribution:
Algorithm for Calculating Quartiles
- Sort the entire dataset in ascending order.
- Determine the overall Median ().
- Divide the dataset into lower and upper halves:
- When sample size is ODD: Strictly exclude the median itself when forming the lower and upper halves.
- When sample size is EVEN: Split the dataset cleanly at the midpoint; include all observations up to the midpoint in the lower half and all observations above it in the upper half.
- Calculate as the median of the lower half.
- Calculate as the median of the upper half.
Worked Example 1: Odd Sample Size ()
Consider the sorted exam scores:
- Median (): The 6th value is .
- Lower Half (5 values): .
- Upper Half (5 values): .
- Five-Number Summary: .
Worked Example 2: Even Sample Size ()
Consider the sorted response times (seconds):
- Median (): .
- Lower Half (6 values): .
- Upper Half (6 values): .
- Five-Number Summary: .
The Interquartile Range (IQR): Robust Measure of Spread
The Interquartile Range (IQR) is the difference between the third and first quartiles, measuring the spread of the middle of the dataset:
Analytical Properties of the IQR
- Resistance to Outliers: Because the IQR focuses strictly on the central half of the distribution and completely discards the top and bottom of observations, extreme values do not affect its value.
- Paired with the Median: In skewed distributions or datasets containing outliers, the median is the preferred measure of center and the IQR is the corresponding preferred measure of spread.
Outlier Identification: The Criterion (Tukey's Fences)
A data point is formally classified as a statistical outlier if it lies beyond either the lower or upper boundary fences:
- Any observation is classified as a low outlier.
- Any observation is classified as a high outlier.
Visualizing Tukey's Outlier Fences:
[Low Outliers] <--- |------- Q1 ========= Median ========= Q3 -------| ---> [High Outliers]
Lower Fence Upper Fence
(Q1 - 1.5*IQR) (Q3 + 1.5*IQR)
Step-by-Step Outlier Detection Algorithm:
- Compute and .
- Calculate .
- Multiply IQR by to find the step value: .
- Subtract the step from to establish the Lower Fence.
- Add the step to to establish the Upper Fence.
- Flag any data point falling outside the interval .
Variance and Standard Deviation ( and )
Variance and standard deviation measure the typical or average squared distance that data points deviate from the arithmetic mean.
Mathematical Formulation
- Sample Variance ():
- Sample Standard Deviation ():
- Population Standard Deviation ():
(Note: The denominator in the sample standard deviation is known as Bessel's correction, which provides an unbiased estimator of the population variance.)
Conceptual Properties for the ACCUPLACER Test
- Non-Negativity: . Standard deviation can never be negative.
- Zero Spread: if and only if all values in the dataset are identical (e.g., in , ).
- Clustering vs. Dispersion:
- Data points tightly clustered around the mean produce a small standard deviation.
- Data points widely dispersed across a broad spectrum produce a large standard deviation.
- Sensitivity to Outliers: Like the arithmetic mean, standard deviation is non-resistant; squaring deviations magnifies the influence of extreme values.
- Comparing Spread Visually: On the ACCUPLACER exam, you are often asked to compare the standard deviations of two dot plots or histograms without computing formulas. Look at how far points are from the center: datasets with more points in the outer tails have larger standard deviations.
Linear Transformations and Their Effects on Spread
Understanding how arithmetic transformations affect summary statistics is a frequently tested conceptual topic:
1. Shift Transformation: Adding or Subtracting a Constant ()
- Effect on Center: The mean and median increase by ().
- Effect on Spread: The range, IQR, variance, and standard deviation remain completely unchanged (). Adding a constant shifts every point by the same amount, preserving the exact distances between all points.
2. Scale Transformation: Multiplying or Dividing by a Constant (, where )
- Effect on Center: The mean and median are multiplied by .
- Effect on Spread: The range, IQR, and standard deviation are multiplied by (). The variance is multiplied by .
| Statistic | Adding Constant () | Multiplying by Constant () |
|---|---|---|
| Mean () | ||
| Median () | ||
| Range () | Unchanged () | |
| IQR | Unchanged () | |
| Standard Deviation () | Unchanged () | |
| Variance () | Unchanged () |
The Empirical Rule (68–95–99.7 Rule) for Normal Distributions
For symmetric, bell-shaped (normal) distributions, the Empirical Rule defines the exact percentage of observations falling within standard deviation intervals around the mean:
- of observations fall within standard deviation of the mean:
- of observations fall within standard deviations of the mean:
- of observations fall within standard deviations of the mean:
Normal Distribution Symmetric Partitions:
|------- 68% -------|
|--------------- 95% ---------------|
|------------------- 99.7% -------------------|
2.35% 13.5% 34% 34% 13.5% 2.35%
---|-------|-------|-------|-------|-------|-------|---
μ-3σ μ-2σ μ-1σ μ μ+1σ μ+2σ μ+3σ
Key Symmetric Sub-Intervals
- Between and :
- Between and :
- Between and :
- Greater than :
Step-by-Step Multi-Step Worked Examples
Worked Example 1: Full Five-Number Summary, IQR, and Outlier Analysis
An analytical laboratory measures the concentration of a chemical compound (in parts per million, ppm) across samples:
Step 1: Determine the Five-Number Summary
- Ordered dataset ():
- Lower half:
- Upper half:
- Five-Number Summary:
Step 2: Calculate the Interquartile Range
Step 3: Calculate Outlier Fences
Step 4: Identify Outliers
- All observations are , so there are no low outliers.
- The observation exceeds the Upper Fence ().
- Thus, is a confirmed high outlier.
Worked Example 2: Outlier Screening in Hospital Wait Times
An emergency department evaluates triage wait times with and . An auditor investigates four specific patient wait times: , , , and . Which of these wait times are statistical outliers under the rule?
- .
- .
- (effective lower limit is ).
- .
- Evaluating candidates against the non-outlier interval :
- : Not an outlier ().
- : Not an outlier ().
- : Not an outlier ().
- : Outlier ().
Only the wait time is an outlier.
Worked Example 3: Empirical Rule Application in Standardized Quality Testing
A factory produces lightbulbs whose operational lifespans follow a normal distribution with a mean and standard deviation . In a production batch of lightbulbs, approximately how many lightbulbs are expected to last between and ?
- Express the bounds in terms of standard deviations from the mean:
- Lower bound:
- Upper bound:
- Sum the known Empirical Rule percentages for these regions:
- Between and :
- Between and :
- Between and :
- Calculate expected bulb count:
Common Pitfalls & ACCUPLACER Exam Traps
- Including the Median in Quartile Halves When is Odd: Never include the central median element in either the lower or upper halves when finding and .
- Believing Addition Shifts Standard Deviation: If every employee receives a cost-of-living salary increase, the mean salary increases by , but standard deviation and IQR remain completely unchanged.
- Confusing Range with IQR: Range is (all data), whereas IQR is (middle ).
- Assuming Negative Standard Deviation: Standard deviation is the principal square root of non-negative squared deviations and can never be negative.
Consider the following ordered dataset of 12 numbers: 6, 9, 12, 15, 18, 22, 26, 30, 35, 40, 44, 52. What is the Interquartile Range (IQR) of this dataset?
A research study finds that the first quartile of weekly study hours is Q1 = 16 hours and the third quartile is Q3 = 32 hours. Under the standard 1.5 × IQR outlier identification rule, which of the following reported weekly study times would be classified as an outlier?
A dataset of customer purchase amounts has an arithmetic mean of $65.00 and a standard deviation of $12.00. If a flat promotional discount of $5.00 is subtracted from every customer's purchase amount, what will be the new arithmetic mean and new standard deviation?