Descriptive Statistics Inferential Statistics Research Methods 22 min read July 18, 2026
BY: Statistics Fundamentals Team
Reviewed By: Minsa A (Senior Statistics Editor)

Population vs Sample: What's the Difference?

Suppose you want to know the average height of every adult in the United States. Measuring all 260 million adults is impossible. Instead, you measure 1,000 people chosen at random and use that result to estimate the true average. The 260 million adults are the population. The 1,000 you measured are the sample. That gap between what you want to know and what you can actually measure is the most important distinction in all of statistics.

This guide defines both terms precisely, explains the notation used for population parameters and sample statistics, shows how sampling error arises, walks through five sampling methods with worked examples across healthcare, business, education, and data science, and provides an interactive identifier to classify any research scenario in seconds.

What You'll Learn
  • ✓ The exact definition of population and sample in statistics
  • ✓ Population parameters (μ, σ, σ², P) vs sample statistics (x̄, s, s², p̂)
  • ✓ When to use a census vs a sample — and why it usually matters
  • ✓ The five main sampling methods explained with real examples
  • ✓ What sampling error and sampling bias are — and how to reduce them
  • ✓ Worked examples from healthcare, education, business, and data science
  • ✓ A free interactive tool to classify your own research scenario

What Is a Population in Statistics?

Definition — Statistical Population
A population is the complete collection of all individuals, objects, events, or measurements that share a defined characteristic and are of interest to a researcher. A population is determined by the research question, not by geography. It can be finite (all 500 employees at a company) or theoretically infinite (all possible coin flip outcomes).
Population Size = N (capital N)

The word "population" in statistics does not always mean people. A population can be a set of factory-produced bolts, all blood pressure readings taken under a specific protocol, every webpage indexed by a search engine, or every possible random number a die could produce. The defining feature is that the set is completely specified by the research question before data collection begins.

When you can measure every member of the population, you compute a population parameter — a fixed, exact number. The average annual salary of all 500 employees at one company, for example, is a parameter. You have the payroll. You can compute it exactly. Parameters use Greek letters in standard statistical notation: μ for the population mean, σ for population standard deviation, and σ² for population variance.

Source: Population definition follows NIST Engineering Statistics Handbook §1.1 and Cochran, W.G. (1977). Sampling Techniques (3rd ed.). John Wiley & Sons.

What Is a Sample in Statistics?

Definition — Statistical Sample
A sample is a subset of the population, selected using a defined procedure, used to make inferences about the population as a whole. A good sample is representative — its composition mirrors the population on the characteristics that matter for the study.
Sample Size = n (lowercase n)

When you compute a numerical summary from a sample, you get a sample statistic. The average salary of 50 randomly chosen employees is a statistic. Because you didn't measure everyone, the statistic will differ slightly from the true population parameter. That difference is sampling error, and it is expected — it does not mean the study was done incorrectly.

Sample statistics use Roman letters: (x-bar) for the sample mean, s for sample standard deviation, and for sample variance. The relationship between statistics and parameters is the foundation of hypothesis testing and confidence intervals — both of which use sample statistics to draw conclusions about population parameters.

💡
Featured Snippet — One-Paragraph Answer

A population is the entire group a researcher wants to study, described by parameters (μ, σ). A sample is a smaller subset drawn from that population, described by statistics (x̄, s). Researchers study samples because measuring every member of a population is usually impractical, too costly, or impossible. A well-drawn random sample allows researchers to estimate population parameters accurately using inferential statistics.

Population vs Sample: Key Differences

The table below compares population and sample across every dimension that appears in an introductory statistics course — from notation and formulas to cost, feasibility, and the type of analysis each supports.

Feature Population Sample
DefinitionAll members of the group of interestA selected subset of the population
Size notationN (capital)n (lowercase)
Mean notationμ (mu) (x-bar)
Std. deviation notationσ (sigma)s
Variance notationσ²
Proportion notationP (p-hat)
Numerical summary typeParameter (exact)Statistic (estimate)
Standard deviation formula divisorNn − 1 (Bessel's correction)
FeasibilityOften impractical or impossiblePractical and commonly used
CostVery high (census)Lower
Time requiredLongShorter
AccuracyExact (if measured completely)Approximate (subject to sampling error)
Statistical useDescriptive statistics onlyInferential statistics (hypothesis tests, CIs)
ExampleAll 40,000 students at a university400 randomly selected students

Population Parameter vs Sample Statistic: Notation Reference

The single most tested distinction in introductory statistics is the notation difference between population parameters and sample statistics. Parameters are always represented by Greek letters; statistics by Roman letters.

Measure Population Parameter Sample Statistic Description
Mean μ (mu) x̄ (x-bar) Average value
Standard deviation σ (sigma) s Spread around the mean
Variance σ² Squared spread (average squared deviation)
Proportion P (or π) p̂ (p-hat) Fraction with a characteristic
Correlation ρ (rho) r Linear relationship strength
Size N n Number of members
Regression slope β (beta) b Rate of change in regression
Notation follows American Statistical Association guidelines and Moore, D.S., McCabe, G.P., & Craig, B.A. (2021). Introduction to the Practice of Statistics (10th ed.). W.H. Freeman.

Key Formulas: Population vs Sample

The mean formula is the same whether you're computing a population parameter or a sample statistic — you sum all values and divide by the count. The standard deviation formula differs: for a sample, you divide by n − 1 rather than n. This adjustment is called Bessel's correction, and it corrects for the fact that a sample tends to underestimate the true spread of the population.

Population Mean vs Sample Mean

Population Mean Formula
μ = (Σxᵢ) / N
Σxᵢ = sum of all values N = population size
Sample Mean Formula
x̄ = (Σxᵢ) / n
Σxᵢ = sum of sample values n = sample size

Population Standard Deviation vs Sample Standard Deviation

Population Standard Deviation
σ = √[ Σ(xᵢ − μ)² / N ]
μ = population mean N = population size
Sample Standard Deviation (Bessel's Correction)
s = √[ Σ(xᵢ − x̄)² / (n − 1) ]
= sample mean n − 1 = degrees of freedom
⚠️
Why divide by n − 1 for a sample?

Dividing by n underestimates how spread out the population really is, because the sample values naturally cluster around the sample mean rather than the population mean. Dividing by n − 1 corrects for this bias, making s² an unbiased estimator of σ². This is tested on almost every introductory statistics exam. For more, see the guide to standard deviation.

Census vs Sample Survey

A census is the special case where you measure every member of the population — no sampling involved. The U.S. Census Bureau conducts a national census every 10 years to count every person living in the United States. This gives an exact population count with no sampling error. But it costs billions of dollars and takes years to process.

For everything else — estimating poverty rates, tracking disease prevalence, measuring unemployment — the Census Bureau uses sample surveys like the American Community Survey, which collects data from roughly 3.5 million households each year instead of all 130 million. This gives near-census accuracy at a small fraction of the cost.

Feature Census Sample Survey
Who is measuredEvery member of the populationA selected subset
Sampling errorNone (complete data)Present (by design)
CostVery highSignificantly lower
TimeLongFaster
Result typeParameter (exact)Statistic (estimate)
Feasibility for large groupsDifficult or impossiblePractical
U.S. exampleDecennial Census (every 10 years)American Community Survey (ongoing)
Clinical exampleRecording every patient's blood type at a hospitalTesting a random sample in a clinical trial

Decision Guide: Should You Use a Census or a Sample?

Is the population small (< 200 members) and fully accessible?
✓ Census: measure everyone. No sampling error, exact parameters.
Is the population large, dispersed, or expensive to contact?
✓ Sample: select a representative subset and use inferential statistics.
Is the measurement process destructive (e.g., testing product to failure)?
✓ Sample: testing every unit would destroy the entire inventory.
Do you need results quickly?
✓ Sample: a census of a large population takes months or years.

Population vs Sample Examples Across 6 Fields

The distinction between population and sample depends on what question you are asking, not on the size of the group. A population of 50 people is still a population if you measure all 50. A group of 10,000 is a sample if you only selected them from a larger universe.

Healthcare Research

Worked Example — Healthcare

Scenario: A hospital wants to estimate the average fasting blood glucose level of its 8,000 registered diabetic patients.

P

Population: All 8,000 registered diabetic patients at the hospital (N = 8,000). The parameter of interest is μ, the true mean fasting blood glucose.

S

Sample: 200 patients selected using simple random sampling (n = 200). Their blood glucose readings are collected and averaged to get x̄.

R

Result: x̄ = 142 mg/dL. This sample statistic estimates μ for the full population. A 95% confidence interval then quantifies the uncertainty around that estimate.

✅ The 200-patient sample is a subset of the 8,000-patient population. The sample mean (x̄ = 142 mg/dL) estimates the population mean (μ), which cannot be computed without testing all 8,000 patients.

Education Research

Worked Example — Education

Scenario: A school district wants to evaluate the reading level of its 12,000 third-grade students before designing a new curriculum.

P

Population: All 12,000 third-grade students in the district. The parameter σ represents the true spread in reading scores across all students.

S

Sample: 500 students drawn using stratified sampling — students selected proportionally from each school in the district (n = 500).

R

Result: The sample mean reading score is x̄ = 74.3 and the sample standard deviation is s = 11.6. The district uses these to estimate μ and σ for the full population and plan curriculum resources accordingly.

✅ Stratified sampling ensures every school's students are represented. The sample statistics x̄ and s are used to estimate the population parameters μ and σ without testing all 12,000 students.

Business and Market Research

Worked Example — Business

Scenario: An e-commerce company wants to know what proportion of its 500,000 active customers prefer paying by digital wallet over credit card.

P

Population: All 500,000 active customers (N = 500,000). The population proportion P is the true fraction who prefer digital wallet.

S

Sample: 1,000 customers are randomly selected and surveyed (n = 1,000). The sample proportion p̂ is calculated.

R

Result: 430 of 1,000 say digital wallet. p̂ = 430/1,000 = 0.43. The company estimates that about 43% of all 500,000 customers prefer digital wallet, with a margin of error calculated from the confidence interval for a proportion.

✅ The sample proportion (p̂ = 0.43) estimates the unknown population proportion (P). Surveying all 500,000 customers would be prohibitively expensive for a simple preference question.

🔬

Clinical Trials

Population: all patients with a condition worldwide. Sample: enrolled trial participants. Regulatory bodies like the FDA require well-defined sampling protocols before approving treatments.

🗳️

Election Polling

Population: all eligible voters. Sample: 800–1,200 likely voters surveyed. The margin of error reported in polls directly reflects sampling error from studying a sample rather than the full electorate.

🏭

Quality Control

Population: all units produced on a manufacturing line. Sample: a batch inspected each hour. Testing every unit would halt production; statistical sampling maintains quality with minimal disruption.

📊

A/B Testing

Population: all future website visitors. Sample: users randomly assigned to version A or B during the test window. Results are used to infer which version performs better for the full user base.

Sampling Error and Sampling Bias

Two concepts are often confused but mean very different things for research quality.

What Is Sampling Error?

Definition — Sampling Error
Sampling error is the expected difference between a sample statistic and the true population parameter. It arises naturally because a sample never perfectly mirrors the population it came from. Sampling error is not a mistake — it is an inherent feature of sampling.
Sampling Error = x̄ − μ

If the true average exam score across all students is μ = 75, and a random sample of 30 students yields x̄ = 73.2, the sampling error is −1.8 points. A different random sample of 30 would likely give a different x̄ — some above 75, some below. The distribution of all possible sample means is the sampling distribution, and its spread is measured by the standard error:

Standard Error of the Mean
SE = s / √n
s = sample standard deviation n = sample size SE decreases as n increases

Larger samples produce smaller standard errors, which means sample statistics cluster more tightly around the true population parameter. This is the mathematical basis for why bigger samples give more accurate estimates — a consequence of the Central Limit Theorem and the Law of Large Numbers.

What Is Sampling Bias?

🚫
Sampling Bias vs Sampling Error

Sampling error is random and decreases with larger samples. Sampling bias is systematic — it pulls estimates in one direction regardless of sample size. A biased sampling method cannot be fixed by collecting more data. The source must be identified and eliminated through better study design. For related coverage see the guide to study design.

Sampling bias occurs when some members of the population have a different probability of being selected than others, and that difference is related to the outcome being studied. Classic examples include voluntary response bias (only people with strong opinions respond to a survey), convenience sampling bias (only surveying people who are easy to reach), and undercoverage (systematically missing certain subgroups).

Bias Type What Goes Wrong Real-World Example
Voluntary response Only motivated respondents reply Online polls where people choose to participate
Convenience sampling Only accessible people are included Surveying shoppers at one mall to represent all consumers
Undercoverage Some groups are systematically excluded Phone surveys missing people without landlines
Non-response bias Those who don't respond differ from those who do Customer satisfaction surveys returned mostly by unhappy customers
Leading questions Question wording pushes toward certain answers "Don't you agree that taxes are too high?" surveys

5 Types of Sampling Methods

How a sample is selected determines whether it is likely to be representative. The five methods below cover everything from fully random approaches to practical non-probability designs. For a deeper treatment of each, see the complete guide to study design and sampling on Statistics Fundamentals.

Probability

Simple Random Sampling

Every member of the population has an equal chance of selection. Example: drawing 50 employee IDs from a hat. This is the gold standard for unbiased estimates and the method assumed in most hypothesis tests.

Probability

Stratified Sampling

The population is divided into subgroups (strata) and samples are drawn from each stratum. Example: sampling students proportionally from each grade level. Guarantees representation of all subgroups.

Probability

Cluster Sampling

The population is divided into clusters (e.g., city blocks), a random set of clusters is chosen, and all members within those clusters are measured. More practical for geographically dispersed populations.

Probability

Systematic Sampling

Every kth member is selected after a random start. Example: every 10th person on a voter registration list. Simple to implement; can introduce bias if the list has a periodic pattern.

Non-Probability

Convenience Sampling

Selecting whoever is easiest to reach. Useful for pilot studies and exploratory research. Results cannot be generalized to the full population because the sample is unlikely to be representative.

Sampling method classifications follow CDC Principles of Epidemiology, Lesson 6 and Cochran, W.G. (1977). Sampling Techniques (3rd ed.). John Wiley & Sons.

Interactive: Population or Sample Identifier

Enter details about any research scenario and the tool will classify whether each group described is a population or a sample, and identify the likely parameter or statistic of interest.

Population vs Sample Identifier

How Large Does a Sample Need to Be?

Sample size is one of the most practical questions in applied statistics. Too small and your estimates are unreliable; too large and you waste resources. The right answer depends on how much accuracy you need, how variable the population is, and what level of confidence you require.

Sample Size Formula for Estimating a Mean (known σ)
n = (z* · σ / E)²
z* = critical value (1.96 for 95% CI) σ = population standard deviation E = desired margin of error
Sample Size Calculation — Example

A researcher wants to estimate average daily screen time in adults with a margin of error of ±15 minutes at 95% confidence. Prior studies suggest σ ≈ 60 minutes. What sample size is needed?

1

Identify values: z* = 1.96 (95% CI), σ = 60, E = 15

2

Apply formula: n = (1.96 × 60 / 15)² = (117.6 / 15)² = (7.84)² = 61.5 → round up to 62

3

Interpret: A sample of at least 62 adults will produce a margin of error ≤ 15 minutes at 95% confidence.

✅ n = 62. Verify this with the full sample size calculator.

n≥30
Rule of thumb for the Central Limit Theorem to apply
±3%
Typical margin of error in national political polls (n ≈ 1,000)
Quadruple sample size to halve the standard error
<10%
Sample should be less than 10% of the population for independence

The SAMPLE Framework for Research Planning

Before collecting any data, researchers need to define both their population and their sampling strategy. The SAMPLE framework below provides a structured six-step process for moving from a research question to a valid sample design.

The SAMPLE Framework

S
Specify the Population
Define exactly who or what belongs to your population. Be specific about time period, geography, and qualifying characteristics. "Adults" is not a population. "Adults aged 18–65 living in California in July 2026" is.
A
Assess Research Goals
What parameter are you estimating? A mean, proportion, total, or relationship? Your goal determines which statistic to compute and which hypothesis test or confidence interval to use.
M
Measure the Variables
Identify which variables you need to collect from each sampled unit. Verify the measurement is reliable, valid, and operationally defined before data collection begins.
P
Pick a Sampling Method
Choose simple random, stratified, cluster, systematic, or convenience sampling based on your resources, the structure of your population, and the precision required.
L
Limit Sampling Bias
Identify potential sources of bias before drawing the sample. Use random selection wherever possible, pilot-test your instruments, and plan how to handle non-response.
E
Evaluate Representativeness
After data collection, compare your sample's demographics or characteristics to the known population. If they differ substantially, adjust using weighting or note the limitation in your conclusions.

Common Misconceptions About Population and Sample

Misconception ❌ Wrong Thinking ✅ Correct Understanding
Size determines which it is "The group has 50,000 people, so it must be a sample." A group of 50,000 is a population if it's the entire group you're studying. A group of 10 is a sample if it was selected from a larger group.
Larger sample = no sampling error "If my sample is big enough, the sample mean will exactly equal μ." Sampling error approaches zero as n → ∞, but it never equals zero for a finite sample. Larger samples reduce uncertainty; they don't eliminate it.
Random = representative "I picked randomly, so my sample must represent the population." Random sampling makes a sample likely to be representative on average, but any single random sample may not perfectly mirror the population. That's what confidence intervals account for.
σ and s are the same formula "The standard deviation formula is always Σ(xᵢ − mean)² / n." Population SD divides by N. Sample SD divides by n − 1 (Bessel's correction). Using the wrong formula in a hypothesis test produces incorrect results.
Sampling bias and sampling error are the same "Any error in my sample result is sampling error." Sampling error is random variation from taking a subset. Sampling bias is a systematic, directional distortion from a flawed selection process. More data fixes error; it does not fix bias.

Original Dataset: Student Exam Scores (Population vs Sample)

The table below contains an original dataset of exam scores for 20 students from a fictional class of 100. The first column shows population data (all 20 in a small section); the second shows a random sample of 8 drawn from those 20. Both parameter and statistic values are computed from this data.

Student ID Score (Population, N=20) In Sample (n=8)?
S0188✓ Yes
S0274
S0391✓ Yes
S0465
S0578✓ Yes
S0682
S0755✓ Yes
S0893
S0967✓ Yes
S1076
S1184✓ Yes
S1272
S1389✓ Yes
S1461
S1595✓ Yes
S1670
S1783
S1858
S1977
S2081
μ = 77.9
Population mean (all 20 students)
x̄ = 80.6
Sample mean (8 selected students)
2.7
Sampling error (x̄ − μ)
σ = 11.3
Population SD vs s = 13.0 (sample SD)

This dataset shows that the sample mean (x̄ = 80.6) overestimates the true population mean (μ = 77.9) by 2.7 points — that gap is the sampling error for this particular sample. A different set of 8 students would have produced a different x̄, with a different sampling error, illustrating why repeated sampling produces a distribution of x̄ values centered around μ. This is the core idea behind the Central Limit Theorem.

Glossary: Population vs Sample Key Terms

Term Symbol Definition
PopulationThe complete set of all individuals or measurements of interest in a study
SampleA subset of the population selected to represent it
Population SizeNThe number of members in the population
Sample SizenThe number of members in the sample
Population MeanμThe average of all population values
Sample MeanThe average of all sample values; estimates μ
Population Standard DeviationσThe spread of the entire population; formula uses N
Sample Standard DeviationsThe spread of the sample; formula uses n − 1
Population Varianceσ²Square of the population standard deviation
Sample VarianceSquare of the sample standard deviation; unbiased estimator of σ²
Population ProportionP or πThe true fraction of the population with a characteristic
Sample ProportionThe observed fraction in the sample; estimates P
ParameterGreek letterA numerical summary of the population; fixed but often unknown
StatisticRoman letterA numerical summary of a sample; used to estimate a parameter
Sampling Errorx̄ − μThe difference between a sample statistic and the population parameter
Standard ErrorSE = s/√nThe standard deviation of the sampling distribution of x̄
Sampling BiasSystematic distortion from a flawed selection process; not fixed by more data
CensusMeasuring every member of the population; produces exact parameters
Sampling FrameThe list of population members from which the sample is drawn
Inferential StatisticsUsing sample statistics to draw conclusions about population parameters

Frequently Asked Questions

A population is the complete set of all individuals, objects, or measurements a researcher is studying. A sample is a smaller group drawn from that population to make the study practical. The key is that the sample is used to estimate characteristics of the population, specifically its parameters (μ, σ, P), using sample statistics (x̄, s, p̂). If you measure everyone, you have a census and compute parameters directly. If you measure a subset, you have a sample and use inferential statistics.
Four reasons are common. First, populations are often too large to measure completely. Second, collecting data from everyone is usually too expensive. Third, some measurements are destructive, such as testing products until they fail. Fourth, a complete census often takes so long that the data become outdated. A well-designed sample provides accurate estimates at a fraction of the cost and time.
Both are averages calculated by summing values and dividing by the number of observations. The difference is what they describe. μ (mu) is the true average of the entire population and is usually unknown. x̄ (x-bar) is the average of a sample and varies from sample to sample. Statistical inference uses x̄ to estimate μ, with accuracy depending on the sample size and variability.
Sample standard deviation is calculated using the sample mean rather than the true population mean. Because the sample mean is estimated from the same data, using n would underestimate the true population variance. Dividing by n − 1 corrects this bias and makes s² an unbiased estimator of σ². The quantity n − 1 is known as the degrees of freedom.
Ask whether the group includes every member of the population of interest. If it does, it is a population. If it is only a subset selected from a larger group, it is a sample. The size of the group does not matter. A small group can still be a population if it includes every member of the defined population.
Sampling error is the natural difference between a sample statistic and the population parameter it estimates. It occurs whenever only part of a population is measured. Increasing the sample size reduces sampling error because the standard error decreases as n increases. Sampling bias, however, cannot be fixed simply by collecting more data and requires better sampling methods.
A sampling frame is the actual list of population members from which a sample is selected. Ideally, it matches the target population exactly. If important members are missing from the frame, the resulting sample may be biased. Modern surveys use sources such as voter registration files, address-based sampling, or random-digit dialing to create more representative sampling frames.

What to Study Next

Understanding population versus sample is the prerequisite for almost every topic in inferential statistics. The concepts here appear directly in the following areas, each covered in depth on Statistics Fundamentals:

📉

Sampling Distributions

How sample means are distributed around μ. The foundation for understanding why x̄ reliably estimates μ across repeated samples.

📏

Confidence Intervals

How to construct a range of plausible values for μ based on x̄, s, and n. Every CI formula directly uses the population/sample distinction.

🧪

Hypothesis Testing

Using sample statistics to test claims about population parameters. The z-test and t-test are built on the population vs sample framework.

📊

Descriptive Statistics

Computing and interpreting mean, median, mode, variance, and standard deviation — for both populations and samples.

🔢

Normal Distribution

The sampling distribution of x̄ is approximately normal for large n (by CLT). The normal distribution governs z-scores and critical values.

🧮

Sample Size Calculator

Compute the minimum n needed for a desired margin of error and confidence level, for both means and proportions.

Key references: Fisher, R.A. (1925). Statistical Methods for Research Workers. Oliver and Boyd. | Cochran, W.G. (1977). Sampling Techniques (3rd ed.). John Wiley. | Lohr, S.L. (2019). Sampling: Design and Analysis (3rd ed.). Chapman & Hall. | U.S. Census Bureau | World Health Organization Survey Data