Should I Use the Finite Population Correction?
Apply the FPC when all three of these hold:
- The population size N is known and fixed.
- Sampling is done without replacement.
- The sampling fraction n/N exceeds approximately 5%.
Quick example (N = 300, n = 30):
FPC = sqrt((300 - 30) / (300 - 1))
FPC = sqrt(270 / 299)
FPC = sqrt(0.9030) ≈ 0.9503
Sampling fraction = 30/300 = 10% → Apply FPC
If the sampling fraction is below 5%, the FPC will be very close to 1 and applying it changes results by less than 2.5%. In that case, the standard large-population formulas give essentially the same answer.
FPC Formula
N = total population size (known, finite)
n = sample size drawn without replacement
(N - n) = unsampled members of the population
(N - 1) = population degrees of freedom
An approximate form that appears in some textbooks is FPC ≈ sqrt(1 - n/N). This version uses N in the denominator instead of N minus 1 and is only valid for large populations. Use the exact form above for all calculations, especially when N is below a few thousand.
FPC Quick Reference Table
The table below shows approximate FPC values for a population of N = 500. All values are illustrative and rounded for readability.
| Sampling Fraction (n/N) | Example n (N = 500) | FPC Value | SE Reduction | Decision |
|---|---|---|---|---|
| 1% | 5 | 0.995 | < 1% | Skip FPC |
| 2% | 10 | 0.990 | ~1% | Skip FPC |
| 5% | 25 | 0.975 | ~2.5% | Borderline |
| 10% | 50 | 0.949 | ~5% | Apply FPC |
| 20% | 100 | 0.894 | ~11% | Apply FPC |
| 30% | 150 | 0.831 | ~17% | Apply FPC |
| 50% | 250 | 0.707 | ~29% | Apply FPC |
| 75% | 375 | 0.500 | ~50% | Essential |
| 100% | 500 | 0.000 | 100% | Census (no error) |
All FPC values are approximate and shown for illustration using N = 500. Exact values depend on the actual N and n in your problem.
What Is the Finite Population Correction?
Most standard error formulas assume one of two things: either sampling is done with replacement, or the population is large enough that drawing a sample barely changes what is left. When neither holds and you've already sampled a meaningful fraction of a known, finite group, those formulas overstate the uncertainty in your estimate.
Think of it this way. If you want to test the composition of a liquid, it doesn't matter whether the liquid came from a test tube or a bathtub, as long as it is well mixed and your sample is small compared to the whole. But if you are testing most of what is in a test tube, what remains in the tube matters a great deal. The FPC captures exactly this idea: the more of the population you sample, the more you already know, and the less variable your estimate should be.
Closer to home: imagine a class of 100 students and you survey 50 of them. You have already removed half the uncertainty about the class. The standard error should reflect that, and it should be smaller than if you were drawing from an effectively infinite pool of students. The FPC makes that adjustment.
FPC reduces the standard error only. It does not change the sample mean, sample proportion, or any other point estimate. The direction of the adjustment is always downward: FPC is always between 0 and 1. When FPC equals 1, no adjustment is needed. When FPC equals 0, there is no sampling error because you have sampled the entire population.
Connection to the Hypergeometric Distribution
When counting successes by sampling without replacement from a finite population, the exact distribution is hypergeometric, not binomial. The variance of the hypergeometric distribution includes a factor of (N - n)/(N - 1), which is exactly the square of the FPC. So the FPC is the square root of the variance correction factor built into the hypergeometric distribution.
The 5% Rule vs the 10% Rule
Students frequently encounter two different thresholds in their courses, and both are correct within their context.
The 5% Convention
Used in many introductory textbooks, including OpenStax Introductory Business Statistics. Apply FPC when n/N exceeds 5%. This is the more conservative threshold and produces narrower confidence intervals in more cases.
The 10% Convention (Cochran 1977)
From Cochran's canonical "Sampling Techniques" (1977). Cochran argues that if the sampling fraction stays below 10%, ignoring FPC produces negligible error. The correction becomes practically meaningful at and above 10%.
Both are rules of thumb for when the FPC becomes practically meaningful. Follow the convention in your course textbook or discipline. If uncertain, apply FPC whenever n/N exceeds 5%. Applying it when not strictly needed does no harm: the result will simply be very close to the unadjusted answer.
How to Apply FPC to a Standard Error for a Mean
σ = population SD (or use sample s if σ unknown)
n = sample size
N = population size
Problem (illustrative): A company has 300 employees (N = 300). HR surveys 30 employees (n = 30) without replacement. The sample standard deviation of satisfaction scores is s = 89.55. Apply the FPC and find the adjusted SE.
Sampling fraction: n/N = 30/300 = 10%. FPC applies.
Calculate FPC: sqrt((300 - 30) / (300 - 1)) = sqrt(270 / 299) = sqrt(0.9030) ≈ 0.9503
Original SE: s / sqrt(n) = 89.55 / sqrt(30) = 89.55 / 5.477 ≈ 16.35
Apply FPC: Adjusted SE = 16.35 × 0.9503 ≈ 15.54
The FPC reduces the standard error from 16.35 to 15.54, a reduction of approximately 5%. This reflects the additional precision gained by sampling 10% of a known finite population without replacement.
How to Apply FPC to a Standard Error for a Proportion
p̂ = sample proportion
n = sample size
N = population size
Problem (illustrative): A county has 1,300 residents (N = 1,300). A random sample of 100 residents (n = 100) is surveyed. 56 express support for a policy proposal, giving p̂ = 0.56. Apply FPC.
Sampling fraction: 100/1,300 ≈ 7.7%. FPC applies (exceeds 5%).
Calculate FPC: sqrt((1,300 - 100) / (1,300 - 1)) = sqrt(1,200 / 1,299) = sqrt(0.9238) ≈ 0.9612
Original SE: sqrt(0.56 × 0.44 / 100) = sqrt(0.002464) ≈ 0.04964
Apply FPC: Adjusted SE = 0.04964 × 0.9612 ≈ 0.04771
The FPC narrows the standard error from 0.04964 to 0.04771, reflecting the additional information gained from sampling nearly 8% of a small, known county population.
FPC and Confidence Intervals
FPC is a multiplier on the standard error, so it slots into confidence interval formulas wherever the SE appears.
Problem (illustrative): Using the employee survey above. x̄ = 1,500, n = 30, N = 300, s = 89.55. t = 2.0452 at 95% confidence with df = 29.
Without FPC: 1,500 ± 2.0452 × (89.55 / sqrt(30)) = 1,500 ± 2.0452 × 16.35 = 1,500 ± 33.44 → CI: (1,466.56, 1,533.44)
With FPC (FPC = 0.9503): 1,500 ± 2.0452 × 16.35 × 0.9503 = 1,500 ± 31.78 → CI: (1,468.22, 1,531.78)
The FPC narrows the confidence interval by approximately $1.67 on each side, reflecting the precision gain from sampling 10% of a known finite group. All numbers are illustrative.
Problem (illustrative): County survey, p̂ = 0.56, n = 100, N = 1,300. z = 1.96 at 95% confidence.
Without FPC: 0.56 ± 1.96 × 0.04964 = 0.56 ± 0.0973 → CI: (0.463, 0.657)
With FPC (FPC = 0.9612): 0.56 ± 1.96 × 0.04771 = 0.56 ± 0.0935 → CI: (0.467, 0.654)
FPC narrows the confidence interval width from approximately 0.195 to 0.187, a meaningful reduction given the 7.7% sampling fraction.
FPC and Sample Size Determination
When the population is finite and known, you need a smaller sample than the standard Cochran formula suggests. The two-step process works as follows.
Cochran Initial Estimate (large population)
n0 = (Z² × p × (1 - p)) / e² where Z = critical value (1.96 at 95%), p = estimated proportion (use 0.5 if unknown), e = desired margin of error.
FPC Adjustment for Finite Population
n = n0 / (1 + (n0 - 1) / N)
Problem (illustrative): 95% confidence, 5% margin of error, N = 500.
Initial estimate: n0 = (1.96² × 0.5 × 0.5) / 0.05² = (3.8416 × 0.25) / 0.0025 = 384.16, rounded to 385.
FPC adjustment: n = 385 / (1 + (385 - 1) / 500) = 385 / (1 + 0.768) = 385 / 1.768 ≈ 218.
Knowing the population is finite at N = 500 reduces the required sample from 385 to approximately 218, a saving of 167 observations. The finite population provides a meaningful efficiency gain.
More Worked Examples
Example 6 — Manufacturing Quality Control
Problem (illustrative): A production batch of 500 items (N = 500) is inspected. 80 items are sampled (n = 80), and 12 are defective. p̂ = 12/80 = 0.15.
Sampling fraction: 80/500 = 16%. Apply FPC.
FPC: sqrt((500-80)/(500-1)) = sqrt(420/499) = sqrt(0.8417) ≈ 0.9174
Original SE: sqrt(0.15 × 0.85 / 80) = sqrt(0.001594) ≈ 0.03992
Adjusted SE: 0.03992 × 0.9174 ≈ 0.03662
95% CI without FPC: 0.15 ± 1.96 × 0.03992 = 0.15 ± 0.0782 → (0.072, 0.228)
95% CI with FPC: 0.15 ± 1.96 × 0.03662 = 0.15 ± 0.0718 → (0.078, 0.222)
Applying FPC narrows the confidence interval for the defect rate. The 16% sampling fraction makes this adjustment meaningful. All numbers are illustrative.
Example 7 — Classroom Survey (High Sampling Fraction)
Problem (illustrative): A class of 100 students (N = 100). 50 students surveyed (n = 50) without replacement. 35 prefer project-based assessment. p̂ = 35/50 = 0.70.
Sampling fraction: 50/100 = 50%. FPC is critical here.
FPC: sqrt((100-50)/(100-1)) = sqrt(50/99) = sqrt(0.5051) ≈ 0.7107
Original SE: sqrt(0.70 × 0.30 / 50) = sqrt(0.0042) ≈ 0.06481
Adjusted SE: 0.06481 × 0.7107 ≈ 0.04607
FPC reduces the standard error by approximately 29% because the sample contains half the class. The remaining uncertainty is far smaller than if drawing from an infinite pool of students.
Example 8 — When FPC Is Negligible
Problem (illustrative): A national survey samples 1,000 people (n = 1,000) from an estimated population of 5,000,000 (N = 5,000,000).
Sampling fraction: 1,000 / 5,000,000 = 0.02%. Well below any threshold.
FPC: sqrt((5,000,000 - 1,000) / (5,000,000 - 1)) = sqrt(4,999,000 / 4,999,999) ≈ 0.9999
The FPC is essentially 1. Applying it would change the standard error by less than 0.01%. Use standard large-population formulas. This is typical for national surveys.
FPC Decision Flowchart
FPC Calculator
Finite Population Correction Calculator
Enter the population size and sample size. Optionally enter an original standard error to get the FPC-adjusted SE.
FPC Visualizer
Adjust N and n to see how the FPC and SE reduction change in real time.
Bar shows approximate standard error reduction from applying FPC.
FPC Practice Tool
Finite Population Correction Practice
When to Use FPC and When Not To
Use FPC when:
- Population size N is known and fixed.
- Sampling is done without replacement.
- The sampling fraction n/N exceeds 5% to 10%.
- You are making inferences about the known finite population specifically.
- The population is a closed group: one company, one school, one production batch, one community.
Do not use FPC when:
- Sampling is done with replacement.
- The population is effectively infinite or unknown.
- The sampling fraction is negligible (below 1% to 2%).
- You intend to generalise results beyond the known finite population.
- The sampling design is complex (stratified, cluster, multistage) without specific design adjustments.
FPC vs Infinite Population: Comparison
| Feature | Finite Population (with FPC) | Infinite Population (standard) |
|---|---|---|
| Population size N | Known and fixed | Unknown or effectively unlimited |
| Sampling method | Without replacement | With replacement or replacement irrelevant |
| SE formula | Standard SE × FPC | Standard SE |
| Direction of adjustment | SE decreases | No adjustment |
| When to use | n/N above 5–10% | n/N below 5% or N unknown |
| Limiting case | n = N: SE = 0 (census) | SE never reaches 0 from formula |
| Underlying distribution | Hypergeometric for counts | Binomial for counts |
Ten Common Mistakes
| Mistake | What Happens and the Correct Approach |
|---|---|
| Forgetting the square root | Using (N-n)/(N-1) directly instead of taking sqrt gives a result smaller than FPC, under-correcting the SE. Always apply sqrt((N-n)/(N-1)). |
| Using N not (N-1) in denominator | The exact formula requires N-1 in the denominator. Using N is an approximation only valid for large populations. |
| Thinking FPC changes the point estimate | FPC adjusts the standard error only. The sample mean or proportion stays exactly the same. |
| Applying FPC when sampling with replacement | FPC is only for without-replacement sampling. With replacement, draws are independent and the standard SE formula is correct. |
| Applying FPC beyond the finite population | If a firm surveys its 300 employees and wants to draw conclusions about all similar firms, FPC for N=300 is wrong. The relevant population is larger. |
| Swapping N and n | FPC numerator is (N-n) and denominator is (N-1). Swapping gives a value above 1, which would incorrectly inflate the SE. |
| Ignoring the sampling fraction check | Applying FPC when n/N is 1–2% adds complexity for no practical gain. The FPC will be essentially 1. |
| Using sqrt(1-n/N) when N is small | The approximate form has less accuracy for small populations. Use the exact form sqrt((N-n)/(N-1)) for all cases. |
| Treating smaller SE as more representative | FPC reduces SE because more of the population is accounted for, not because the sample is qualitatively more representative. A biased sample with FPC applied remains biased. |
| Applying FPC to complex sampling designs | Stratified, cluster, and multistage designs require design-specific variance correction approaches, not a simple FPC multiplier. |
FPC Formula Cheat Sheet
| Formula | Expression |
|---|---|
| FPC (exact) | sqrt((N - n) / (N - 1)) |
| FPC (approximate, large N) | sqrt(1 - n/N) |
| Sampling fraction | f = n/N |
| Adjusted SE for a mean | (σ / sqrt(n)) × sqrt((N-n) / (N-1)) |
| Adjusted SE for a proportion | sqrt(p̂(1-p̂)/n) × sqrt((N-n) / (N-1)) |
| CI for a mean with FPC | x̄ ± t × (s / sqrt(n)) × sqrt((N-n)/(N-1)) |
| CI for a proportion with FPC | p̂ ± z × sqrt(p̂(1-p̂)/n) × sqrt((N-n)/(N-1)) |
| Cochran initial sample size | n₀ = (Z² × p × (1-p)) / e² |
| FPC-adjusted sample size | n = n₀ / (1 + (n₀ - 1) / N) |
| Apply threshold (introductory) | When n/N exceeds 5% |
| Apply threshold (Cochran 1977) | When n/N exceeds 10% |
Practice Questions
Q1: A population of 200 items is sampled without replacement. n = 40. Calculate the FPC.
Sampling fraction: 40/200 = 20%. FPC applies.
Solution:
FPC = sqrt((200 - 40) / (200 - 1)) = sqrt(160 / 199) = sqrt(0.8040) ≈ 0.8967
Interpretation: Applying FPC will reduce the standard error to approximately 89.7% of its unadjusted value, a reduction of about 10%.
Q2: N = 600, n = 60. Is FPC needed? What is the FPC value?
Sampling fraction: 60/600 = 10%. FPC is recommended at this fraction.
FPC = sqrt((600 - 60) / (600 - 1)) = sqrt(540 / 599) = sqrt(0.9015) ≈ 0.9495
The FPC of 0.9495 means the standard error will be reduced by approximately 5% when FPC is applied.
Q3: N = 300, n = 30, original SE = 16.35. Find the adjusted SE.
FPC = sqrt((300-30)/(300-1)) = sqrt(270/299) ≈ 0.9503
Adjusted SE = 16.35 × 0.9503 ≈ 15.54
The FPC reduces the standard error from 16.35 to 15.54.
Q4: N = 100, n = 50, p̂ = 0.70. Find the FPC-adjusted SE for the proportion and a 95% CI.
FPC = sqrt((100-50)/(100-1)) = sqrt(50/99) ≈ 0.7107
Original SE = sqrt(0.70 × 0.30 / 50) = sqrt(0.0042) ≈ 0.06481
Adjusted SE = 0.06481 × 0.7107 ≈ 0.04607
95% CI: 0.70 ± 1.96 × 0.04607 = 0.70 ± 0.0903 → (0.610, 0.790)
Without FPC: 0.70 ± 1.96 × 0.06481 = 0.70 ± 0.127 → (0.573, 0.827). The FPC gives a notably narrower interval because 50% of the class was sampled.
Q5: A researcher claims FPC = (N-n)/(N-1) = 0.85. Identify the mistake.
The researcher forgot to take the square root. The correct formula is FPC = sqrt((N-n)/(N-1)).
If the fraction (N-n)/(N-1) = 0.85, then the correct FPC = sqrt(0.85) ≈ 0.922, not 0.85. Using 0.85 instead of 0.922 would over-correct the standard error downward.
Q6: N = 1,300, n = 100. Calculate FPC and adjusted SE for p̂ = 0.56.
Sampling fraction: 100/1,300 ≈ 7.7%. Apply FPC.
FPC = sqrt((1,300-100)/(1,300-1)) = sqrt(1,200/1,299) ≈ 0.9612
Original SE = sqrt(0.56 × 0.44 / 100) = sqrt(0.002464) ≈ 0.04964
Adjusted SE = 0.04964 × 0.9612 ≈ 0.04771
Q7: Why does FPC not apply when sampling with replacement?
When sampling with replacement, each draw is independent. The same unit can theoretically appear more than once, and the composition of the remaining pool does not change between draws. Standard error formulas assume independence, which holds exactly under with-replacement sampling regardless of population size.
FPC corrects for the fact that without-replacement sampling creates dependence between draws: after drawing unit A, it cannot be drawn again, which reduces variability. That dependence does not exist when replacement is allowed.
Q8: Required sample size at 95% confidence, 3% margin of error, N = 400, p = 0.5.
Step 1 (Cochran): n₀ = (1.96² × 0.5 × 0.5) / 0.03² = (3.8416 × 0.25) / 0.0009 = 1,067.1, rounded to 1,068.
Step 2 (FPC adjustment): Since n₀ = 1,068 exceeds N = 400, the answer simplifies: n = 400 / (1 + (1,068-1)/400) = 400 / (1 + 2.6675) = 400 / 3.6675 ≈ 109.
For this small population, only about 109 people are needed to achieve 3% margin of error at 95% confidence, far fewer than the 1,068 the infinite-population formula suggests.
Q9: N = 800, n = 60. Find the FPC and adjusted SE for p̂ = 0.65.
Sampling fraction: 60/800 = 7.5%. Apply FPC.
FPC = sqrt((800-60)/(800-1)) = sqrt(740/799) = sqrt(0.9262) ≈ 0.9624
Original SE = sqrt(0.65 × 0.35 / 60) = sqrt(0.003792) ≈ 0.06158
Adjusted SE = 0.06158 × 0.9624 ≈ 0.05927
Q10: Explain in plain terms why FPC reduces the standard error.
Standard error measures how much sample estimates would vary across repeated samples. When sampling without replacement from a finite population, each draw removes one unit from the pool, leaving a smaller set of possible outcomes for subsequent draws. As more of the population is sampled, less of it remains unknown.
The FPC captures this reduction in uncertainty mathematically. At the extreme where n = N (a census), FPC = 0 and the standard error is zero: you have observed every member of the population and there is no uncertainty left. For small sampling fractions, nearly all the population remains unobserved and the FPC stays close to 1, so the adjustment is minimal.
FPC and Sampling Theory
Without-replacement sampling is more efficient than with-replacement sampling. Each new observation drawn from the population must differ from all previous observations, so successive draws carry more information. The FPC quantifies this efficiency gain.
For counts, sampling without replacement from a finite population follows the hypergeometric distribution rather than the binomial distribution. The variance of the hypergeometric distribution includes a factor of (N - n)/(N - 1), which is exactly the square of the FPC. The FPC is the square root of this variance correction factor built into the hypergeometric distribution.
For a discussion of how sampling fractions affect the sampling distribution of sample statistics more broadly, see the main sampling distributions section.
Frequently Asked Questions
The finite population correction (FPC) is a multiplier applied to a standard error when sampling without replacement from a known, finite population. It equals sqrt((N-n)/(N-1)) and reduces the standard error to reflect reduced uncertainty when a meaningful fraction of the population has already been observed.
FPC = sqrt((N - n) / (N - 1)), where N is the total population size and n is the sample size drawn without replacement. An approximate form for large N is sqrt(1 - n/N). The exact form using N-1 in the denominator is more accurate, especially when N is small.
Apply FPC when three conditions hold: (1) the population size N is known and finite; (2) sampling is done without replacement; and (3) the sampling fraction n/N exceeds approximately 5% (conservative) or 10% (Cochran). Below these thresholds, FPC is essentially 1 and the effect on the standard error is negligible.
When sampling without replacement, drawing each unit removes it from the pool, so successive draws carry more information than if the same unit could be drawn again. The larger the share of the population already sampled, the less unknown territory remains. FPC captures this reduction in variability mathematically. At n = N (census), FPC = 0 and all uncertainty is eliminated.
No. FPC adjusts the standard error only. The sample mean, sample proportion, and all other point estimates remain exactly the same. A biased sample with FPC applied remains biased. FPC addresses precision (the width of confidence intervals), not accuracy (how close the estimate is to the true value).
The sampling fraction is f = n/N, the proportion of the population included in the sample. It determines how significant the FPC adjustment will be. A sampling fraction of 10% means FPC ≈ 0.949, reducing the standard error by about 5%. A sampling fraction of 50% means FPC ≈ 0.707, reducing the standard error by about 29%.
The 5% rule (from introductory textbooks including OpenStax) says apply FPC when n/N exceeds 5%. The 10% rule (from Cochran's Sampling Techniques, 1977) says apply FPC when n/N exceeds 10%. Both are rules of thumb. At 5%, FPC ≈ 0.975 and the SE reduction is about 2.5%. At 10%, FPC ≈ 0.949 and the reduction is about 5%. Follow the convention used in your textbook or discipline.
No. FPC only applies to without-replacement sampling. When sampling with replacement, each draw is independent and the standard population SE formulas are correct, regardless of how large n is relative to N. The dependence between draws that FPC corrects for simply does not exist under with-replacement sampling.
When n = N, you have sampled the entire population (a census). FPC = sqrt((N-N)/(N-1)) = sqrt(0) = 0. The adjusted standard error is 0, meaning there is no sampling uncertainty. You have observed every member of the population, so any estimate you compute from the sample is an exact population parameter.
When FPC = 1, there is no adjustment needed. This happens when n is negligible relative to N (the sampling fraction approaches 0). In this case the population is effectively infinite, and the standard SE formula already provides the correct answer. For practical purposes, FPC is close enough to 1 to ignore when n/N is below about 2%.
Use Cochran's two-step formula. First calculate the initial sample size assuming an infinite population: n₀ = (Z² × p × (1-p)) / e². Then adjust for the finite population: n = n₀ / (1 + (n₀ - 1) / N). This can substantially reduce the required sample when N is small relative to the initial estimate n₀.
The exact formula is FPC = sqrt((N-n)/(N-1)), using N-1 in the denominator. The approximate form is FPC = sqrt(1-n/N), using N in the denominator. The difference is small when N is large, but becomes noticeable for small populations. For N = 20 and n = 10, the exact form gives sqrt(10/19) ≈ 0.7255 while the approximate form gives sqrt(10/20) = 0.7071. Use the exact form for accuracy.
Do not use FPC when: sampling is with replacement; the population is effectively infinite; the sampling fraction is negligible (below 1-2%); you want to generalise results beyond the specific finite population you sampled; or when using complex sampling designs (stratified, cluster) that require their own variance corrections.