T-Distribution Table







What is the T-Distribution?

The t-distribution, also called Student's t-distribution, is a continuous probability distribution used for inference about a population mean when the population standard deviation is unknown and the sample standard deviation is used in its place. It was introduced by William Sealy Gosset in 1908 under the pen name "Student" while he worked at Guinness Brewery, where he needed reliable inference from small samples of barley.

The distribution is symmetric and bell-shaped around zero, like the standard normal, but has heavier tails that account for the extra uncertainty introduced by estimating the standard deviation from the sample. Its shape is controlled by a single parameter, the degrees of freedom ν\nu (typically ν=n1\nu = n - 1 for a one-sample test). As ν\nu increases, the t-distribution converges to the standard normal N(0,1)N(0,1) — by ν30\nu \geq 30 the two are nearly indistinguishable for most practical purposes.

The probability density function is

f(tν)=Γ ⁣(ν+12)νπΓ ⁣(ν2)(1+t2ν)ν+12f(t \mid \nu) = \frac{\Gamma\!\left(\frac{\nu+1}{2}\right)}{\sqrt{\nu \pi}\,\Gamma\!\left(\frac{\nu}{2}\right)} \left(1 + \frac{t^2}{\nu}\right)^{-\frac{\nu+1}{2}}


For full theory see the t-distribution page.
Learn More

How to Read the T-Table

The table above is interactive — pick the variant you need and set your degrees of freedom, and the table regenerates with exact probabilities.

Step 1 — Pick a table variant from the dropdown:

Cumulative (less than t), Positive Values — gives P(Tt)P(T \leq t) for tt from 00 to 4.14.1 in steps of 0.10.1
Cumulative (less than t), Negative Values — gives P(Tt)P(T \leq t) for tt from 4.0-4.0 to 00
Complementary Cumulative (greater than t), Positive Values — gives P(T>t)P(T > t) for tt from 00 to 4.14.1, the right-tail area
Complementary Cumulative (greater than t), Negative Values — gives P(T>t)P(T > t) for tt from 4.1-4.1 to 00

Step 2 — Enter degrees of freedom in the Degrees of Freedom input (default 3030). Each row of the table is one tt value at the increment 0.10.1, evaluated at your ν\nu.

Step 3 — Read off the probability. For a one-tailed test, use the complementary-cumulative variant directly: the value at the table tt is your pp-value. For a two-tailed test, double it. For a confidence interval, take the cumulative-less-than-t variant and read off the tt value at the target probability (e.g., 0.9750.975 for a 95%95\% interval).
Learn More

T-Distribution Properties

The t-distribution has a small number of clean properties that make it tractable for hand calculation and easy to compare to the normal:

Symmetric around zero — the mean is 00 for ν>1\nu > 1 (undefined for ν=1\nu = 1, the Cauchy case)
Varianceνν2\dfrac{\nu}{\nu - 2} for ν>2\nu > 2, otherwise undefined or infinite; always greater than 11, reflecting the heavier tails
Skewness00 for ν>3\nu > 3
Excess kurtosis6ν4\dfrac{6}{\nu - 4} for ν>4\nu > 4, positive for all finite ν\nu, decaying to 00 as ν\nu \to \infty

The symmetry around zero means that for any positive tt, P(Tt)=P(Tt)P(T \leq -t) = P(T \geq t) — which is why the negative-value tables in the widget above are mirror images of the positive ones.

As ν\nu \to \infty, TνZN(0,1)T_\nu \to Z \sim N(0, 1). At ν=30\nu = 30 the difference is around 1%1\% in the tail; by ν=100\nu = 100 the t and z critical values agree to three decimals.
Learn More

Common Applications

The t-distribution is the workhorse of small-sample inference about means. The standard scenarios:

One-sample t-test — testing whether a population mean μ\mu equals a hypothesized value μ0\mu_0 using t=xˉμ0s/nt = \dfrac{\bar{x} - \mu_0}{s / \sqrt{n}} with ν=n1\nu = n - 1
Two-sample t-test (independent) — comparing two group means; degrees of freedom depend on whether variances are pooled (equal-variance assumption) or unequal (Welch's t-test, with the Satterthwaite df approximation)
Paired t-test — comparing before/after measurements on the same subjects, applied to the differences with ν=n1\nu = n - 1
Confidence interval for a meanxˉ±tν,α/2sn\bar{x} \pm t_{\nu,\, \alpha/2} \cdot \dfrac{s}{\sqrt{n}} when σ\sigma is unknown
Regression — the standard t-statistic for each coefficient β^j\hat{\beta}_j uses a t-distribution with ν=np\nu = n - p where pp is the number of fitted parameters

For all of these, the t-distribution replaces the standard normal whenever the population standard deviation must be estimated from the sample. With large samples (n30n \geq 30 as a rough guide) the two are close enough that the z-distribution is often used instead — see the normal distribution table.
Learn More

Degrees of Freedom

Degrees of freedom (ν\nu, or dfdf) measure how many independent observations are available for estimating variability after the parameters of interest have been fitted. For a one-sample test on nn observations, ν=n1\nu = n - 1 because one degree is consumed by estimating the mean. For two independent samples with equal variances, ν=n1+n22\nu = n_1 + n_2 - 2; for Welch's unequal-variance test, ν\nu is given by the Satterthwaite approximation. In regression with nn observations and pp fitted coefficients (including the intercept), ν=np\nu = n - p.

The critical t-value tν,αt_{\nu,\, \alpha} is the value such that P(Tν>tν,α)=αP(T_\nu > t_{\nu,\, \alpha}) = \alpha. Lower ν\nu produces a wider distribution and therefore larger critical values, reflecting the extra uncertainty from a small sample. For example, the two-tailed 5%5\% critical value drops from t4,0.025=2.776t_{4,\, 0.025} = 2.776 to t29,0.025=2.045t_{29,\, 0.025} = 2.045 to t,0.025=1.960t_{\infty,\, 0.025} = 1.960 (the normal value).

Use the widget above to read off any tν,αt_{\nu,\, \alpha} directly. To get the critical value for a given right-tail area α\alpha, choose the Complementary Cumulative (greater than t), Positive Values table at your ν\nu and find the row where the probability equals α\alpha.
Learn More