Systematic sampling means you pick every nth person from a list — for example, every 5th name. You choose a starting point at random, then count forward by a fixed interval. It is quicker than pure random selection and works well when you already have an ordered list, like a class register or a queue.
When to Use It
- You have an ordered list of your population (a register, a roll, a queue).
- You want a fair sample but want it faster than full randomisation.
- The list has no hidden pattern that lines up with your interval.
- The population is large enough that counting by intervals is practical.
When Not to Use It
- The list has a repeating pattern that matches your interval (this biases the sample).
- You have no list to count through.
- You need subgroups guaranteed in — use stratified sampling.
How to Do It (Plainly)
- Divide the population size by your sample size to get the interval (n).
- Pick a random starting point between 1 and n.
- Select that person, then every nth person after them.
- Continue to the end of the list — that is your sample.
Nigerian Project Example
From a register of 500 students, you need a sample of 100, so your interval is 5. You randomly start at, say, number 3, then pick numbers 3, 8, 13, 18, and so on — every 5th student — until you reach 100 respondents.
Undergraduate vs Postgraduate
Undergraduates like systematic sampling because the interval is easy to explain and apply to a class list. Postgraduates use it too, but pay closer attention to whether the list order could introduce bias, and may combine it with stratification.
Common Mistakes
- Ignoring a repeating pattern in the list that lines up with the interval.
- Starting at a fixed point (always number 1) instead of a random start.
- Calculating the interval wrongly and running out of list before reaching the sample size.
Record your interval and random start in your methodology — see how to write Chapter Three and the full research methodology guide. Compare with simple random sampling and stratified sampling. Project Lab can help you set a safe interval.
Frequently Asked Questions
How do I calculate the sampling interval?
Divide the population size by your sample size. For a population of 500 and a sample of 100, the interval is 5 — you pick every 5th person after a random start.
Is systematic sampling random?
It is a probability method and counts as a form of random sampling because of the random starting point — as long as the list itself has no pattern that lines up with your interval.