Systematic Sampling — Definition, Formula & Examples
Systematic sampling is a probability sampling method in which you select every th member from an ordered list after choosing a random starting point. It provides an easy, structured way to draw a representative sample from a large population.
Given a population of size and a desired sample of size , systematic sampling defines a sampling interval . A random integer is selected uniformly from to , and the sample consists of the elements at positions until elements have been chosen.
Key Formula
Where:
- = Sampling interval — select every kth member
- = Total population size
- = Desired sample size
How It Works
First, list or number every member of the population from 1 to . Next, calculate the sampling interval by dividing the population size by the desired sample size and rounding down. Then pick a random starting point between 1 and . Finally, select the member at position , then every th member after that (, , and so on) until you reach your target sample size. The method works well when the population list has no hidden periodic pattern that could align with the sampling interval, which would introduce bias.
Worked Example
Problem: A factory produces 500 light bulbs per shift. A quality inspector wants to test a sample of 25 bulbs. Use systematic sampling to determine which bulbs to select.
Step 1: Calculate the sampling interval by dividing the population size by the sample size.
Step 2: Choose a random starting point between 1 and 20. Suppose the random number generator gives .
Step 3: Select every 20th bulb starting from bulb 7.
Step 4: Verify the sample size. The selected positions form the sequence for . The last bulb selected is at position , which is within the population. The sample contains exactly 25 bulbs.
Answer: Select bulbs numbered 7, 27, 47, 67, 87, …, 487 — every 20th bulb starting from bulb 7, giving a sample of 25.
Another Example
Problem: A teacher has a class roster of 36 students and wants to choose 6 for a survey. Describe the systematic sampling procedure.
Step 1: Find the sampling interval.
Step 2: Randomly select a starting point between 1 and 6. Suppose .
Step 3: Pick every 6th student on the roster beginning at student 3.
Answer: The survey sample is students numbered 3, 9, 15, 21, 27, and 33 on the roster.
Why It Matters
Systematic sampling appears on the AP Statistics exam whenever you need to identify or design a sampling method. Beyond the classroom, it is the go-to technique in manufacturing quality control, ecological line-transect surveys, and audit sampling, where numbering and selecting every th item is far more practical than drawing names from a hat.
Common Mistakes
Mistake: Forgetting to randomize the starting point and always beginning at position 1.
Correction: The random start is what makes systematic sampling a probability method. Without it, the same sample is chosen every time, removing randomness and potentially introducing bias.
Mistake: Using systematic sampling on a list that has a repeating cycle matching the interval .
Correction: If the population list has a periodic pattern aligned with , the sample can over- or under-represent certain traits. Check for periodicity before applying this method, or shuffle the list first.
