Tolerance Interval

Introduction

As described in Confidence Intervals, a confidence interval provides a way of estimating a population parameter by a corresponding sample statistic to a given level of confidence. We show how to estimate the population mean (the parameter) by the sample mean (the statistic). In particular, if the experiment is repeated a sufficiently large number of times, then the true population parameter will lie in the 1–α confidence interval in 100(1–α) percent of the samples.

Basic Concepts

The tolerance interval, on the other hand, is an interval pertaining to the entire population and not just to a specific parameter. In particular, we expect that 100(1–α) percent of the entire population will lie in the 1–α tolerance interval.

We now show how to calculate a tolerance interval based on sample data taken from a normally distributed population. In particular, we want to find an interval of the form

Tolerance interval

that contains p% of the population with 100(1–α)% confidence, where is the sample mean and s is the sample standard deviation

Tolerance interval

Howe Estimate

We provide the following estimate for k (due to Howe):

Estimate of k

where n is the sample size, χ2crit is the critical value of the chi-square distribution at α with df = n–1 degrees of freedom and zcrit is the critical value of the standard normal distribution at the value where the cdf is (p+1)/2. Thus

Chi-square stat

z-critical

Guenther recommends using wk instead of k, especially for smaller samples, where

w formula

There are also one-sided tolerance intervals. In particular, we want to find the value of k such p% of the population falls in the interval (–ks, ∞) with 100(1–α)% confidence. The same value of k will ensure that p% of the population falls in the interval (-, +ks) with 100(1–α)% confidence.

Natrella Estimate

We provide the following estimate for k (due to Natrella)

k-statistic (Natrella)

wherea and b

and

zp = NORM.S.INV(p)            zα = NORM.S.INV(α)

There is also an alternative estimate based on the noncentral t distribution, namely


k statistic

where tcrit is the critical value at α of the noncentral t distribution T(n–1, zpn). This can be calculated via the Real Statistics formula

tcrit = NT_INV(α, n–1, NORM.S.INV(p)*SQRT(n))

You can also estimate the sample size required to obtain a particular tolerance interval by using Excel’s Goal Seek capability.

Worksheet Function

Real Statistics Function: The Real Statistics Resource Pack contains the following function:

TOLERANCE_NORM(n, p, α, type) = k value of the tolerance interval for a normal distribution (actually k′ for the two-sided interval)

n = sample size, p = tolerance (default .9), α = significance level (default .05)

type = 2 (default) for a two-sided interval, type = 1 for a one-side interval using a non-central t distribution, and type = 0 for a one-sided interval using the Natrella approach.

Observation: Click here for an example of how to calculate the two-sided and one-sided tolerance interval.

2 thoughts on “Tolerance Interval”

  1. Hello Charles,

    I am looking for a clear formula for TIs which are to be used in non-linear regression (4- parameter logistic function in particular, for one dependent and one independent varible). Unfortunately I’m failed to find a proper literature on this specific topic (to my knowledge, formula in the literature are versatile and complicated without using an automatic calculation via a software). Can you please share your recommendations for me to understand the way of calculation of TIs for such a case or advice some useful references?

    Reply

Leave a Comment