9.2 Measures of Center & Variability

Key Takeaways

  • Measures of center summarize a dataset with a single typical value: Mean is the arithmetic balance point, Median is the 50th percentile physical middle value, and Mode is the most frequent observation.
  • Extreme outliers and distribution skew pull the mean toward the elongated tail, whereas the median remains resistant (robust); symmetric datasets are best summarized by Mean and MAD, while skewed datasets are best summarized by Median and IQR.
  • Measures of variability quantify data dispersion: Range spans total extent (Max - Min), Interquartile Range (IQR = Q3 - Q1) measures the spread of the middle 50%, and Mean Absolute Deviation (MAD) averages distances from the mean.
  • A box-and-whisker plot visualizes the five-number summary (Min, Q1, Median, Q3, Max); exactly 25% of the data values fall into each quartile interval regardless of visual whisker or box width.
  • Florida B.E.S.T. standards require comparing two distributions by contrasting their centers and spreads, and expressing the numerical difference between centers as a ratio of their variability.
Last updated: September 2026

9.2 Measures of Center & Variability

Quick Answer: A measure of center identifies the central or "typical" value of a dataset: Mean is the arithmetic average (sum divided by count), Median is the positional middle value of an ordered dataset, and Mode is the most frequent value. When a distribution contains extreme outliers or is skewed, the mean is pulled toward the tail, making the resistant median the superior measure of center. Measures of variability describe how spread out the values are: Range ($\text{Max} - \text{Min}$), Interquartile Range ($\text{IQR} = Q_3 - Q_1$, capturing the middle $50%$), and Mean Absolute Deviation ($\text{MAD}$, average distance from the mean). A box plot displays the five-number summary, where each quarter of the plot contains approximately $25%$ of the data.


Measures of Center: Mean, Median, and Mode

Under Florida B.E.S.T. benchmark MA.6.DP.1.2, students summarize numerical datasets using three distinct measures of central tendency:

1. The Arithmetic Mean ($\bar{x}$)

The mean represents the mathematical center or "fair share" balance point of a dataset. It is calculated by summing all observations and dividing by the total number of observations $n$:

xˉ=i=1nxin=x1+x2++xnn\bar{x} = \frac{\sum_{i=1}^n x_i}{n} = \frac{x_1 + x_2 + \dots + x_n}{n}

  • Physical Balance Point Model: On a dot plot, the mean represents the exact fulcrum point where the number line would balance horizontally if each dot had identical weight. The sum of the distances from points above the mean exactly equals the sum of the distances from points below the mean.

2. The Median ($\tilde{x}$ or $Q_2$)

The median represents the positional middle value of an ordered dataset, partitioning the data into two equal halves ($50%$ below and $50%$ above).

  • Algorithm for Finding the Median:
    1. Arrange the raw data in ascending order from least to greatest.
    2. If the sample size $n$ is odd, the median is the unique middle value at position $\frac{n+1}{2}$.
    3. If the sample size $n$ is even, no single middle number exists; the median is the arithmetic mean of the two middle values at positions $\frac{n}{2}$ and $\frac{n}{2} + 1$: Median=x(n/2)+x(n/2+1)2\text{Median} = \frac{x_{(n/2)} + x_{(n/2 + 1)}}{2}

3. The Mode

The mode is the data value (or values) that occurs with the greatest frequency.

  • A dataset may have one mode (unimodal), two modes (bimodal), multiple modes (multimodal), or no mode if every value occurs with identical frequency.
  • The mode is the only measure of center that can be used with categorical data (e.g., the modal hair color is brown).
MeasureDefinitionCalculation MethodSensitivity to OutliersBest Used When...
MeanArithmetic average / balance point$\frac{\text{Sum of all values}}{n}$Highly Sensitive (pulled toward extremes)Distribution is roughly symmetrical with no outliers
MedianPositional 50th percentile middle valueMiddle value of ordered dataResistant / Robust (unaffected by extremes)Distribution is skewed or contains extreme outliers
ModeMost frequently occurring valueValue with highest frequency countCompletely unaffected by extreme valuesWorking with categorical data or discrete peaks

Impact of Outliers & Skewness: Resistance and Selection

An outlier is an extreme observation that lies an abnormal numerical distance from the remaining cluster of data points. Outliers exert a profound, asymmetric distortion on statistical measures.

Why the Mean is Non-Resistant

Because the arithmetic mean includes every raw number in its calculation, a single extraordinarily large or small value exerts massive leverage on the sum, pulling the mean away from the true center of the data.

  • Example: Consider five workers earning: $$30\text{k}, $32\text{k}, $35\text{k}, $38\text{k}, $40\text{k}$.
    • $\text{Mean} = \frac{175}{5} = $35\text{k}$; $\text{Median} = $35\text{k}$.
  • Introducing an Executive Salary: Replace the fifth worker with an executive earning $$600\text{k}$:
    • Dataset: $$30\text{k}, $32\text{k}, $35\text{k}, $38\text{k}, $600\text{k}$.
    • $\text{New Mean} = \frac{735}{5} = $147\text{k}$.
    • $\text{New Median} = $35\text{k}$.
  • The Statistical Reality: The mean jumped from $$35\text{k}$ to $$147\text{k}$—a figure higher than $80%$ of the workers! The median remained anchored at $$35\text{k}$, accurately reflecting the typical worker's salary.

The Florida B.E.S.T. Measure Selection Rule

Under MA.6.DP.1.2, students must justify the selection of appropriate center and variability measures based on distribution shape:

  • Symmetric Distribution (No Outliers): Report the Mean as the measure of center and the Mean Absolute Deviation (MAD) as the measure of variability.
  • Skewed Distribution or Outliers Present: Report the Median as the measure of center and the Interquartile Range (IQR) as the measure of variability.

Measures of Variability (Spread)

A measure of center alone cannot fully describe a dataset; two classes might both have a mean test score of $80%$, but in Class A every student scored between $78%$ and $82%$, while in Class B scores ranged from $40%$ to $100%$. Measures of variability quantify this dispersion.

1. Range

The range is the simplest measure of spread, defined as the difference between the absolute maximum and minimum values:

Range=MaximumMinimum\text{Range} = \text{Maximum} - \text{Minimum}

  • Because range relies entirely on the two most extreme points, it is extremely sensitive to outliers and fails to describe the distribution of the inner data values.

2. Interquartile Range (IQR)

The interquartile range (IQR) measures the spread of the middle $50%$ of the data, defined as the distance between the third quartile ($Q_3$) and the first quartile ($Q_1$):

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

  • Quartile Definitions:
    • $Q_1$ (First / Lower Quartile): The median of the lower half of the data (the 25th percentile).
    • $Q_2$ (Second Quartile): The overall median (the 50th percentile).
    • $Q_3$ (Third / Upper Quartile): The median of the upper half of the data (the 75th percentile).
    • (Note: When $n$ is odd, the overall median $Q_2$ is excluded from both halves when computing $Q_1$ and $Q_3$.)
  • Resistance: The IQR is completely resistant to outliers because it completely ignores the lowest $25%$ and highest $25%$ of values.

The Formal $1.5 \times \text{IQR}$ Outlier Rule

Under Florida middle grades and early high school benchmarks, an outlier is formally identified using boundary "fences":

Lower Outlier Boundary=Q11.5×IQRUpper Outlier Boundary=Q3+1.5×IQR\begin{aligned} \text{Lower Outlier Boundary} &= Q_1 - 1.5 \times \text{IQR} \\[4pt] \text{Upper Outlier Boundary} &= Q_3 + 1.5 \times \text{IQR} \end{aligned}

Any data value falling strictly below the lower boundary ($x < Q_1 - 1.5 \times \text{IQR}$) or strictly above the upper boundary ($x > Q_3 + 1.5 \times \text{IQR}$) is classified as a statistical outlier.

3. Mean Absolute Deviation (MAD)

The Mean Absolute Deviation (MAD) is the arithmetic average of the non-directed absolute distances between each individual data point $x_i$ and the dataset's mean $\bar{x}$:

MAD=i=1nxixˉn=x1xˉ+x2xˉ++xnxˉn\text{MAD} = \frac{\sum_{i=1}^n |x_i - \bar{x}|}{n} = \frac{|x_1 - \bar{x}| + |x_2 - \bar{x}| + \dots + |x_n - \bar{x}|}{n}

  • Algorithmic Steps to Calculate MAD:
    1. Compute the mean of the dataset ($\bar{x}$).
    2. Subtract the mean from each raw data value and take the absolute value: $|x_i - \bar{x}|$.
    3. Sum all absolute deviations together.
    4. Divide this sum by the total number of data values $n$.
  • Interpretation: A low MAD indicates that the data values cluster tightly around the mean (high consistency); a high MAD indicates that data values are widely dispersed from the mean.

The Five-Number Summary and Box-and-Whisker Plots

A box-and-whisker plot (or box plot) visually displays the distribution of a numerical dataset based on its five-number summary:

  1. Minimum: The lowest value in the dataset (excluding outliers).
  2. First Quartile ($Q_1$): The boundary separating the lowest $25%$ of data from the rest.
  3. Median ($Q_2$): The central value separating the lower $50%$ from the upper $50%$.
  4. Third Quartile ($Q_3$): The boundary separating the lowest $75%$ from the top $25%$.
  5. Maximum: The highest value in the dataset (excluding outliers).
Box-and-Whisker Plot Anatomy:

        |-------|=============|===========|-------|
       Min     Q1           Median       Q3      Max
        |   25% |     25%     |    25%    |  25%  |
        |<------------- Range ----------->|
                |<----- IQR ----->|

The 25% Quartile Principle

Every box plot is divided into four distinct visual sections:

  1. Lower Whisker: Minimum to $Q_1$ ($25%$ of data)
  2. Lower Box: $Q_1$ to Median ($25%$ of data)
  3. Upper Box: Median to $Q_3$ ($25%$ of data)
  4. Upper Whisker: $Q_3$ to Maximum ($25%$ of data)

[!IMPORTANT] The Density Principle: Each of the four segments contains identically $25%$ of the data observations, regardless of the physical length of the segment on the page. A very long whisker or box segment does not mean it contains more data points; it means that $25%$ of the data points are spread out over a wider numerical range (greater variability/lower density). Conversely, a short segment indicates that $25%$ of the data is densely clustered within a narrow interval.


Comparing Two Distributions (B.E.S.T. MA.7.DP.1)

Under Florida benchmark MA.7.DP.1.1 and MA.7.DP.1.2, students must draw informal comparative inferences about two populations using measures of center and variability.

Comparative Framework

  • Comparing Centers: Contrast the typical performances by calculating the difference between means ($|\bar{x}_1 - \bar{x}_2|$) or medians ($|\text{Median}_1 - \text{Median}_2|$).
  • Comparing Spread: Contrast consistency by comparing MADs or IQRs. The group with the smaller MAD or IQR is more consistent and predictable.
  • Expressing Center Difference as a Multiple of Spread: Separation Ratio=Center1Center2Measure of Variability\text{Separation Ratio} = \frac{|\text{Center}_1 - \text{Center}_2|}{\text{Measure of Variability}} Example: If Class A has a mean of $85$ and Class B has a mean of $75$, with a common MAD of $5$, the difference between centers ($10$) is $\frac{10}{5} = 2.0$ MADs. A separation ratio of $2.0$ or greater indicates a substantial, statistically meaningful divergence between the two groups.

Step-by-Step Worked Example: Full Statistical Analysis

Problem: A marine biology team tracks the lengths (in cm) of $9$ juvenile sea turtles rehabilitated at a Florida rescue center: S={24,31,22,28,48,25,27,29,26}\mathcal{S} = \{24, 31, 22, 28, 48, 25, 27, 29, 26\}

Step 1: Order the data ascendingly. {22,24,25,26,27,28,29,31,48}(n=9)\{22, 24, 25, 26, 27, 28, 29, 31, 48\} \quad (n = 9)

Step 2: Determine the Five-Number Summary.

  • Minimum: $22\text{ cm}$
  • Median ($Q_2$): Since $n = 9$ is odd, the median is at position $\frac{9+1}{2} = 5$: $\text{Median} = 27\text{ cm}$.
  • Lower Half: ${22, 24, 25, 26}$. The median of these $4$ values is $Q_1 = \frac{24 + 25}{2} = 24.5\text{ cm}$.
  • Upper Half: ${28, 29, 31, 48}$. The median of these $4$ values is $Q_3 = \frac{29 + 31}{2} = 30.0\text{ cm}$.
  • Maximum: $48\text{ cm}$.

Step 3: Calculate IQR and check for outliers.

  • $\text{IQR} = Q_3 - Q_1 = 30.0 - 24.5 = 5.5\text{ cm}$.
  • Lower Fence $= Q_1 - 1.5(\text{IQR}) = 24.5 - 1.5(5.5) = 24.5 - 8.25 = 16.25\text{ cm}$.
  • Upper Fence $= Q_3 + 1.5(\text{IQR}) = 30.0 + 1.5(5.5) = 30.0 + 8.25 = 38.25\text{ cm}$.
  • Outlier Check: The value $48 > 38.25$. Therefore, $48\text{ cm}$ is an outlier.

Step 4: Select appropriate center and spread. Because an extreme outlier ($48\text{ cm}$) exists, the distribution is skewed right. The most appropriate measure of center is the Median ($27\text{ cm}$), and the appropriate measure of variability is the IQR ($5.5\text{ cm}$).


Common Exam Traps & Misconceptions

[!WARNING]

Exam Trap 1: The "Longer Whisker Holds More Data" Delusion

When comparing whiskers on a box plot, students constantly conclude that a longer whisker represents "more students" or "more data." Every whisker and box segment contains exactly one-quarter (~25%) of the total sample. A longer whisker indicates greater numerical dispersion (spread) among those $25%$ of values, not a larger count of items.

[!WARNING]

Exam Trap 2: Calculating Median Without Sorting the Dataset

In rapid test conditions, students frequently pick the physical middle number of an unorganized list. For example, in ${15, 2, 89, 4, 12}$, picking $89$ as the median is catastrophic. Always rewrite the list in strict ascending numerical order before finding the median or quartiles: ${2, 4, 12, 15, 89} \implies \text{Median} = 12$.

[!WARNING]

Exam Trap 3: Dropping Absolute Value Bars When Calculating MAD

When computing the Mean Absolute Deviation, some students simply subtract $(x_i - \bar{x})$ without taking the absolute value. By mathematical definition, the sum of signed deviations from the arithmetic mean is always identically zero (\sum (x_i - \bar{x}) = 0). If your sum of deviations equals zero, you forgot to apply the absolute value bars |x_i - \bar{x}|!$!

Loading diagram...
Measures of Center, Variability & Box Plot Framework
Test Your Knowledge

In a box-and-whisker plot representing 80 runner finish times in minutes, the minimum is 42, the first quartile (Q1) is 48, the median is 52, the third quartile (Q3) is 64, and the maximum is 76. Which deduction about the dataset is mathematically correct?

A
B
C
D
Test Your Knowledge

Consider the dataset representing the number of daily support tickets resolved by a technician over 5 days: {12, 14, 15, 18, 21}. What is the Mean Absolute Deviation (MAD) of this dataset?

A
B
C
D
Test Your Knowledge

A real estate analyst examines the home sale prices in a coastal Florida neighborhood: $280k, $295k, $310k, $315k, $320k, $330k, $340k, and $1,850k. Which measure of center should the analyst report to describe the typical home price, and what is its value?

A
B
C
D