Now I have solid material. Here is a thorough, well-structured response:
Sampling - Fundamentals, Need, Definitions & Important Sampling Distributions
1. What is Sampling?
Sampling is the process of selecting a subset of individuals or observations (called a sample) from a larger group (called the population) in order to study and draw conclusions about the population without examining every single unit.
2. Why Do We Need Sampling? (Need for Sampling)
Examining an entire population is rarely feasible. Sampling is necessary because:
| Reason | Explanation |
|---|
| Cost | Studying every unit is expensive. A sample cuts costs dramatically. |
| Time | A census takes too long; a sample yields faster results. |
| Practicality / Feasibility | Some populations are too large, geographically scattered, or inaccessible. |
| Destructive Testing | e.g., testing the lifetime of bulbs - you can't test all without destroying them. |
| Accuracy | A well-managed sample can sometimes be MORE accurate than a poorly managed census (less non-sampling error). |
| Infinite Populations | Some populations are theoretically infinite (e.g., all future patients), making a census impossible. |
3. Fundamental Definitions
Population
The entire group of individuals, items, or observations that you want to study or draw conclusions about.
- Example: All university students in India.
Sample
A subset of the population selected for actual study.
- Example: 500 university students from 10 colleges.
Parameter
A numerical summary (fixed value) that describes a characteristic of the population.
- Notation: Population mean = μ (mu), Population standard deviation = σ (sigma), Population proportion = P
Statistic
A numerical summary calculated from the sample data. It is a random variable - it changes from sample to sample.
- Notation: Sample mean = x̄ (x-bar), Sample standard deviation = s, Sample proportion = p̂ (p-hat)
Sampling Frame
The list or source from which the sample is drawn. Ideally, it should cover the entire population.
- Example: Voter registration rolls, hospital patient database.
Sampling Unit
The individual element selected during sampling - could be a person, household, or organization.
Census
Collecting data from every unit in the population. Contrasts with sampling.
Sampling Error
The difference between a sample statistic and the true population parameter, caused by the fact that only part of the population is observed. It decreases as sample size (n) increases.
Non-Sampling Error
Errors not related to sampling - arising from poor design, measurement mistakes, non-response, or data entry errors.
Standard Error (SE)
The standard deviation of a sampling distribution. It measures how much a sample statistic varies from sample to sample.
- SE of the Mean: SE = σ / √n
- As n increases, SE decreases - larger samples give more precise estimates.
Estimator vs Estimate
- Estimator: The formula or rule used (e.g., x̄ as an estimator of μ)
- Estimate: The specific numerical value from a sample (e.g., x̄ = 52.4)
4. Properties of a Good Estimator
| Property | Meaning |
|---|
| Unbiasedness | On average, the estimator equals the true parameter: E(x̄) = μ |
| Consistency | As n → ∞, the estimator converges to the true parameter |
| Efficiency | Among all unbiased estimators, it has the smallest variance |
| Sufficiency | Uses all relevant information in the sample |
5. Types of Sampling Methods
Probability Sampling (Random)
Every unit has a known, non-zero probability of being selected.
- Simple Random Sampling (SRS) - each unit equally likely; done with/without replacement
- Stratified Sampling - population divided into homogeneous strata; random sample from each
- Systematic Sampling - every k-th unit selected after a random start
- Cluster Sampling - population divided into clusters; entire clusters randomly selected
- Multistage Sampling - sampling done in stages (e.g., states → districts → households)
Non-Probability Sampling
- Convenience Sampling, Purposive/Judgement Sampling, Snowball Sampling, Quota Sampling
6. Sampling Distribution - The Core Concept
A
sampling distribution is the probability distribution of a sample statistic (e.g., x̄) computed from
all possible samples of a fixed size n drawn from a population. -
PSU STAT 500
Key insight: A sample statistic (like x̄) is a random variable. Each time you draw a sample and compute x̄, you get a different value. The distribution of all those possible x̄ values IS the sampling distribution.
7. Important Sampling Distributions
7.1 Sampling Distribution of the Sample Mean (x̄)
-
If population is normal with mean μ and SD σ:
- x̄ ~ N(μ, σ²/n) exactly, for any n
-
If population is not normal (any shape):
- By the Central Limit Theorem (CLT): x̄ ~ N(μ, σ²/n) approximately, for large n (n ≥ 30)
Properties:
- Mean of sampling distribution = μ (unbiased)
- Standard Error = σ/√n
- Shape approaches normal as n increases (even for skewed populations)
7.2 Central Limit Theorem (CLT)
"Regardless of the shape of the population distribution, the sampling distribution of the sample mean approaches a normal distribution as the sample size n becomes large (n ≥ 30)."
This is perhaps the most important theorem in statistics because it justifies using normal-distribution-based methods even when the population is non-normal.
7.3 Sampling Distribution of Sample Proportion (p̂)
When working with categorical data:
- p̂ = x/n (number of successes / sample size)
- Mean: E(p̂) = P (population proportion)
- Standard Error: SE(p̂) = √[P(1-P)/n]
- By CLT: p̂ ~ N(P, P(1-P)/n) approximately, when np ≥ 5 and n(1-p) ≥ 5
7.4 Chi-Square (χ²) Distribution
- Distribution of the sum of squares of k independent standard normal variables
- Used for: variance estimation, goodness-of-fit tests, tests of independence
- Shape is right-skewed; becomes more symmetric as degrees of freedom (df) increase
- If X₁, X₂, ..., Xₙ ~ N(0,1), then: χ² = ΣXᵢ² with n degrees of freedom
- Sampling distribution of sample variance s²:
7.5 Student's t-Distribution
- Used when population σ is unknown and must be estimated by sample s
- t = (x̄ - μ) / (s/√n) with (n-1) degrees of freedom
- Shape: bell-curve, symmetric, but heavier tails than normal
- As df → ∞, t-distribution → standard normal (Z)
- Critical for small samples (n < 30) when σ is unknown
7.6 F-Distribution
- Ratio of two independent chi-square variables, each divided by their degrees of freedom:
- F = (χ²₁/df₁) / (χ²₂/df₂)
- Right-skewed, always positive
- Used in: ANOVA, comparing two variances, regression analysis
- Parameters: two degrees of freedom (df₁ = numerator, df₂ = denominator)
7.7 Summary Table of Key Sampling Distributions
| Distribution | Used For | Key Formula | Shape |
|---|
| Normal (Z) | Large n, σ known | Z = (x̄ - μ)/(σ/√n) | Symmetric bell |
| t-Distribution | Small n, σ unknown | t = (x̄ - μ)/(s/√n) | Bell, heavy tails |
| χ² Distribution | Variance, goodness-of-fit | (n-1)s²/σ² | Right-skewed |
| F-Distribution | Compare 2 variances, ANOVA | s₁²/s₂² | Right-skewed |
| Binomial → Normal | Proportions (large n) | p̂ ~ N(P, P(1-P)/n) | Approx. Normal |
8. Finite Population Correction (FPC)
When sampling without replacement from a finite population of size N, the standard error is adjusted:
SE = (σ/√n) × √[(N-n)/(N-1)]
The term √[(N-n)/(N-1)] is the Finite Population Correction Factor. It reduces the SE because sampling more of the population gives a more precise estimate. When n/N < 5%, the FPC is negligible.
Quick Visual Summary
Population (N units)
↓ [Sampling]
Sample (n units)
↓ [Calculate statistic]
Sample Statistic (x̄, p̂, s²)
↓ [Repeated many times]
Sampling Distribution
↓ [Apply CLT / theory]
Inference about Population Parameter (μ, P, σ²)
These fundamentals form the backbone of
inferential statistics - everything from confidence intervals to hypothesis tests to regression relies on understanding how sample statistics are distributed. For further depth, the
PSU STAT 500 Applied Statistics course and
Statistics By Jim are excellent free references.