Estimation
Point estimation, confidence intervals for means, proportions, and variances, and prediction/tolerance intervals.
In statistical inference, we use sample data to draw conclusions about the entire population. Estimation is the process of determining the most likely value (or range of values) for an unknown population parameter, such as the true mean compressive strength of a concrete mix () or the true proportion of defective rivets in a bridge ().
Point Estimation
Using a single number to estimate an unknown population parameter.
A point estimate is a single value calculated from sample data. For example, the sample mean is a point estimate of the population mean . The sample variance is a point estimate of the population variance .
Properties of a Good Estimator
Not all estimators are created equal. A good estimator should be:
- Unbiased: The expected value of the estimator equals the true population parameter (e.g., ). If we take many samples, the average of our estimates will center exactly on the true value.
- Minimum Variance (Efficient): Among all unbiased estimators, the one with the smallest variance (tightest spread) is preferred. It consistently provides estimates closer to the true value.
Methods of Point Estimation
How do statisticians derive these formulas (like or ) in the first place?
- Method of Moments: Equates sample moments (like the sample mean or variance) to population moments to solve for unknown parameters.
- Maximum Likelihood Estimation (MLE): Finds the parameter value that makes the observed sample data the most "likely" to have occurred. It is the most robust and widely used mathematical method for deriving estimators.
Interval Estimation (Confidence Intervals)
Providing a range of plausible values for the parameter, quantifying the uncertainty.
Because a point estimate will almost never exactly equal the true parameter due to sampling error, we construct a Confidence Interval (CI). A CI provides a range of values and a level of confidence (e.g., 95%) that the true parameter lies within that range.
The general structure of a Confidence Interval is:
The term is called the Margin of Error ().
1. Confidence Interval for the Mean ()
Case 1: Population Variance () Known
If we know the true standard deviation (rare in practice, but possible with extensive historical data), we use the Standard Normal () distribution.
Case 2: Population Variance () Unknown
This is the most common scenario. We must estimate using the sample standard deviation . Because of this added uncertainty, we use the wider Student's t-distribution with degrees of freedom.
Note: As sample size gets very large, the t-distribution converges to the Z-distribution, and the two formulas yield nearly identical results.2. Confidence Interval for the Difference Between Two Means ()
CI for Difference of Means
Used to compare the averages of two distinct populations (e.g., comparing the strength of concrete from two different suppliers). If variances are known:
3. Confidence Interval for a Proportion ( or )
Used for categorical data (e.g., the percentage of structural beams failing an inspection).
Let be the sample proportion (number of successes divided by sample size). If the sample size is large enough (both and ), the sampling distribution of is approximately normal.
CI for a Single Proportion
3. Confidence Interval for the Variance ()
Estimating the variability of a process, crucial for quality control.
Because the sampling distribution of the sample variance () is not symmetric, we use the heavily skewed Chi-Square () distribution with degrees of freedom. The interval is not symmetric around .
CI for a Single Variance
Prediction and Tolerance Intervals
Estimating future individual observations rather than population averages.
While a confidence interval bounds a population parameter (like the mean ), engineers often need to bound future individual measurements.
Prediction Interval
Provides a range that is highly likely (e.g., 95% confidence) to contain a single future observation drawn from the same population. Because an individual observation is much more variable than a sample mean, a prediction interval is always significantly wider than a confidence interval.
Tolerance Interval
Provides a range that is highly likely to contain a specified proportion of the entire population (e.g., 99% of all concrete batches produced). It captures the natural variability of the process. If a 95% tolerance interval for concrete strength is [28 MPa, 35 MPa], we are confident that 95% of all individual batches will fall in this range.
Key Takeaways
- Point Estimate: A single value (e.g., , ) used to estimate a population parameter (, ). Good estimators are unbiased and have minimum variance.
- Confidence Interval (CI): A range of plausible values for a population parameter, incorporating a margin of error based on a chosen confidence level (e.g., 95%).
- Mean CI (Unknown ): The most common scenario; uses the sample standard deviation and the -distribution.
- Proportion CI: Used for categorical (success/failure) data; relies on the normal approximation (-distribution) for large samples.
- Variance CI: Asymmetric interval built using the Chi-Square () distribution.
- Prediction vs. Confidence: A CI estimates the average, while a Prediction Interval estimates a single future value, making it much wider.