知识点 3

Compute and interpret mean, median, range, and interquartile range (IQR).

How to compute the mean, median, range, and IQR from a small data set.

核心知识

Mean is the arithmetic average; median is the middle value when data is sorted. Range is max minus min; IQR is Q3 minus Q1. The SAT expects you to compute these from small data sets and know which measure to use when.

深入理解

The mean treats every value equally:

Mean =sum of all values𝑛

The median ignores how far values are from the center — it only cares about position. Sort the data, find the middle.

Range captures the full extent of the data: max min. IQR captures the spread of just the middle 50%: 𝑄3 𝑄1.

When to use which: The mean and range are sensitive to outliers. The median and IQR are resistant. If a data set has extreme values, the median and IQR give a more reliable picture of the "typical" value and spread.

On the SAT, expect to compute these from a list of 5–15 numbers or from a frequency table. The arithmetic is straightforward — the challenge is doing it accurately under time pressure.

分步讲解

  1. To compute the mean: sum all values, divide by 𝑛.
  2. To find the median: sort the data, locate the middle value (or average of two middle values).
  3. To find quartiles: split the sorted data in half at the median, then find the median of each half. Q1 is the median of the lower half; Q3 is the median of the upper half.
  4. Range = max − min. IQR = Q3 − Q1.

常见误解

  • Forgetting to sort the data before finding the median.
  • Including the overall median in both halves when computing Q1 and Q3 (conventions vary, but the SAT typically excludes it for odd 𝑛).
  • Computing mean when the question asks for median, or vice versa — read the question carefully.
题目

示例解析

A data set consists of the values: 4, 7, 9, 12, 15, 18, 22. What is the interquartile range?

选择一个答案查看解析