2.9. The t-distribution¶
Suppose we have a quantity of interest from a process, such as the daily profit. In the preceding section we started to answer the useful and important question:
What is the range within which the true average value lies? E.g. the range for the true, but unknown, daily profit.
But we got stuck, because the lower and upper bounds we calculated for the true average, \(\mu\) were a function of the unknown population standard deviation, \(\sigma\). Repeating the prior equation for confidence interval where we know the variance:
which we derived by using the fact that \(\dfrac{\overline{x} - \mu}{\sigma/\sqrt{n}}\) is normally distributed.
An obvious way out of our dilemma is to replace \(\sigma\) by the sample standard deviation, \(s\), which is exactly what we will do, however, the quantity \(\frac{\overline{x} - \mu}{s/\sqrt{n}}\) is not normally distributed, but is \(t\)-distributed. Before we look at the details, it is helpful to see how similar in appearance the \(t\) and normal distribution are: the \(t\)-distribution peaks slightly lower than the normal distribution, but it has broader tails. The total area under both curves illustrated here is 1.0.

There is one other requirement we have to ensure in order to use the \(t\)-distribution: the values that we sample, \(x_i\) must come from a normal distribution (carefully note that in the previous section we didn’t have this restriction!). Fortunately it is easy to check this requirement: just use the q-q plot method described earlier. Another requirement, which we had before, was that we must be sure these measurements, \(x_i\), are independent.

So given our \(n\) samples, which are independent, and from a normal distribution, we can now say:
Compare this to the previous case where our \(n\) samples are independent, and we happen to know, by some unusual way, what the population standard deviation is, \(\sigma\):
So the more practical and useful case where \(z = \frac{\overline{x} - \mu}{s/\sqrt{n}} \sim t_{n-1}\) can now be used to construct an interval for \(\mu\). We say that \(z\) follows the \(t\)-distribution with \(n-1\) degrees of freedom, where the degrees of freedom refer to those from the calculating the estimated standard deviation, \(s\).
Note that the new variable \(z\) only requires we know the population mean (\(\mu\)), not the population standard deviation; rather we use our estimate of the standard deviation \(s/\sqrt{n}\) in place of the population standard deviation.
We will come back to (1) in a minute; let’s first look at how we can calculate values from the \(t\)-distribution in computer software.
2.9.1. Calculating the t-distribution¶
In R we use the function
dt(x=..., df=...)
to give us the values of the probability density values, \(p(x)\), of the \(t\)-distribution (compare this to thednorm(x, mean=..., sd=...)
function for the normal distribution).The cumulative area from \(-\infty\) to \(x\) under the probability density curve gives us the probability that values less than or equal to \(x\) could be observed. It is calculated in R using
pt(q=..., df=...)
. For example,pt(1.0, df=8)
is 0.8267. Compare this to the R function for the standard normal distribution:pnorm(1.0, mean=0, sd=1)
which returns 0.8413.And similarly to the
qnorm
function which returns the ordinate for a given area under the normal distribution, the functionqt(0.8267, df=8)
returns 0.9999857, close enough to 1.0, which is the inverse of the previous example.
2.9.2. Using the t-distribution to calculate our confidence interval¶
Returning back to (1) we stated that
We can plot the \(t\)-distribution for a given value of \(n-1\), the degrees of freedom. Then we can locate vertical lines on the \(x\)-axis at \(-c_t\) and \(+c_t\) so that the area between the verticals covers say 95% of the total distribution’s area. The subscript \(t\) refers to the fact that these are critical values from the \(t\)-distribution.
Then we write:
Now all the terms in the lower and upper bound are known, or easily calculated.
So we finish this section off with an example. We produce large cubes of polymer product on our process. We would like to estimate the cube’s average viscosity, but measuring the viscosity is a destructive laboratory test. So using 9 independent samples taken from this polymer cube, we get the 9 lab values of viscosity: 23, 19, 17, 18, 24, 26, 21, 14, 18
.
If we repeat this process with a different set of 9 samples we will get a different average viscosity. So we recognize the average of a sample of data, is itself just a single estimate of the population’s average. What is more helpful is to have a range, given by a lower and upper bound, that we can say the true population mean lies within.
The average of these nine values is \(\overline{x} = 20\) units.
Using the Central limit theorem, what is the distribution from which \(\overline{x}\) comes?
\(\overline{x} \sim \mathcal{N}\left(\mu, \sigma^2/n \right)\)
This also requires the assumption that the samples are independent estimates of the population viscosity. We don’t have to assume the \(x_i\) are normally distributed.
What is the distribution of the sample average? What are the parameters of that distribution?
The sample average is normally distributed as \(\mathcal{N}\left(\mu, \sigma^2/n \right)\)
Assume, for some hypothetical reason, that we know the population viscosity standard deviation is \(\sigma=3.5\) units. Calculate a lower and upper bound for \(\mu\):
The interval is calculated using from an earlier equation when discussing the normal distribution:
\[\begin{split}\text{LB} &= \overline{x} - c_n \dfrac{\sigma}{\sqrt{n}} \\ &= 20 - 1.95996 \cdot \dfrac{3.5}{\sqrt{9}} \\ &= 20 - 2.286 = {\bf 17.7} \\ \text{UB} &= 20 + 2.286 = {\bf 22.3}\end{split}\]We can confirm these 9 samples are normally distributed by using a q-q plot (not shown, but you can use the code below to generate the plot). This is an important requirement to use the \(t\)-distribution, next.
Calculate an estimate of the standard deviation.
\(s = 3.81\)
Now construct the \(z\)-value for the sample average and from what distribution does this \(z\) come from?
It comes the \(t\)-distribution with \(n-1 = 8\) degrees of freedom, and is given by \(z = \displaystyle \frac{\overline{x} - \mu}{s/\sqrt{n}}\)
Construct an interval, symbolically, that will contain the population mean of the viscosity. Also calculate the lower and upper bounds of the interval assuming the internal to span 95% of the area of this distribution.
The interval is calculated using (2):
\[\begin{split}\text{LB} &= \overline{x} - c_t \dfrac{s}{\sqrt{n}} \\ &= 20 - 2.306004 \cdot \dfrac{3.81}{\sqrt{9}} \\ &= 20 - 2.929 = 17.1 \\ \text{UB} &= 20 + 2.929 = 22.9\end{split}\]using from R that
qt(0.025, df=8)
andqt(0.975, df=8)
, which gives2.306004
Comparing the answers for parts 4 and 8 we see the interval, for the same level of 95% certainty, is wider when we have to estimate the standard deviation. This makes sense: the standard deviation is an estimate (meaning there is error in that estimate) of the true standard deviation. That uncertainty must propagate, leading to a wider interval within which we expect to locate the true population viscosity, \(\mu\).
We will interpret confidence intervals in more detail a little later on.