Explain the probability sampling strategies with examples.
Probability sampling refers to sampling techniques where every unit in the population has a known, non-zero chance of being selected for the sample. This allows researchers to make statistically valid inferences about the population based on the sample data. Key probability sampling strategies include:
-
Simple Random Sampling (SRS): In SRS, every possible sample of a given size has an equal chance of being selected, and every individual in the population has an equal chance of being included in the sample. This is often done using random number generators or drawing names from a hat.
- Example: To select 100 students from a university of 10,000, each student is assigned a unique number, and a random number generator selects 100 numbers. The students corresponding to these numbers form the sample.
-
Systematic Sampling: This method involves selecting every k-th element from a list after a random start. The sampling interval (k) is determined by dividing the population size by the desired sample size.
- Example: From a list of 1,000 customers, if a sample of 100 is needed, k = 1000/100 = 10. A random starting point between 1 and 10 is chosen (e.g., 7), and then every 10th customer (7, 17, 27, etc.) is selected.
-
Stratified Sampling: The population is divided into homogeneous subgroups (strata) based on shared characteristics (e.g., age, gender, income). Then, a simple random sample is drawn from each stratum. This ensures representation from all key subgroups.
- Example: To study student opinions, a university population might be stratified by academic year (freshman, sophomore, junior, senior). A proportional number of students are then randomly selected from each year group.
-
Cluster Sampling: The population is divided into naturally occurring groups or clusters (e.g., geographical areas, schools). A random sample of clusters is selected, and then all units within the chosen clusters are included in the sample (single-stage cluster sampling) or a random sample of units is taken from the selected clusters (multi-stage cluster sampling).
- Example: To survey high school students in a large city, researchers might randomly select 10 high schools (clusters) and then survey all students within those 10 schools.