Sampling Distribution of an Estimator

Context: FIT2086_MOC · the machinery that makes an estimate auditable — an estimator is a random variable, so it has a distribution · consumed by Estimator Quality (Bias, Variance, MSE), then by Confidence Intervals (W4) and hypothesis testing (W5); generalised beyond normal populations by the Central Limit Theorem

Quick Revision

  • 🎯 Objective: any function of the data is a realisation of a random variable follows a distribution determined by the population .
  • ⚡ Key Constraint: the sampling distribution exists only relative to assumed population assumptions — weaker assumptions still give and , but no distributional shape.

📝 Core

  • The chain ➔ population sampling sample inference model. The you hold is one of infinitely many datasets you could have drawn.
  • Estimator as a function ➔ formally maps the sample to the parameter space; if realises , then realises the RV , so .
  • Repeated sampling is the thought experiment ➔ draw each of size ; each gives a different . The histogram of those is the sampling distribution.
  • Standard parametric assumption ➔ assume with the population parameters; weakening it is possible but weakens every statement derivable about .
  • Escape hatch ➔ when the distribution is not analytically obtainable, simulate: resample, recompute , histogram — always an available approximation (see R Simulation and Random Sampling).
  • Three uses ➔ quantify accuracy (confidence intervals) · judge how unlikely a statistic is (hypothesis testing) · compare estimators (the W3 use — bias/variance/MSE).

🧮 Proof Blueprint

Theorem. If iid, then . Strategy: write as a sum of scaled normals, then apply the Gaussian’s two closure facts.

Facts used (from Gaussian Distribution): independent ; and .

Q.E.D. ➔ the sample mean is centred on the unknown population mean with variance the population variance divided by : it decreases with and increases with .

⚖️ Strength of Assumptions

Assumption on What you get about What you cannot do
iid, , (no family named), no shape ➔ no exact probability statements, no exact CI
iid (family named) — full density— (strongest case; needs normality to hold)

When It Flips: both rows give the same mean and variance; the normal assumption buys the distributional shape on top. Naming the family is what licenses "".

📊 Worked Numbers

Population , samples of size :

Sample
1
2
3
4
5

Final extracted output: the scatter around ; over such samples their histogram is not the population’s own spread.

⚠️ Common Mistakes

  • 💡 Confusing with ➔ the sampling distribution is narrower by a factor ; quoting as the spread of the mean overstates uncertainty -fold.
  • 💡 Treating as “the estimate is exact” ➔ it means variability vanishes under the assumed model; model misspecification does not shrink with .
  • 💡 Naming a family for free is a theorem given normal data; from iid-only assumptions you may state and but not the shape.
  • 💡 Reading the histogram as the data’s histogram ➔ it is a histogram of statistics computed from many samples, one point per dataset.

🧠 Active Recall