Sampling Theory and Estimation for SSC CGL Statistics

advanced 22 min read

Concept

Imagine you are a doctor checking the health of 10 crore Indians. You cannot run tests on every person — you pick a manageable group, draw conclusions, and project them back to the full population. That is sampling in one sentence.

Formally, a population is the complete set of all units under study (denoted N). A sample is a subset of that population (denoted n). The numerical characteristic of the population is a parameter (fixed, usually unknown), and the corresponding measure computed from the sample is a statistic (varies from sample to sample).

The gap between what your sample tells you and what the true population parameter actually is — that gap is called sampling error. It is not a mistake; it is an unavoidable consequence of not studying the whole population. Minimising it is the whole art of sampling theory.

Why does this matter for SSC CGL? The Statistics paper tests you on identifying sampling methods from scenario descriptions, computing standard errors, allocating sample sizes under stratified sampling, and finding systematic sampling units. These are mechanical once you know the framework — but students who confuse the methods under exam pressure lose easy marks.

The analogy that locks this in: think of a population as a huge pot of rice on the stove. Simple random sampling is grabbing a fistful from anywhere. Stratified sampling is ladling from each layer (top, middle, bottom) proportionally. Systematic sampling is scooping every 20th grain in a row. Each method has tradeoffs in cost, precision, and practical feasibility — and the exam will give you a scenario and ask you to name the method or compute a number from it.


Deep Dive

Types of Sampling: The Four You Must Know

Simple Random Sampling (SRS)

Every unit in the population has an equal and independent probability of selection. This is probability sampling at its purest.

Two variants:

Standard Error of the sample mean $\bar{x}$:

The term $\sqrt{\dfrac{N-n}{N-1}}$ is the Finite Population Correction (FPC) factor. When N is very large relative to n, FPC is close to 1 and can be ignored — which is why in SRSWR (where we treat N as effectively infinite), the FPC disappears entirely.

Look — in SRSWR the population size N drops out of the formula completely. The exam loves this distinction.

Stratified Random Sampling

The population is divided into non-overlapping, exhaustive subgroups called strata. Random samples are then drawn independently from each stratum.

Why bother? Because if one stratum is very different from another (e.g., urban vs. rural students), a purely random sample might over-represent one group. Stratification forces representation.

Proportional Allocation: Sample size from stratum h is: $n_h = n \cdot \dfrac{N_h}{N}$

where $N_h$ is the size of stratum h and N is total population size. Every stratum contributes to the sample in proportion to its share of the population.

Optimum (Neyman) Allocation: $n_h \propto N_h \sigma_h$ — strata with larger size or larger internal variation get more sample units. SSC CGL rarely tests Neyman allocation numerically but you should know it by name.

Systematic Sampling

Line up the N population units. Compute the sampling interval $k = N/n$ (always an integer in exam problems). Randomly pick a starting unit r where $1 \leq r \leq k$. Then select units: r, r+k, r+2k, r+3k, ...

The i-th selected unit = $r + (i-1) \cdot k$

This is clean, operationally easy (no need for a random number table after the first pick), and the exam reliably tests "find the 10th selected unit" type problems.

One hidden trap: if the population has a periodic pattern with the same period as k, systematic sampling can be badly biased. The exam occasionally tests this as a disadvantage.

Cluster Sampling

The population is divided into clusters (geographic areas, schools, etc.). Entire clusters are selected at random, and every unit within the selected cluster is included.

The key contrast with stratified sampling: in stratified sampling you sample from every stratum; in cluster sampling you sample only the selected clusters, not all clusters.

Estimator Properties

An estimator is a function of sample observations used to estimate a population parameter. Good estimators have these properties:

Sampling Error vs. Non-Sampling Error

| Sampling Error | Non-Sampling Error | |---|---| | Due to chance selection of units | Due to mistakes in measurement, recording, processing | | Decreases as n increases | Does not necessarily decrease with larger n | | Defined: Statistic − Parameter | Can occur in a census too |


Memory Tricks & Shortcuts

eliminationThe SRS Equal-Chance Test

When a question asks which sampling method gives every member an equal chance, check two things: (1) is selection truly random with no grouping? (2) is probability of selection the same for all units? If both yes, it is Simple Random Sampling. Eliminate Stratified (groups exist, unequal probabilities possible), Cluster (whole clusters selected, individuals in unselected clusters have zero chance), and Systematic (only the first unit is chosen truly randomly). This elimination cuts a 30-second reading question to 10 seconds.

patternThe k-Formula Lock for Systematic Sampling

Every systematic sampling problem follows one formula: i-th unit = $r + (i-1) \cdot k$, where $k = N/n$. Memorise this as "Random start plus (position minus one) times interval." For "10th unit, start 7, N=500, n=50": k = 10, answer = 7 + 9×10 = 97. No need to list all 9 previous units. Standard method (listing): 45 seconds. Formula method: 8 seconds.

patternProportional Allocation in One Multiplication

Proportional allocation = one multiplication: $n_h = n \times \dfrac{N_h}{N}$. The ratio $N_h / N$ is the stratum's share of the population. Compute this share first, then multiply by total sample size n. For N=1000, strata of 400/300/200/100, total sample n=100: shares are 0.4, 0.3, 0.2, 0.1, so samples are 40, 30, 20, 10. Mental arithmetic once you see "proportional allocation" — standard calculation: 40 seconds, pattern recognition: 12 seconds.

patternSRSWR vs SRSWOR: The FPC Switch

SRSWR = no FPC. SRSWOR = multiply $\sigma/\sqrt{n}$ by $\sqrt{(N-n)/(N-1)}$. The exam always tells you which one it is. If it says "with replacement" or asks you to compute SE and gives you only $\sigma$ and n (no N), it is SRSWR — just compute $\sigma/\sqrt{n}$. If N appears in a without-replacement scenario, apply FPC. This saves you from hunting for N when it is irrelevant: SRSWR SE for σ=20, n=100 is 20/10 = 2 in 5 seconds flat.

eliminationStrata vs. Clusters: The In-Out Rule

Stratified: you go IN to every stratum and sample. Cluster: you pick clusters OUT and take everything inside. One word test — if the question says "divided into groups and then randomly selected FROM EACH group," it is Stratified. If it says "groups were randomly selected and all members of chosen groups were included," it is Cluster. This keyword scan takes 5 seconds and eliminates both wrong answers simultaneously.


Fast-Solving Framework

When you see a sampling question in the exam hall, run this check in order:

  1. Is a formula asked? (SE, sample size, unit number) → Identify SRSWR/SRSWOR/Systematic/Stratified, then plug directly into the relevant formula. No prose needed.

  2. Is a method being identified from a scenario?

    • See "equal probability, no grouping" → SRS
    • See "divided into groups, sample FROM EACH" → Stratified
    • See "interval k, random start" → Systematic
    • See "whole groups selected, all members included" → Cluster
  3. Is a property of estimators asked? Check: unbiased = $E(\hat\theta) = \theta$; efficient = minimum variance among unbiased estimators; consistent = converges to $\theta$ as n increases.

  4. Is the question about errors? Statistic minus Parameter = Sampling Error. Anything else (recording errors, non-response) = Non-Sampling Error.

If you cannot place the question within 15 seconds, mark and skip. These questions reward preparation, not in-exam derivation.


Solved PYQs

Why this question: This is the fundamental definitional question. If you cannot answer it, every identification question in the paper is at risk.

Previous Year Questionपिछले वर्ष का प्रश्न
Which of the following sampling methods gives every member of the population an equal chance of being selected?
निम्नलिखित में से कौन सी सैंपलिंग विधि जनसंख्या के प्रत्येक सदस्य को चुने जाने का समान अवसर देती है?
  1. Systematic Sampling
  2. Simple Random Sampling
  3. Cluster Sampling
  4. Stratified Sampling
  1. व्यवस्थित सैंपलिंग
  2. सरल यादृच्छिक सैंपलिंग
  3. क्लस्टर सैंपलिंग
  4. स्तरीकृत सैंपलिंग
Solutionसमाधान
Simple Random Sampling is the method where every individual in the population has an equal and independent probability of being selected. It is the most basic form of probability sampling and forms the foundation of sampling theory.
सरल यादृच्छिक सैंपलिंग वह विधि है जिसमें जनसंख्या के प्रत्येक व्यक्ति को चुने जाने की समान और स्वतंत्र संभावना होती है। यह प्रायिकता सैंपलिंग का सबसे बुनियादी रूप है और सैंपलिंग सिद्धांत की नींव बनाती है।

Solving path: Apply the equal-probability test. Simple Random Sampling is the only method where selection probability is the same for every single unit and independent of grouping. Stratified involves groups, Systematic has a fixed pattern after the first pick, Cluster selects whole groups. Answer: Simple Random Sampling.


Why this question: Stratified vs. Cluster is the most commonly confused pair. This question nails the defining feature of stratification.

Previous Year Questionपिछले वर्ष का प्रश्न
A population of 500 students is divided into 5 groups of 100 each based on their grade level, and then 20 students are randomly selected from each group. What type of sampling is this?
500 छात्रों की जनसंख्या को उनके ग्रेड स्तर के आधार पर 100-100 के 5 समूहों में विभाजित किया जाता है, और फिर प्रत्येक समूह से 20 छात्रों को यादृच्छिक रूप से चुना जाता है। यह किस प्रकार की सैंपलिंग है?
  1. Cluster Sampling
  2. Simple Random Sampling
  3. Stratified Sampling
  4. Convenience Sampling
  1. क्लस्टर सैंपलिंग
  2. सरल यादृच्छिक सैंपलिंग
  3. स्तरीकृत सैंपलिंग
  4. सुविधा सैंपलिंग
Solutionसमाधान
In Stratified Sampling, the population is divided into distinct subgroups (strata) based on a shared characteristic, and samples are drawn from each stratum. Here, the 500 students are divided into 5 grade-level groups (strata), and 20 are selected from each, making it Stratified Sampling.
स्तरीकृत सैंपलिंग में, जनसंख्या को एक साझा विशेषता के आधार पर अलग-अलग उपसमूहों (स्तरों) में विभाजित किया जाता है, और प्रत्येक स्तर से नमूने लिए जाते हैं। यहाँ 500 छात्रों को 5 ग्रेड-स्तर समूहों में बाँटा गया है और प्रत्येक से 20 चुने गए हैं, इसलिए यह स्तरीकृत सैंपलिंग है।

Solving path: Key phrase — "divided into 5 groups... and then 20 students are randomly selected FROM EACH group." Sampling from every subgroup = Stratified. If only some groups were selected and all members of those groups included, it would be Cluster. Answer: Stratified Sampling.


Why this question: Standard error computation under SRSWR is a direct formula application. The exam tests whether you know N is irrelevant here.

Previous Year Questionपिछले वर्ष का प्रश्न
A population of N = 500 units has a standard deviation σ = 20. In simple random sampling with replacement (SRSWR), what is the standard error of the sample mean when n = 100?
N = 500 इकाइयों की एक जनसंख्या का मानक विचलन σ = 20 है। प्रतिस्थापन सहित सरल यादृच्छिक प्रतिचयन (SRSWR) में, जब n = 100 हो तो नमूना माध्य का मानक त्रुटि क्या होगी?
  1. 0.2
  2. 20
  3. 4
  4. 2
  1. 0.2
  2. 20
  3. 4
  4. 2
Solutionसमाधान
In SRSWR, Standard Error of sample mean = σ/√n = 20/√100 = 20/10 = 2. In SRSWR, the population size N does not enter the formula because units are replaced after each draw.
SRSWR में, नमूना माध्य की मानक त्रुटि = σ/√n = 20/√100 = 20/10 = 2। SRSWR में जनसंख्या आकार N सूत्र में नहीं आता क्योंकि प्रत्येक आहरण के बाद इकाई को वापस रख दिया जाता है।

Solving path: SRSWR formula: $SE = \sigma / \sqrt{n} = 20 / \sqrt\{100\} = 20/10 = 2$. Population size N = 500 is a distractor — in SRSWR, N never appears. Answer: 2.


Why this question: Systematic sampling unit calculation. The exam gives you a random start and asks for a specific unit number.

Previous Year Questionपिछले वर्ष का प्रश्न
In systematic sampling, a sample of 50 units is to be drawn from a population of 1000 units. If the first unit selected is 8, what will be the second unit in the sample?
क्रमबद्ध प्रतिचयन में, 1000 इकाइयों की जनसंख्या से 50 इकाइयों का एक नमूना लिया जाना है। यदि चुनी गई पहली इकाई 8 है, तो नमूने में दूसरी इकाई क्या होगी?
  1. 18
  2. 28
  3. 58
  4. 38
  1. 18
  2. 28
  3. 58
  4. 38
Solutionसमाधान
In systematic sampling, the sampling interval k = N/n = 1000/50 = 20. The second unit = first unit + k = 8 + 20 = 28. Every subsequent unit is selected by adding the interval k to the previous unit.
क्रमबद्ध प्रतिचयन में, प्रतिचयन अंतराल k = N/n = 1000/50 = 20। दूसरी इकाई = पहली इकाई + k = 8 + 20 = 28। प्रत्येक अगली इकाई पिछली इकाई में अंतराल k जोड़कर चुनी जाती है।

Solving path: $k = N/n = 1000/50 = 20$. Second unit = first unit + k = 8 + 20 = 28. Answer: 28.


Why this question: The sampling error definition is a guaranteed 1-mark question. Do not confuse it with non-sampling error or standard error.

Previous Year Questionपिछले वर्ष का प्रश्न
The difference between a parameter and its corresponding statistic is known as:
एक प्राचल (Parameter) और उसके संगत सांख्यिकी (Statistic) के बीच के अंतर को क्या कहते हैं?
  1. Non-Sampling Error
  2. Standard Error
  3. Bias
  4. Sampling Error
  1. अ-प्रतिचयन त्रुटि
  2. मानक त्रुटि
  3. पूर्वाग्रह (Bias)
  4. प्रतिचयन त्रुटि
Solutionसमाधान
Sampling error is defined as the difference between the value of a population parameter and the value of the corresponding sample statistic. It arises purely due to the chance selection of units in the sample. Non-sampling errors arise due to mistakes in data collection, recording, or processing.
प्रतिचयन त्रुटि को जनसंख्या प्राचल के मान और संगत नमूना सांख्यिकी के मान के बीच के अंतर के रूप में परिभाषित किया जाता है। यह त्रुटि केवल नमूने में इकाइयों के यादृच्छिक चयन के कारण उत्पन्न होती है। अ-प्रतिचयन त्रुटियाँ आंकड़ों के संग्रह, अभिलेखन या प्रसंस्करण में गलतियों के कारण होती हैं।

Solving path: Sampling error = difference between a population parameter and the corresponding sample statistic. It arises purely from chance selection. Non-sampling error arises from data collection/recording mistakes, and can occur even in a census. Standard error is a measure of variability of the statistic. Answer: Sampling Error.


Why this question: Proportional allocation with equal strata is the simplest case but still catches students who confuse the formula.

Previous Year Questionपिछले वर्ष का प्रश्न
A population of 500 units is divided into 5 strata of equal size. A stratified random sample of 50 units is to be drawn using proportional allocation. How many units will be selected from each stratum?
500 इकाइयों की एक जनसंख्या को समान आकार के 5 स्तरों में विभाजित किया गया है। आनुपातिक आवंटन का उपयोग करके 50 इकाइयों का एक स्तरीकृत यादृच्छिक नमूना लिया जाना है। प्रत्येक स्तर से कितनी इकाइयाँ चुनी जाएंगी?
  1. 8
  2. 5
  3. 10
  4. 25
  1. 8
  2. 5
  3. 10
  4. 25
Solutionसमाधान
In proportional allocation, the sample size from each stratum is proportional to the stratum size. Each stratum has 500/5 = 100 units. The sampling fraction is 50/500 = 1/10. So units from each stratum = 100 × (1/10) = 10.
आनुपातिक आवंटन में, प्रत्येक स्तर से नमूना आकार उस स्तर के आकार के अनुपात में होता है। प्रत्येक स्तर में 500/5 = 100 इकाइयाँ हैं। सैम्पलिंग अनुपात 50/500 = 1/10 है। अतः प्रत्येक स्तर से इकाइयाँ = 100 × (1/10) = 10।

Solving path: Sampling fraction = $n/N = 50/500 = 1/10$. Each stratum has 100 units. Units from each stratum = $100 \times (1/10) = 10$. Or equivalently: $n_h = n \times (N_h/N) = 50 \times (100/500) = 10$. Answer: 10.


Why this question: Proportional allocation with unequal strata — the harder version. Tests whether you can apply the formula when strata sizes differ.

Previous Year Questionपिछले वर्ष का प्रश्न
A population of size N = 1000 is divided into 4 strata of sizes 400, 300, 200, and 100. A stratified random sample of size n = 100 is to be drawn using proportional allocation. How many units should be drawn from the third stratum?
N = 1000 आकार की एक जनसंख्या को 400, 300, 200 और 100 आकार के 4 स्तरों में विभाजित किया गया है। समानुपातिक आवंटन (proportional allocation) का उपयोग करके n = 100 आकार का एक स्तरीकृत यादृच्छिक नमूना निकाला जाना है। तीसरे स्तर से कितनी इकाइयाँ ली जानी चाहिए?
  1. 20
  2. 25
  3. 30
  4. 15
  1. 20
  2. 25
  3. 30
  4. 15
Solutionसमाधान
Under proportional allocation, the sample size from stratum h is n_h = n × (N_h / N). For the third stratum: n_3 = 100 × (200/1000) = 100 × 0.2 = 20. So 20 units are drawn from the third stratum.
समानुपातिक आवंटन में, स्तर h से नमूना आकार n_h = n × (N_h / N) होता है। तीसरे स्तर के लिए: n_3 = 100 × (200/1000) = 100 × 0.2 = 20। अतः तीसरे स्तर से 20 इकाइयाँ ली जाएंगी।

Solving path: $n_3 = n \times (N_3/N) = 100 \times (200/1000) = 100 \times 0.2 = 20$. Answer: 20.


Why this question: The "find the i-th unit" systematic sampling question. This is the harder variant — position 10, not position 2.

Previous Year Questionपिछले वर्ष का प्रश्न
A systematic random sample of size n = 50 is to be drawn from a population of size N = 500. If the sampling interval is k and the first unit selected (random start) is 7, which unit number will be the 10th selected unit?
N = 500 आकार की जनसंख्या से n = 50 आकार का एक क्रमबद्ध यादृच्छिक नमूना (systematic random sample) निकाला जाना है। यदि नमूनाकरण अंतराल k है और पहली चुनी गई इकाई (random start) 7 है, तो 10वीं चुनी गई इकाई संख्या क्या होगी?
  1. 90
  2. 107
  3. 70
  4. 97
  1. 90
  2. 107
  3. 70
  4. 97
Solutionसमाधान
In systematic sampling, the sampling interval k = N/n = 500/50 = 10. The selected units are: 7, 17, 27, 37, ..., i.e., 7 + (i-1)×10 for the i-th unit. The 10th unit = 7 + (10-1)×10 = 7 + 90 = 97.
क्रमबद्ध नमूनाकरण में, नमूनाकरण अंतराल k = N/n = 500/50 = 10 होता है। चुनी गई इकाइयाँ हैं: 7, 17, 27, 37, ... अर्थात i-वीं इकाई = 7 + (i-1)×10। 10वीं इकाई = 7 + (10-1)×10 = 7 + 90 = 97।

Solving path: $k = N/n = 500/50 = 10$. i-th unit = $r + (i-1) \times k$. 10th unit = $7 + (10-1) \times 10 = 7 + 90 = 97$. Answer: 97.


Common Mistakes


Related Topics

Practice on SarkariRise

Sign up + get 3 free mocks →