The t-distribution

Often is an unknown value, much like . It can be shown that replacing with results in a -distribution, so we often use that.

The t-distribution in terms of sample standard deviation

To show this, note the alternative form for :

Applying that to the typical standardization formula:

This right hant side is known as the t-distribution , this can be verified with R:

N = 3000
n = 5
qqplot(
  rt(N, n - 1),
  rnorm(N) / sqrt(n * rchisq(N, n - 1))
)

Sampling Distributions

Recall from Biased Estimators: Variance of a Sample Mean that:

Likewise: