Understanding the 90% Confidence Interval
A 90% confidence interval represents a range of values calculated from sample data. If you were to repeat your sampling process many times and compute the interval each time, approximately 90% of those intervals would contain the true population parameter.
Consider a manufacturing scenario: a facility produces steel components with a target weight of 500 grams. After weighing 150 randomly selected components, the mean weight is 501.2 grams with a standard deviation of 8.5 grams. The 90% confidence interval might be 499.1 to 503.3 grams. This means the facility can be 90% confident that the actual average weight of all components falls within this range.
The confidence level you choose reflects your tolerance for uncertainty. A 90% confidence interval is narrower than a 95% interval (meaning more precision) but involves slightly higher risk of missing the true parameter. Industries requiring stricter quality assurance often prefer 95% or 99% levels.
The Mathematics of Confidence Intervals
The confidence interval calculation involves three key steps: determining standard error from your sample spread, computing the margin of error using the z-score, and then building the interval around your sample mean.
SE = σ / √n
ME = SE × Z(0.90)
Lower Bound = x̅ − ME
Upper Bound = x̅ + ME
σ (sigma)— Standard deviation of your sample, measuring how spread out your observations are from the mean.n— Sample size; the total number of observations or measurements you collected.SE— Standard error; the standard deviation divided by the square root of sample size. It estimates the variability of the sample mean.Z(0.90)— Z-score for 90% confidence level, which equals 1.645. This value comes from the standard normal distribution.ME— Margin of error; the distance from the sample mean to each boundary of the confidence interval.x̅ (x-bar)— Sample mean; the average of all your observations.
Step-by-Step Calculation Process
Step 1: Gather your sample statistics. You need the sample mean (x̅), standard deviation (σ), and sample size (n). If you only have standard error available, you can skip the first calculation.
Step 2: Calculate standard error. Divide the standard deviation by the square root of your sample size. For example, with σ = 10 and n = 100, SE = 10 / √100 = 10 / 10 = 1.0.
Step 3: Compute margin of error. Multiply the standard error by 1.645 (the z-score for 90% confidence). Using the previous example: ME = 1.0 × 1.645 = 1.645.
Step 4: Find the bounds. Subtract the margin of error from your mean for the lower bound, and add it for the upper bound. If your sample mean is 50, the interval becomes 50 − 1.645 = 48.355 to 50 + 1.645 = 51.645.
Common Pitfalls and Practical Considerations
Avoid these frequent mistakes when working with confidence intervals.
- Confusing confidence level with probability of a specific interval — The 90% confidence level describes the long-run behavior of the procedure, not the probability that a particular calculated interval contains the parameter. Once computed, your interval either contains the true value or it doesn't—the probability is either 0 or 1 for that specific interval.
- Using sample standard deviation when population standard deviation is known — If your data comes from a population with known standard deviation, use that value instead of calculating sample standard deviation. Using sample standard deviation when you have the true population value introduces unnecessary uncertainty.
- Ignoring sample size constraints and normality assumptions — Confidence interval formulas assume your sample is reasonably large or that data is normally distributed. With very small samples (n < 30) and non-normal data, consider using t-distribution methods instead of z-scores.
- Misinterpreting overlap between confidence intervals — Two overlapping confidence intervals do not imply that two groups are statistically similar. Proper hypothesis testing is needed to make such comparisons, not visual inspection of interval overlap.