Z-Score vs T-Distribution

Both terms below come up in the same part of the course, and students mix them up. Here is each one defined on its own, side by side, so you can see where they part company.

Z-score

Describing data

A z-score tells how many standard deviations a value lies above or below the mean of its distribution.

A z-score standardizes a value by measuring its distance from the mean in standard deviations. You compute it as z=xμσz = \frac{x - \mu}{\sigma}, where xx is the value, μ\mu (mu) is the mean, and σ\sigma (sigma) is the standard deviation. For example, a score of 85 in a distribution with mean 70 and standard deviation 5 has z=(8570)/5=3z = (85 - 70)/5 = 3, so it sits 3 standard deviations above the mean. A negative z-score means the value is below the mean.

Full entry for z-score

t-distribution

Random variables and distributions

The t-distribution is a symmetric, bell-shaped curve with heavier tails than the normal, used for inference about a mean when the population SD is unknown.

The tt-distribution accounts for the extra uncertainty of estimating the population standard deviation with the sample standard deviation ss. Its exact shape depends on the degrees of freedom: fewer degrees of freedom give fatter tails, and as they grow the curve approaches the standard normal. For example, a one-sample tt test with n=15n = 15 uses the tt model with 151=1415 - 1 = 14 degrees of freedom. The test statistic is t=xˉμ0s/nt = \frac{\bar{x} - \mu_0}{s / \sqrt{n}}, where xˉ\bar{x} is the sample mean and μ0\mu_0 the hypothesized mean.

Full entry for t-distribution

Where each one fits in the course