AP STATISTICS • SAMPLING DISTRIBUTIONS

Biased and Unbiased Point Estimates

Understanding when a sample statistic systematically hits or misses the true population parameter.

Historical Context & Motivation

The idea that a single number computed from sample data could serve as a reliable stand-in for an unknown population characteristic is one of the most powerful—and most subtle—ideas in all of statistics. Early practitioners of probability, working with astronomical observations and census data, recognized that different formulas applied to the same data could yield systematically different estimates of the same quantity. The formal study of point estimation grew out of a need to choose, among competing formulas, those that would on average recover the true parameter value. This pursuit drove major theoretical breakthroughs from the eighteenth century onward and remains central to the AP Statistics curriculum today.

1805
Legendre & Least Squares
Adrien-Marie Legendre published the method of least squares for fitting lines to data, implicitly relying on the idea that the resulting slope and intercept are good point estimates of the true regression parameters.
1809
Gauss & the Normal Error Curve
Carl Friedrich Gauss showed that under normally distributed errors the arithmetic mean is the most probable value of the true quantity, providing an early justification for the sample mean as an unbiased estimator.
1922
Fisher Formalizes Estimation Theory
Ronald A. Fisher introduced the formal criteria of consistency, efficiency, and sufficiency for evaluating estimators. His framework made 'unbiasedness' a precise mathematical property rather than an intuitive notion.
1946
Cramér–Rao Lower Bound
Harald Cramér and C. R. Rao independently established a lower bound on the variance of unbiased estimators, giving statisticians a benchmark against which to judge how 'good' an unbiased estimator can be.

The central question that this lesson addresses is deceptively simple: if you compute a statistic from a random sample—say, the sample mean or the sample variance—does that statistic, on average across all possible samples, equal the population parameter it is meant to estimate? When the answer is yes, the estimator is unbiased; when the answer is no, the estimator is biased, and the direction and magnitude of that bias have real consequences for inference.

Core Principles & Definitions

Before distinguishing biased from unbiased estimators, we need a clear vocabulary. A parameter is a fixed numerical characteristic of a population—such as the population mean μ or the population proportion p. A statistic is a numerical value computed from sample data—such as the sample mean x̄ or the sample proportion p̂. When we use a statistic to approximate a parameter, we call that statistic a point estimate. The theoretical long-run behavior of that statistic across all possible random samples of the same size constitutes its sampling distribution, and the properties of that distribution determine whether the estimator is biased or unbiased.

1

Unbiased Estimator

A statistic θ̂ is unbiased for a parameter θ if E(θ̂) = θ. The mean of its sampling distribution equals the parameter.
2

Biased Estimator

A statistic θ̂ is biased if E(θ̂) ≠ θ. The bias equals E(θ̂) − θ and can be positive or negative.
3

Sampling Variability

Even an unbiased estimator varies from sample to sample. Its spread is measured by the standard error, SE(θ̂).
4

Bias vs. Variability

A good estimator is both unbiased (centered on the target) and low-variance (tightly clustered). These are distinct properties.
KEY TAKEAWAY
Think of bias as a miscalibrated scale at a grocery store. If the scale consistently reads 0.2 kg too high, every single measurement is off—that is bias. Some readings will still scatter above and below that wrong center—that is variability. Unbiasedness means the scale is correctly zeroed; low variability means repeated weighings give nearly the same number. Ideally we want both, but the first step is ensuring the center is right.

Visual Explanation — Bias and Variability as a Target

Each target represents a different combination of bias and variability. The crosshairs mark the true parameter value θ. Each green, amber, pink, or red dot is the point estimate θ̂ from one random sample. An unbiased, low-variance estimator (top-left) clusters tightly around the true value—the gold standard.

The target analogy is the single most useful mental model for bias and variability. Notice that the upper-left target (unbiased, low variance) is the ideal: every sample estimate clusters near the bullseye. The upper-right target (unbiased, high variance) still averages to the center, but individual estimates wander far—this corresponds to a small sample size or a highly variable population. The lower-left target (biased, low variance) is deceptive: the estimates are precise but systematically wrong—much like a bathroom scale that always reads 3 pounds too high. Finally, the lower-right target (biased, high variance) is the worst case, offering neither accuracy nor precision.

Mathematical Framework

The formal definition of bias is built on the concept of the expected value of a statistic. If θ is a population parameter and θ̂ is a statistic computed from a random sample, the bias of θ̂ is defined as follows.

BIAS OF AN ESTIMATOR
Bias(θ̂) = E(θ̂) − θ
E(θ̂) is the expected value (long-run average) of the statistic across all possible samples. If Bias(θ̂) = 0, the estimator is unbiased.

The most important unbiased estimator in introductory statistics is the sample mean. Suppose X₁, X₂, …, Xₙ are a random sample from a population with mean μ. The sample mean is x̄ = (1/n) Σ Xᵢ. Taking the expected value yields the following.

UNBIASEDNESS OF THE SAMPLE MEAN
E(x̄) = E[(1/n) Σ Xᵢ] = (1/n) Σ E(Xᵢ) = (1/n)(nμ) = μ
Because E(x̄) = μ, the sample mean is an unbiased estimator of the population mean μ, regardless of the population distribution or the sample size n.

The sample variance provides the classic illustration of bias correction. The naive variance with divisor n is biased, whereas dividing by n − 1 produces an unbiased estimator of the population variance σ².

BIASED VARIANCE ESTIMATOR
σ̂² = (1/n) Σ (Xᵢ − x̄)² → E(σ̂²) = [(n−1)/n] σ²
This estimator systematically underestimates σ² because using x̄ instead of μ reduces the sum of squared deviations.
UNBIASED VARIANCE ESTIMATOR (BESSEL'S CORRECTION)
s² = (1/(n−1)) Σ (Xᵢ − x̄)² → E(s²) = σ²
Dividing by n − 1 (called Bessel's correction) compensates for the lost degree of freedom when x̄ replaces μ, making s² unbiased for σ².
📝 AP Exam Note
On the AP Statistics exam, you are expected to know that x̄ is an unbiased estimator of μ, p̂ is an unbiased estimator of p, and s² (with the n − 1 divisor) is an unbiased estimator of σ². You should also know that s (the sample standard deviation) is not an unbiased estimator of σ, even though s² is unbiased for σ².

Classification of Common Estimators

In practice you will encounter several statistics, and knowing which are unbiased for their corresponding parameters is essential for both the AP exam and real-world inference. The table below summarizes the most important cases.

Common statistics and their bias status for AP Statistics
Statistic (Estimator)ParameterUnbiased?Notes
x̄ (sample mean)μ (population mean)YesAlways unbiased for any distribution, any n.
p̂ (sample proportion)p (population proportion)Yesp̂ = X/n where X ~ Binomial(n, p); E(p̂) = p.
s² (sample variance, n−1)σ² (population variance)YesBessel's correction makes this unbiased.
s (sample std dev)σ (population std dev)NoE(s) < σ; the square root introduces slight downward bias.
Sample medianPopulation medianYes*Unbiased for symmetric distributions; may be biased otherwise.
Sample rangePopulation rangeNoE(range) < population range; always underestimates.
The green curve is the sampling distribution of an unbiased estimator: its center (dashed green line) aligns perfectly with the true parameter θ. The pink curve is the sampling distribution of a biased estimator: its center is shifted to the right of θ by an amount equal to the bias.

The diagram above conveys the central idea: an unbiased estimator's sampling distribution is centered at the true parameter value, while a biased estimator's sampling distribution is shifted. The horizontal gap between the two dashed vertical lines is exactly the bias, E(θ̂) − θ. A positive bias means the estimator tends to overestimate the parameter; a negative bias means it tends to underestimate. Importantly, any single sample's estimate may fall on either side of the parameter—unbiasedness is a property of the long-run average, not of any individual sample.

Worked Example

A population consists of five values: {2, 4, 6, 8, 10}. We draw all possible simple random samples of size n = 2 (without replacement) and compute x̄ for each. We will verify that x̄ is an unbiased estimator of the population mean μ.

Verifying Unbiasedness of x̄ with a Small Population
1
Step 1 — Compute the Population Meanμ = (2 + 4 + 6 + 8 + 10) / 5 = 30 / 5 = 6.
μ = 6
2
Step 2 — List All Possible Samples of Size 2There are C(5,2) = 10 samples: {2,4}, {2,6}, {2,8}, {2,10}, {4,6}, {4,8}, {4,10}, {6,8}, {6,10}, {8,10}.
10 possible samples
3
Step 3 — Compute x̄ for Each Samplex̄ values: 3, 4, 5, 6, 5, 6, 7, 7, 8, 9.
4
Step 4 — Compute the Mean of All x̄ ValuesE(x̄) = (3 + 4 + 5 + 6 + 5 + 6 + 7 + 7 + 8 + 9) / 10 = 60 / 10 = 6.
E(x̄) = 6 = μ
5
Step 5 — ConcludeBecause E(x̄) = μ, the sample mean is an unbiased estimator of the population mean. The bias is E(x̄) − μ = 6 − 6 = 0. Note that individual sample means ranged from 3 to 9, but on average they hit the target.
Bias = 0; x̄ is unbiased for μ

Strengths, Limitations & Trade-offs

Comparing unbiased and biased estimators
PropertyUnbiased EstimatorsBiased Estimators
Long-run centerCentered on the true parameterSystematically off-center
Individual sample accuracyNo guarantee any single estimate equals θSame — no single-sample guarantee
VarianceNot necessarily minimalMay have lower variance (bias-variance trade-off)
Mean Squared Error (MSE)MSE = Var(θ̂)MSE = Var(θ̂) + [Bias]²; can be smaller overall
AP Statistics emphasisRequired knowledge: x̄, p̂, s² are unbiasedKnow s is biased; range is biased
KEY TAKEAWAY
Unbiasedness is desirable but not the only criterion. In advanced statistics, the bias-variance trade-off shows that a slightly biased estimator with much lower variance can produce a smaller total error (MSE) than an unbiased one with high variance. Think of it like choosing between a GPS that's perfectly calibrated but jittery versus one that's consistently 2 meters east but rock-steady—sometimes the steady one gets you closer on any given reading. For the AP exam, however, the emphasis is on recognizing which standard estimators are unbiased.

Connection to Confidence Intervals & Hypothesis Testing

Unbiased point estimates are the foundation on which the rest of statistical inference is built. When you construct a confidence interval, the center of that interval is your point estimate—usually x̄ or p̂—and the interval extends outward by a margin of error determined by the standard error. If the point estimate were biased, every confidence interval you constructed would be systematically shifted in the wrong direction, and your stated confidence level would no longer be valid. Similarly, in hypothesis testing, test statistics are built from point estimates; bias in those estimates would distort p-values and lead to incorrect conclusions about significance.

How unbiased estimation connects to later AP topics and beyond
Concept in This LessonHow It Extends
E(x̄) = μ (unbiasedness)Justifies centering a confidence interval for μ at x̄
E(p̂) = p (unbiasedness)Justifies one-proportion z-tests and confidence intervals
E(s²) = σ² (unbiasedness)Justifies using s in t-procedures when σ is unknown
Sampling variability (SE)Determines margin of error and power of tests
Bias-variance trade-offCentral to regression shrinkage methods (LASSO, Ridge) in college-level courses

As you progress to confidence intervals and hypothesis tests later in the AP course, keep this lesson's core principle in mind: every inferential procedure you learn relies on having a point estimate whose sampling distribution is centered at the parameter. Understanding why that centering matters—and recognizing the few cases where common statistics fail to be unbiased—will strengthen your reasoning on both multiple-choice and free-response questions.

Practice Problems

1
A statistic θ̂ is said to be an unbiased estimator of the parameter θ if which of the following is true? (A) θ̂ = θ for every possible sample (B) E(θ̂) = θ (C) The standard deviation of θ̂ equals zero (D) θ̂ is always greater than θ (E) The sampling distribution of θ̂ is normal
2
A population has variance σ² = 50. A researcher computes the variance of a random sample of size n = 10 using the formula (1/n) Σ(Xᵢ − x̄)². What is the expected value of this statistic? (A) 50 (B) 45 (C) 55.56 (D) 40 (E) 5
3
In a simple random sample of 200 voters, 118 favor a proposed policy. A researcher claims that p̂ = 118/200 = 0.59 is an unbiased estimate of the true proportion p. Which of the following best explains why the researcher's claim is justified? (A) Because 0.59 is close to 0.50 (B) Because the sample size is large enough for the Central Limit Theorem to apply (C) Because E(p̂) = E(X/n) = np/(n) = p for any sample size (D) Because the sample was a simple random sample and therefore free from all error (E) Because the margin of error is small
PROBLEM 4APPLIED
A quality-control engineer takes random samples of n = 5 ball bearings from a production line and measures their diameters. The population of diameters has mean μ = 10.00 mm and standard deviation σ = 0.20 mm. For each sample the engineer computes x̄ and s². (a) What is E(x̄)? Explain why. (b) What is E(s²)? Explain why. (c) The engineer notices that across many samples, the average value of s is about 0.178 mm rather than 0.200 mm. Explain why this does not contradict the fact that s² is unbiased for σ². (d) Suppose the engineer instead used the formula (1/n) Σ(Xᵢ − x̄)² to estimate σ². Compute the expected value of this statistic and state whether it overestimates or underestimates σ².
PROBLEM 5CRITICAL THINKING
Consider a population with three values: {1, 2, 5}. (a) Compute the population mean μ and population variance σ² (using N in the denominator). (b) List all possible random samples of size n = 2 drawn with replacement. For each sample compute x̄ and s² (using n − 1 in the denominator). (c) Use your results from (b) to verify that E(x̄) = μ and E(s²) = σ². (d) Now consider using the sample median as an estimator of the population mean. Compute the sample median for each sample in (b) and determine whether the sample median is an unbiased estimator of μ in this case. Explain your reasoning.

Lesson Summary

A point estimate is a single-number summary computed from sample data to approximate a population parameter. An estimator is unbiased when the mean of its sampling distribution equals the parameter, that is, E(θ̂) = θ. The sample mean x̄ is unbiased for μ, the sample proportion p̂ is unbiased for p, and the sample variance s² (with the n − 1 divisor via Bessel's correction) is unbiased for σ².

A biased estimator has E(θ̂) ≠ θ; the sample standard deviation s is a common example of a statistic that is slightly biased (downward) for σ. Bias and variability are independent properties—a good estimator minimizes both. Unbiased point estimates form the foundation for confidence intervals and hypothesis tests throughout the AP Statistics curriculum.

Varsity Tutors • AP Statistics • Biased and Unbiased Point Estimates