Calculator
Enter the successes, the sample size, the population size and the confidence level.
Explanation
When an appreciable fraction of a finite population of size \(N\) is sampled without replacement, the observations are no longer strictly independent. The finite population correction factor (FPC) adjusts the standard error to account for the fact that knowing part of the population reduces the uncertainty about the rest.
The FPC is relevant when the sampling fraction \(f = n/N\) exceeds 5%. Below that threshold, the standard CI and the corrected one are practically identical.
Formula for the CI with FPC
\( \hat{p} = \frac{x}{n} \)
\( \text{FPC} = \sqrt{\frac{N-n}{N-1}} \)
\( \text{SE}_{\text{FPC}} = \sqrt{\frac{\hat{p}(1-\hat{p})}{n}} \cdot \text{FPC} \)
\( \text{CI} = \hat{p} \pm z_{\alpha/2} \cdot \text{SE}_{\text{FPC}} \)
- \(\hat{p}\): observed sample proportion (\(x/n\)).
- FPC: factor that reduces the standard error when \(n/N\) is large. If \(n \ll N\), FPC ≈ 1.
- z_{α/2}: standard normal quantile (1.645 for 90%; 1.960 for 95%; 2.576 for 99%).
When the FPC matters
- \(f = n/N > 5\,\%\): the correction noticeably narrows the CI.
- \(f > 20\,\%\): the reduction in the CI is substantial.
- \(f < 5\,\%\): the difference between the corrected and uncorrected CI is under 3% and can be ignored.
Worked example
In a company with 800 employees (N = 800), 200 are surveyed (n = 200) and 134 report being satisfied. The sampling fraction is \(f = 200/800 = 25\,\%\), well above the 5% threshold, so the correction is mandatory.
\(\hat{p} = 134/200 = 0.67\). The FPC is \(\sqrt{(800-200)/(800-1)} = \sqrt{600/799} \approx 0.8665\).
The standard error without correction is \(\sqrt{0.67 \cdot 0.33/200} \approx 0.03325\), and with FPC it is \(0.03325 \times 0.8665 \approx 0.02880\).
The 95% CI with FPC is \(0.67 \pm 1.960 \times 0.02880 = [0.613,\; 0.727]\).
Without correction the CI would be \([0.605,\; 0.735]\). The correction reduces the width from ±6.5 pp to ±5.6 pp, a 13% saving in width thanks to the extra information provided by sampling 25% of the population.
Model assumptions
- Simple random sampling without replacement from a population of exactly known size N.
- Normality condition: \(n\hat{p} \geq 5\) and \(n(1-\hat{p}) \geq 5\).
- N is fixed and known before sampling; if there is uncertainty about N, use the standard CI without correction.
How to interpret the result
The interval \([L, U]\) is the plausible range for the population proportion \(p\) given the chosen confidence level. In frequentist terms, if you repeated the sampling many times and built the CI with the same method, a proportion \(C\) of those intervals would contain the true value of \(p\). The CI with FPC is always equal to or narrower than the standard one: this is not a less precise or less honest result, but a correct reflection of the extra information provided by sampling an appreciable fraction of the population without replacement.
The magnitude of the effect depends directly on \(n/N\). With \(n/N < 5\,\%\), the FPC is practically 1 and both CIs coincide. With \(n/N = 25\,\%\) (as in the example), the width reduction can exceed 10%. The chart shows both intervals side by side so you can see how much the correction gains in your specific case. If you want to report the proportion with the least uncertainty that is honestly justified, always choose the CI with FPC when the design is sampling without replacement and the fraction exceeds 5%.
- Connection with hypothesis testing: if a reference value \(p_0\) falls outside the CI with FPC, the data would reject \(H_0\!: p = p_0\) at significance level \(\alpha = 1 - C\) in the equivalent two-sided test.
- Limits and the normality condition: the CI is based on the normal (Wald) approximation with FPC; it is more reliable when \(n\hat{p} \geq 5\) and \(n(1-\hat{p}) \geq 5\). If these conditions are not met, the interval should be interpreted with caution.
References
- Cochran, W. G. (1977). Sampling Techniques (3rd ed.). Wiley.
- Lohr, S. L. (2019). Sampling: Design and Analysis (3rd ed.). Chapman & Hall.