Mathwords logoMathwords

Systematic Sampling — Definition, Formula & Examples

Systematic sampling is a probability sampling method in which you select every kkth 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 NN and a desired sample of size nn, systematic sampling defines a sampling interval k=N/nk = \lfloor N/n \rfloor. A random integer rr is selected uniformly from 11 to kk, and the sample consists of the elements at positions r,  r+k,  r+2k,  r,\; r+k,\; r+2k,\; \dots until nn elements have been chosen.

Key Formula

k=Nnk = \left\lfloor \frac{N}{n} \right\rfloor
Where:
  • kk = Sampling interval — select every kth member
  • NN = Total population size
  • nn = Desired sample size

How It Works

First, list or number every member of the population from 1 to NN. Next, calculate the sampling interval kk by dividing the population size by the desired sample size and rounding down. Then pick a random starting point rr between 1 and kk. Finally, select the member at position rr, then every kkth member after that (r+kr + k, r+2kr + 2k, 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.
k=50025=20k = \left\lfloor \frac{500}{25} \right\rfloor = 20
Step 2: Choose a random starting point between 1 and 20. Suppose the random number generator gives r=7r = 7.
r=7r = 7
Step 3: Select every 20th bulb starting from bulb 7.
7,  27,  47,  67,  87,  ,  4877,\; 27,\; 47,\; 67,\; 87,\; \dots,\; 487
Step 4: Verify the sample size. The selected positions form the sequence 7+20(i1)7 + 20(i-1) for i=1,2,,25i = 1, 2, \dots, 25. The last bulb selected is at position 7+20(24)=4877 + 20(24) = 487, 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.
k=366=6k = \left\lfloor \frac{36}{6} \right\rfloor = 6
Step 2: Randomly select a starting point between 1 and 6. Suppose r=3r = 3.
r=3r = 3
Step 3: Pick every 6th student on the roster beginning at student 3.
3,  9,  15,  21,  27,  333,\; 9,\; 15,\; 21,\; 27,\; 33
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 kkth 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 kk.
Correction: If the population list has a periodic pattern aligned with kk, the sample can over- or under-represent certain traits. Check for periodicity before applying this method, or shuffle the list first.