Module 7: Point Estimation and Confidence Intervals

Supporting Lectures:
EGN3443 Module 7 - Statistical Estimation Theory and Practice

What is Estimation?

In statistics, an estimator is a rule for calculating an estimate of a given quantity based on observed data: thus the rule (the estimator), the quantity of interest (the estimand) and its result (the estimate) are distinguished.[1] For example, the sample mean is a commonly used estimator of the population mean.

There are point and interval estimators. The point estimators yield single-valued results. This is in contrast to an interval estimator, where the result would be a range of plausible values. "Single value" does not necessarily mean "single number", but includes vector valued or function valued estimators.

Estimation theory is concerned with the properties of estimators; that is, with defining properties that can be used to compare different estimators (different rules for creating estimates) for the same quantity, based on the same data. Such properties can be used to determine the best rules to use under given circumstances. However, in robust statistics, statistical theory goes on to consider the balance between having good properties, if tightly defined assumptions hold, and having worse properties that hold under wider conditions.

1. Properties of Good Estimators

Definition

An estimator is a statistical function that provides an estimate of a population parameter based on sample data. The quality of an estimator is determined by three key properties:

1.1 Unbiasedness

1.2 Efficiency

1.3 Consistency

1.4 Web References

Wikipedia: https://en.wikipedia.org/wiki/Estimator 

2. Maximum Likelihood Estimation (MLE)

Definition

Maximum Likelihood Estimation is a method of estimating the parameters of a statistical model by maximizing the likelihood function.

Key Steps:

  1. Construct the likelihood function
  2. Take the natural log (log-likelihood)
  3. Differentiate with respect to parameters
  4. Set derivatives to zero
  5. Solve for parameter estimates

Example: Bernoulli Distribution

Web References:

Sample Problems

3. Confidence Intervals for Means

Definition

A confidence interval provides a range of plausible values for a population parameter with a specified level of confidence.

Formula for Population Mean (Known σ):

CI = x̄ ± z(α/2) * (σ / √n)

Example Calculation:

z(0.025) = 1.96
CI = 50 ± 1.96 * (10 / √36)
CI = 50 ± 3.27
CI = (46.73, 53.27)

Web References:

Sample Problems

Bonus 7- 1 Interactive Estimation Problem 

4. Confidence Intervals for Proportions

Definition

Confidence interval for a population proportion estimates the range of true population proportion.

Population proportion is the fraction of individuals in a population that possess a certain characteristic, calculated as the number of individuals with that characteristic divided by the total population size.  For example If a health survey indicates that 150 out of 500 surveyed individuals are smokers, the proportion of smokers in the sample is 
p = 150/500 = 0.3 or 30%.

Formula:

CI = p̂ ± z(α/2) * √[(p̂ * (1-p̂)) / n]

Example Calculation:

z(0.05) = 1.645
CI = 0.4 ± 1.645 * √[(0.4 * 0.6) / 100]
CI = 0.4 ± 0.082
CI = (0.318, 0.482)

Web References:

Sample Problems

5. Tolerance Intervals in Engineering Applications

Definition

Tolerance intervals provide a range expected to contain a specified proportion of a population with a given confidence level.

Types:

  1. Normal Distribution Tolerance Interval
  2. Non-parametric Tolerance Interval
  3. Prediction Intervals

Key Formulas:

Example: Manufacturing Tolerance

Web References:

Recommended Study Resources:

  1. Montgomery's "Design of Experiments"
  2. Casella & Berger's "Statistical Inference"
  3. Online Coursera/edX Statistics Courses