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|.
Last updated: August 2026

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 50.0 mm50.0\text{ mm}:

  • Line A Bolt Lengths (mm): {49.9,  50.0,  50.0,  50.0,  50.1}    xˉ=50.0 mm\{49.9, \; 50.0, \; 50.0, \; 50.0, \; 50.1\} \implies \bar{x} = 50.0\text{ mm} (Extremely low dispersion; highly consistent quality control)
  • Line B Bolt Lengths (mm): {40.0,  45.0,  50.0,  55.0,  60.0}    xˉ=50.0 mm\{40.0, \; 45.0, \; 50.0, \; 55.0, \; 60.0\} \implies \bar{x} = 50.0\text{ mm} (Extremely high dispersion; severe manufacturing defect rate)

Both lines share the exact same mean (50.0 mm50.0\text{ mm}) and median (50.0 mm50.0\text{ mm}), 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 (RR) is the simplest measure of statistical dispersion, defined as the arithmetic difference between the maximum and minimum values in a dataset:

R=MaximumMinimumR = \text{Maximum} - \text{Minimum}

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 25%25\% of the observations.

  1. First Quartile (Q1Q_1 / 25th Percentile): The median of the lower half of the data; exactly 25%25\% of observations lie at or below Q1Q_1, and 75%75\% lie above it.
  2. Second Quartile (Q2Q_2 / Median / 50th Percentile): The overall median of the dataset; bisects the entire distribution into lower and upper halves (50%50\% below, 50%50\% above).
  3. Third Quartile (Q3Q_3 / 75th Percentile): The median of the upper half of the data; exactly 75%75\% of observations lie at or below Q3Q_3, and 25%25\% lie above it.

The Five-Number Summary

The Five-Number Summary provides a comprehensive numerical skeleton of any distribution:

Five-Number Summary=(Minimum,  Q1,  Median,  Q3,  Maximum)\text{Five-Number Summary} = (\text{Minimum}, \; Q_1, \; \text{Median}, \; Q_3, \; \text{Maximum})

Algorithm for Calculating Quartiles

  1. Sort the entire dataset in ascending order.
  2. Determine the overall Median (Q2Q_2).
  3. Divide the dataset into lower and upper halves:
    • When sample size nn is ODD: Strictly exclude the median itself when forming the lower and upper halves.
    • When sample size nn 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.
  4. Calculate Q1Q_1 as the median of the lower half.
  5. Calculate Q3Q_3 as the median of the upper half.

Worked Example 1: Odd Sample Size (n=11n = 11)

Consider the sorted exam scores: 54,  62,  68,  72,  77,  81,  85,  88,  91,  94,  9854, \; 62, \; 68, \; 72, \; 77, \; \mathbf{81}, \; 85, \; 88, \; 91, \; 94, \; 98

  • Median (Q2Q_2): The 6th value is 8181.
  • Lower Half (5 values): {54,62,68,72,77}    Q1=68\{54, 62, \mathbf{68}, 72, 77\} \implies Q_1 = 68.
  • Upper Half (5 values): {85,88,91,94,98}    Q3=91\{85, 88, \mathbf{91}, 94, 98\} \implies Q_3 = 91.
  • Five-Number Summary: (Min=54,  Q1=68,  Median=81,  Q3=91,  Max=98)(\text{Min}=54, \; Q_1=68, \; \text{Median}=81, \; Q_3=91, \; \text{Max}=98).

Worked Example 2: Even Sample Size (n=12n = 12)

Consider the sorted response times (seconds): 12,  15,  18,  21,  24,  27,  31,  36,  40,  45,  49,  5812, \; 15, \; 18, \; 21, \; 24, \; \mathbf{27}, \; \mathbf{31}, \; 36, \; 40, \; 45, \; 49, \; 58

  • Median (Q2Q_2): 27+312=29 seconds\frac{27 + 31}{2} = 29\text{ seconds}.
  • Lower Half (6 values): {12,15,18,21,24,27}    Q1=18+212=19.5\{12, 15, \mathbf{18}, \mathbf{21}, 24, 27\} \implies Q_1 = \frac{18 + 21}{2} = 19.5.
  • Upper Half (6 values): {31,36,40,45,49,58}    Q3=40+452=42.5\{31, 36, \mathbf{40}, \mathbf{45}, 49, 58\} \implies Q_3 = \frac{40 + 45}{2} = 42.5.
  • Five-Number Summary: (Min=12,  Q1=19.5,  Median=29,  Q3=42.5,  Max=58)(\text{Min}=12, \; Q_1=19.5, \; \text{Median}=29, \; Q_3=42.5, \; \text{Max}=58).

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 50%50\% of the dataset:

IQR=Q3Q1\text{IQR} = Q_3 - Q_1

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 25%25\% and bottom 25%25\% 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 1.5×IQR1.5 \times \text{IQR} 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:

Lower Fence=Q11.5×IQR\text{Lower Fence} = Q_1 - 1.5 \times \text{IQR} Upper Fence=Q3+1.5×IQR\text{Upper Fence} = Q_3 + 1.5 \times \text{IQR}

  • Any observation x<Lower Fencex < \text{Lower Fence} is classified as a low outlier.
  • Any observation x>Upper Fencex > \text{Upper Fence} 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:

  1. Compute Q1Q_1 and Q3Q_3.
  2. Calculate IQR=Q3Q1\text{IQR} = Q_3 - Q_1.
  3. Multiply IQR by 1.51.5 to find the step value: Step=1.5×IQR\text{Step} = 1.5 \times \text{IQR}.
  4. Subtract the step from Q1Q_1 to establish the Lower Fence.
  5. Add the step to Q3Q_3 to establish the Upper Fence.
  6. Flag any data point falling outside the interval [Lower Fence,Upper Fence][\text{Lower Fence}, \text{Upper Fence}].

Variance and Standard Deviation (ss and σ\sigma)

Variance and standard deviation measure the typical or average squared distance that data points deviate from the arithmetic mean.

Mathematical Formulation

  • Sample Variance (s2s^2): s2=i=1n(xixˉ)2n1s^2 = \frac{\sum_{i=1}^n (x_i - \bar{x})^2}{n - 1}
  • Sample Standard Deviation (ss): s=s2=i=1n(xixˉ)2n1s = \sqrt{s^2} = \sqrt{\frac{\sum_{i=1}^n (x_i - \bar{x})^2}{n - 1}}
  • Population Standard Deviation (σ\sigma): σ=i=1N(xiμ)2N\sigma = \sqrt{\frac{\sum_{i=1}^N (x_i - \mu)^2}{N}}

(Note: The denominator n1n - 1 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

  1. Non-Negativity: s0s \ge 0. Standard deviation can never be negative.
  2. Zero Spread: s=0s = 0 if and only if all values in the dataset are identical (e.g., in {8,8,8,8}\{8, 8, 8, 8\}, s=0s = 0).
  3. 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.
  4. Sensitivity to Outliers: Like the arithmetic mean, standard deviation is non-resistant; squaring deviations magnifies the influence of extreme values.
  5. 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 (xnew=x+cx_{\text{new}} = x + c)

  • Effect on Center: The mean and median increase by cc (xˉnew=xˉ+c\bar{x}_{\text{new}} = \bar{x} + c).
  • Effect on Spread: The range, IQR, variance, and standard deviation remain completely unchanged (Δs=0,ΔIQR=0\Delta s = 0, \Delta \text{IQR} = 0). 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 (xnew=kxx_{\text{new}} = k \cdot x, where k>0k > 0)

  • Effect on Center: The mean and median are multiplied by kk.
  • Effect on Spread: The range, IQR, and standard deviation are multiplied by kk (snew=kss_{\text{new}} = k \cdot s). The variance is multiplied by k2k^2.
StatisticAdding Constant cc (x+cx + c)Multiplying by Constant k>0k > 0 (kxk \cdot x)
Mean (xˉ\bar{x})xˉ+c\bar{x} + ckxˉk \cdot \bar{x}
Median (MM)M+cM + ckMk \cdot M
Range (RR)Unchanged (RR)kRk \cdot R
IQRUnchanged (IQR\text{IQR})kIQRk \cdot \text{IQR}
Standard Deviation (ss)Unchanged (ss)ksk \cdot s
Variance (s2s^2)Unchanged (s2s^2)k2s2k^2 \cdot s^2

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:

  • 68%\approx 68\% of observations fall within 11 standard deviation of the mean: [xˉ1s,  xˉ+1s][\bar{x} - 1s, \; \bar{x} + 1s]
  • 95%\approx 95\% of observations fall within 22 standard deviations of the mean: [xˉ2s,  xˉ+2s][\bar{x} - 2s, \; \bar{x} + 2s]
  • 99.7%\approx 99.7\% of observations fall within 33 standard deviations of the mean: [xˉ3s,  xˉ+3s][\bar{x} - 3s, \; \bar{x} + 3s]
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 xˉ\bar{x} and xˉ+1s\bar{x} + 1s: 34%34\%
  • Between xˉ+1s\bar{x} + 1s and xˉ+2s\bar{x} + 2s: 13.5%13.5\%
  • Between xˉ+2s\bar{x} + 2s and xˉ+3s\bar{x} + 3s: 2.35%2.35\%
  • Greater than xˉ+3s\bar{x} + 3s: 0.15%0.15\%

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 1212 samples: 14,  18,  22,  25,  28,  31,  33,  37,  41,  44,  48,  8814, \; 18, \; 22, \; 25, \; 28, \; 31, \; 33, \; 37, \; 41, \; 44, \; 48, \; 88

Step 1: Determine the Five-Number Summary

  • Ordered dataset (n=12n = 12):
  • Minimum=14\text{Minimum} = 14
  • Median=31+332=32\text{Median} = \frac{31 + 33}{2} = 32
  • Lower half: {14,18,22,25,28,31}    Q1=22+252=23.5\{14, 18, 22, 25, 28, 31\} \implies Q_1 = \frac{22 + 25}{2} = 23.5
  • Upper half: {33,37,41,44,48,88}    Q3=41+442=42.5\{33, 37, 41, 44, 48, 88\} \implies Q_3 = \frac{41 + 44}{2} = 42.5
  • Maximum=88\text{Maximum} = 88
  • Five-Number Summary: (14,  23.5,  32,  42.5,  88)(14, \; 23.5, \; 32, \; 42.5, \; 88)

Step 2: Calculate the Interquartile Range IQR=Q3Q1=42.523.5=19.0 ppm\text{IQR} = Q_3 - Q_1 = 42.5 - 23.5 = 19.0\text{ ppm}

Step 3: Calculate Outlier Fences Step=1.5×IQR=1.5×19.0=28.5\text{Step} = 1.5 \times \text{IQR} = 1.5 \times 19.0 = 28.5 Lower Fence=Q128.5=23.528.5=5.0\text{Lower Fence} = Q_1 - 28.5 = 23.5 - 28.5 = -5.0 Upper Fence=Q3+28.5=42.5+28.5=71.0\text{Upper Fence} = Q_3 + 28.5 = 42.5 + 28.5 = 71.0

Step 4: Identify Outliers

  • All observations are 5.0\ge -5.0, so there are no low outliers.
  • The observation 8888 exceeds the Upper Fence (88>71.088 > 71.0).
  • Thus, 88 ppm88\text{ ppm} is a confirmed high outlier.

Worked Example 2: Outlier Screening in Hospital Wait Times

An emergency department evaluates triage wait times with Q1=24 minutesQ_1 = 24\text{ minutes} and Q3=56 minutesQ_3 = 56\text{ minutes}. An auditor investigates four specific patient wait times: 8 minutes8\text{ minutes}, 75 minutes75\text{ minutes}, 102 minutes102\text{ minutes}, and 110 minutes110\text{ minutes}. Which of these wait times are statistical outliers under the 1.5×IQR1.5 \times \text{IQR} rule?

  1. IQR=Q3Q1=5624=32 minutes\text{IQR} = Q_3 - Q_1 = 56 - 24 = 32\text{ minutes}.
  2. Step=1.5×32=48 minutes\text{Step} = 1.5 \times 32 = 48\text{ minutes}.
  3. Lower Fence=2448=24 minutes\text{Lower Fence} = 24 - 48 = -24\text{ minutes} (effective lower limit is 00).
  4. Upper Fence=56+48=104 minutes\text{Upper Fence} = 56 + 48 = 104\text{ minutes}.
  5. Evaluating candidates against the non-outlier interval [0,104][0, 104]:
    • 8 min8\text{ min}: Not an outlier (81048 \le 104).
    • 75 min75\text{ min}: Not an outlier (7510475 \le 104).
    • 102 min102\text{ min}: Not an outlier (102104102 \le 104).
    • 110 min110\text{ min}: Outlier (110>104110 > 104).

Only the 110-minute110\text{-minute} 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 μ=1,200 hours\mu = 1,200\text{ hours} and standard deviation σ=80 hours\sigma = 80\text{ hours}. In a production batch of 10,00010,000 lightbulbs, approximately how many lightbulbs are expected to last between 1,040 hours1,040\text{ hours} and 1,280 hours1,280\text{ hours}?

  1. Express the bounds in terms of standard deviations from the mean:
    • Lower bound: 1,040=1,200160=μ2σ1,040 = 1,200 - 160 = \mu - 2\sigma
    • Upper bound: 1,280=1,200+80=μ+1σ1,280 = 1,200 + 80 = \mu + 1\sigma
  2. Sum the known Empirical Rule percentages for these regions:
    • Between μ2σ\mu - 2\sigma and μ1σ\mu - 1\sigma: 13.5%13.5\%
    • Between μ1σ\mu - 1\sigma and μ\mu: 34%34\%
    • Between μ\mu and μ+1σ\mu + 1\sigma: 34%34\%
    • Total Percentage=13.5%+34%+34%=81.5%\text{Total Percentage} = 13.5\% + 34\% + 34\% = 81.5\%
  3. Calculate expected bulb count: 10,000×0.815=8,150 lightbulbs10,000 \times 0.815 = 8,150\text{ lightbulbs}

Common Pitfalls & ACCUPLACER Exam Traps

  1. Including the Median in Quartile Halves When nn is Odd: Never include the central median element in either the lower or upper halves when finding Q1Q_1 and Q3Q_3.
  2. Believing Addition Shifts Standard Deviation: If every employee receives a $3,000\$3,000 cost-of-living salary increase, the mean salary increases by $3,000\$3,000, but standard deviation and IQR remain completely unchanged.
  3. Confusing Range with IQR: Range is MaxMin\text{Max} - \text{Min} (all data), whereas IQR is Q3Q1Q_3 - Q_1 (middle 50%50\%).
  4. Assuming Negative Standard Deviation: Standard deviation is the principal square root of non-negative squared deviations and can never be negative.
Loading diagram...
Five-Number Summary, IQR, and Outlier Fences
Test Your Knowledge

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
B
C
D
Test Your Knowledge

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
B
C
D
Test Your Knowledge

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?

A
B
C
D