Sarkari RiseLogin

Sampling Theory and Estimation Questions for SSC CGL

Free, AI-curated practice for the Sampling Theory and Estimation section of SSC CGL. We have 23+ verified questions in this bank. Below: 5 sample questions. Sign up free to unlock unlimited practice + AI explanations + per-topic analytics.

▶ Start free — SSC CGL mockAll SSC CGL resourcesAlready a user? Sign in →
Why this topic matters · 8 min read
Sampling Theory and Estimation appears in SSC CGL Tier 2 Statistics paper (for Statistical Investigator posts). Questions focus on types of sampling methods, properties of good estimators, standard error formulas, and concepts like bias, consistency, and efficiency. Expect 4-6 questions from this topic. Understanding the logic behind each sampling method and estimator property is more important than deep derivations.

Basic Concepts: Population, Sample, Parameter, Statistic

A population is the complete group you want to study. A sample is a smaller subset drawn from it. A parameter is a numerical measure of the population (like population mean mu) while a statistic is a numerical measure of the sample (like sample mean x-bar). The goal of sampling is to estimate unknown population parameters using known sample statistics. Think of it like tasting one spoon of dal to judge the whole pot.

  • Population parameter: fixed, usually unknown (mu, sigma, P)
  • Sample statistic: calculated from data, used to estimate parameter (x-bar, s, p)
  • Sampling frame: the list from which the sample is actually drawn
  • Census vs Sample: Census covers all units; sampling is faster and cheaper
  • Sampling error: difference between sample statistic and true parameter — always present in sampling
Key formulas
Sampling Error
Sampling Error = Statistic - Parameter (x-bar minus mu)
When: To understand the gap between what you calculate and the true value

Types of Sampling Methods

Sampling methods are broadly divided into Probability Sampling (every unit has a known, non-zero chance of selection) and Non-Probability Sampling (selection is based on judgment or convenience, no fixed probability). SSC CGL tests your ability to identify which method is being described in a scenario.

  • Simple Random Sampling (SRS): every unit has equal chance; done with or without replacement (SRSWR vs SRSWOR)
  • Stratified Sampling: population divided into non-overlapping groups (strata) based on a relevant characteristic; sample drawn from each stratum — reduces variability
  • Systematic Sampling: select every kth unit after a random start; k = N/n (sampling interval)
  • Cluster Sampling: population divided into clusters (natural groups); entire clusters are randomly selected — cheap but higher sampling error
  • Multistage Sampling: sampling done in stages (e.g., first select districts, then villages, then households)
  • Quota Sampling and Purposive Sampling are Non-Probability methods — not used for formal inference
Key formulas
Sampling Interval (Systematic)
k = N / n
When: In systematic sampling to find the gap between selected units; N = population size, n = sample size

Standard Error (SE)

Standard Error measures how much a sample statistic varies from one sample to another. It is the standard deviation of the sampling distribution of a statistic. The smaller the SE, the more reliable the estimate. SE decreases as sample size increases — doubling sample size cuts SE by a factor of root 2, not 2. This is a very common exam trap.

  • SE of sample mean (SRSWR): sigma divided by root n
  • SE of sample mean (SRSWOR): (sigma / root n) multiplied by root of (1 - n/N) — the extra term is the Finite Population Correction (FPC)
  • FPC = root of (N - n) / (N - 1) — reduces SE when sample is a large fraction of population
  • SE decreases as n increases; increases as sigma increases
  • SE is NOT the same as standard deviation of the data
Key formulas
SE of Mean (SRSWR)
SE(x-bar) = sigma / sqrt(n)
When: Sampling with replacement or large population
SE of Mean (SRSWOR)
SE(x-bar) = (sigma / sqrt(n)) * sqrt((N - n) / (N - 1))
When: Sampling without replacement from finite population
SE of Proportion
SE(p) = sqrt(P * Q / n) where Q = 1 - P
When: When estimating a population proportion
Worked examples

If sigma = 10 and n = 100 (SRSWR), SE = 10 / sqrt(100) = 10 / 10 = 1. If n increases to 400, SE = 10 / 20 = 0.5. Doubling accuracy requires 4x the sample size.

N = 500, n = 100, sigma = 15. SE (SRSWOR) = (15 / sqrt(100)) * sqrt((500-100)/(500-1)) = 1.5 * sqrt(400/499) = 1.5 * 0.895 = approx 1.34

Properties of a Good Estimator

An estimator is a formula or rule to estimate the population parameter from sample data. Not all estimators are equally good. SSC CGL Tier 2 tests these properties both theoretically (define them) and practically (which estimator is better). Remember the acronym CUBE: Consistency, Unbiasedness, Best (minimum variance), Efficiency.

  • Unbiasedness: E(T) = theta — on average, the estimator equals the true parameter. x-bar is unbiased for mu
  • Consistency: as n increases to N, the estimator converges to the true parameter value
  • Efficiency: among all unbiased estimators, the one with smallest variance is most efficient — called UMVUE (Uniformly Minimum Variance Unbiased Estimator)
  • Sufficiency: an estimator is sufficient if it uses ALL information in the sample about the parameter
  • Bias = E(T) - theta; if Bias = 0, estimator is unbiased
  • Sample variance s-squared = sum of (xi - x-bar)^2 / (n-1) is unbiased for sigma-squared; dividing by n gives biased estimate
Key formulas
Bias of Estimator
Bias(T) = E(T) - theta
When: To check if an estimator is unbiased; unbiased if this equals zero
Mean Square Error
MSE(T) = Variance(T) + [Bias(T)]^2
When: When comparing biased vs unbiased estimators; lower MSE is preferred
Unbiased Sample Variance
s^2 = sum(xi - x-bar)^2 / (n - 1)
When: Always use n-1 (not n) for unbiased variance estimate from a sample
Worked example

If E(T) = 5 and true parameter theta = 7, Bias = 5 - 7 = -2. This estimator underestimates — it is negatively biased. If Variance(T) = 4, then MSE = 4 + (-2)^2 = 4 + 4 = 8.

Interval Estimation and Confidence Intervals

A point estimate gives a single value. An interval estimate gives a range within which the parameter likely falls. A 95 percent confidence interval means: if we took 100 samples and built 100 intervals, 95 of them would contain the true parameter. SSC CGL tests the formula and interpretation, not deep probability theory.

  • 95% CI for mean: x-bar plus or minus 1.96 * (sigma / sqrt(n))
  • 99% CI for mean: x-bar plus or minus 2.576 * (sigma / sqrt(n))
  • Width of CI = 2 * Z * SE — wider CI means less precision but more confidence
  • Confidence level and precision are inversely related: 99% CI is wider than 95% CI
  • Key Z values to memorize: 90% = 1.645, 95% = 1.96, 99% = 2.576
Key formulas
Confidence Interval for Mean
CI = x-bar +/- Z_(alpha/2) * (sigma / sqrt(n))
When: To find the range in which population mean likely lies; Z depends on confidence level
⚠ Common mistakes to avoid
  • Confusing Standard Error with Standard Deviation: SE is the SD of the sampling distribution; it changes with sample size. SD of data does not change with sample size.
  • Using n instead of n-1 when computing unbiased sample variance: dividing by n gives a biased (smaller) estimate of population variance — always use n-1 for unbiased result.
  • Thinking that doubling n will halve the SE: SE is sigma / sqrt(n), so doubling n reduces SE by a factor of root 2 (about 1.41), not 2. To halve SE you need 4 times the sample size.
  • Mixing up Cluster and Stratified Sampling: in stratified sampling you sample FROM each group; in cluster sampling you select entire groups. SSC loves to swap these in MCQ options.
  • Interpreting confidence interval incorrectly: a 95% CI does NOT mean there is a 95% probability that the parameter is in THIS specific interval — the parameter is fixed; it is the interval that is random.
🧠 Memory aids
  • CUBE for estimator properties: Consistency, Unbiasedness, Best (efficiency), Everything in the data (sufficiency)
  • SSCC for sampling types: Simple random, Systematic, Cluster, Stratified — all are probability sampling. Add Quota and Purposive for non-probability.
  • For CI Z-values use the phrase 9-1-6, 9-5-2, 9-9-3: 90% uses 1.645, 95% uses 1.96, 99% uses 2.576 — notice the last digit goes 6, 6, 6 roughly (mnemonically: three sixes, three confidence levels).
  • Stratified = Stir the groups (mix within), Cluster = Collect whole buckets (take all of a group). Stratified reduces error; Cluster is economical but riskier.
🎯 SSC CGL exam tips
  • SSC CGL Tier 2 Stats paper typically has 4-6 questions on this chapter. Most are definitional or formula-based — direct questions like which estimator property means E(T) = theta, or what is the SE formula for SRSWOR.
  • Numeric questions on SE and CI are very common. Keep the Z-values 1.96 and 2.576 memorized cold — you will need them in under 30 seconds.
  • Scenario-based questions ask you to identify the sampling method: if a description says every 10th name is picked from a list, that is systematic sampling. Practice mapping descriptions to method names.
  • Questions on bias frequently appear as: which of these is an unbiased estimator of sigma-squared — the answer is always the one with n-1 in the denominator.
  • FPC (Finite Population Correction) questions test whether you know it applies only in SRSWOR and only when n/N is non-negligible (usually more than 5%). If n/N is small, FPC is approximately 1 and can be ignored.

Sample questions

Q1 · medium · AI-verified
In stratified random sampling, a population of 1000 is divided into two strata of sizes 600 and 400. If a total sample of 100 is to be drawn using proportional allocation, how many units should be drawn from the stratum of size 400?
  1. 25
  2. 50
  3. 40
  4. 60
Q2 · hard · AI-verified
The 95% confidence interval for the population mean is constructed from a sample of size 64 with sample mean 50 and sample standard deviation 16. What is the width of this confidence interval? (Use Z = 1.96)
  1. 7.84
  2. 6.40
  3. 9.80
  4. 3.92
Q3 · medium · AI-verified
A population has mean μ = 50 and standard deviation σ = 10. If a random sample of size n = 100 is drawn, what is the standard error of the sample mean?
  1. 5
  2. 0.1
  3. 1
  4. 10
Q4 · medium · AI-verified
An estimator T is said to be an unbiased estimator of a parameter θ if:
  1. E(T) = 0
  2. E(T) = θ²
  3. E(T) = θ
  4. Var(T) = θ
Q5 · medium · AI-verified
The sample variance s² = Σ(xᵢ - x̄)²/(n-1) is preferred over Σ(xᵢ - x̄)²/n as an estimator of population variance σ² because:
  1. It is an unbiased estimator of σ²
  2. It requires fewer calculations
  3. It always gives a larger value than σ²
  4. It is the maximum likelihood estimator of σ²
💡 Want answers + explanations + 18+ more Sampling Theory and Estimation questions? Sign up free →
⭐ Recommended for SSC CGL aspirants

Pro 6-month

all your target exams · 6 months · unlimited mocks + AI
₹799~₹4.4/day
Sign up free, then unlockSee all plans →

More SSC CGL topics

Current Affairs
203+ practice questions
Geography
130+ practice questions
One Word Substitution
114+ practice questions
History
105+ practice questions
Cloze Test
103+ practice questions
Antonyms
101+ practice questions

Free practice, AI explanations, 24 exams — all in one app

Daily 10-Q quiz · AI doubt solver in Hindi + English · adaptive mocks · 4,150+ verified PYQs.

Sign up freePricingTry Daily 10-Q