Sampling and Sampling Distributions Notes
Fundamental Definitions in Sampling
Element: The specific entity on which data are collected during a study.
Population: The complete collection of all the elements that are of interest to the researcher.
Sample: A specific subset of the population chosen for data collection.
Sampled Population: The specific population from which the sample is actually drawn.
Frame: A comprehensive list of the elements that the sample will be selected from.
Purpose of Sampling: The primary reason to select a sample is to collect data to answer research questions about a population. Sample results provide estimates of population characteristics because the sample only contains a portion of the population. With proper methods, samples provide "good" estimates.
Selecting a Sample from a Finite Population
Finite Populations: These are populations often defined by existing lists, such as:
Organization membership rosters.
Credit card account numbers.
Inventory product numbers.
Simple Random Sample (Finite): A sample of size from a finite population of size is selected such that every possible sample of size has the same probability of being selected.
Automation: In large sampling projects, computer-generated random numbers are used to automate selection.
Example: National Baseball League Teams:
Population (): there were teams in the National Baseball League.
Objective: Select a simple random sample of teams for in-depth interviews regarding minor league franchise management.
Step 1: Assign a random number to each of the teams. Using Excel’s
RANDfunction generates numbers following a uniform probability distribution between and .Step 2: Select the teams corresponding to the smallest random numbers as the sample.
Excel Sorting Procedure:
Select a cell in range
B2:B16.Navigate to the
Hometab on the Ribbon.In the
Editinggroup, clickSort & Filter.Choose
Sort smallest to largestto identify the sample elements.
Selecting a Sample from an Infinite Population
Constraints: Sometimes it is impossible to obtain a list of all elements, meaning a frame cannot be constructed. This typically occurring in infinite population cases.
Ongoing Processes: Infinite populations are often generated by processes with no upper limit on units produced. Examples include:
Parts being manufactured on a production line.
Transactions occurring at a bank.
Telephone calls arriving at a technical help desk.
Customers entering a retail store.
Random Sample (Infinite): To make valid inferences, a random sample must satisfy two conditions:
Each element selected comes from the population of interest.
Each element is selected independently.
Point Estimation
Definition: Point estimation is a form of statistical inference where sample data is used to compute a value of a sample statistic that serves as an estimate of a population parameter.
Point Estimators:
is the point estimator of the population mean .
is the point estimator of the population standard deviation .
is the point estimator of the population proportion .
Example: EAI Employee Data:
Total employees (): .
Simple random sample size (): .
Data collected: Annual salary () and participation in a Management Training Program (MTP) [Yes/No].
Unbiasedness: When the expected value of the point estimator equals the population parameter, the estimator is considered unbiased.
Summary of EAI Point Estimates:
Population Mean (): | Point Estimate ():
Population Standard Deviation (): | Point Estimate ():
Population Proportion (): | Point Estimate ():
Important Note: Using different random numbers would identify a different sample, resulting in different point estimates.
Sampling Distribution of
Definition: The probability distribution of all possible values of the sample mean .
Expected Value: , where is the population mean.
Standard Deviation (Standard Error of the Mean):
For a Finite Population: .
For an Infinite Population: .
Finite Population Correction Factor: . This is used unless the sample size is small relative to the population ().
Shape of the Distribution:
If the population has a normal distribution, the sampling distribution of is normal for any sample size.
If the population is not normal, the distribution of can be approximated by a normal distribution for .
If the population is highly skewed or contains outliers, a sample size of may be required.
Central Limit Theorem (CLT)
Definition: In selecting random samples of size from a population, the sampling distribution of the sample mean can be approximated by a normal distribution as the sample size becomes large, regardless of the shape of the original population distribution.
Probability Calculations for (EAI Example)
Problem: What is the probability that a sample mean of is within of the population mean (Note: , )?
Standard Error Calculation: .
Step 1 (Upper Endpoint): . Cumulative probability for is .
Step 2 (Lower Endpoint): . Cumulative probability for is .
Step 3 (Interval Probability): .
Excel Implementation: Using
=NORM.DIST(value, mean, standard_error, TRUE)provides more accurate results than rounded tables.Upper:
=NORM.DIST(72300, 71800, 730.30, TRUE)yields .Lower:
=NORM.DIST(71300, 71800, 730.30, TRUE)yields .Total Probability: .
Effect of Sample Size: If sample size increases to , the standard error decreases from to (). Smaller standard error means values of have less variability and stay closer to .
Sampling Distribution of
Definition: The probability distribution of all possible values of the sample proportion .
Expected Value: , where is the population proportion.
Standard Deviation (Standard Error of the Proportion):
For a Finite Population: .
For an Infinite Population: .
Normal Approximation Condition: The sampling distribution of can be approximated by a normal distribution if:
EAI Example (Proportions):
, .
Check conditions: and . Normal approximation is valid.
Standard error: .
Probability within of : Calculated using
NORM.DISTwith endpoints and . Cumulative probability at is . Interval probability is .
Other Sampling Methods
Stratified Random Sampling:
The population is divided into groups called strata.
Elements within strata should be as homogeneous (alike) as possible.
A simple random sample is taken from each stratum.
Advantage: Can be more precise than simple random sampling with a smaller total sample size.
Examples: Age, department, industry type.
Cluster Sampling:
The population is divided into separate groups called clusters.
Ideally, each cluster is a miniature, heterogeneous (diverse) version of the population.
A simple random sample of clusters is taken, and every element within the chosen clusters is sampled.
Advantage: Cost-effective for area sampling (e.g., city blocks).
Disadvantage: Usually requires a larger total sample size than simple or stratified methods.
Systematic Sampling:
For sample size and population , select one element for every elements.
Randomly select one of the first elements, then pick every -th element thereafter.
Advantage: Easier to identify than a simple random sample.
Convenience Sampling:
Non-probability technique where items are included based on ease of access.
Advantage: Easy data collection.
Disadvantage: Impossible to determine representativeness.
Judgment Sampling:
Non-probability technique where a knowledgeable person selects elements they feel represent the population.
Advantage: Easy to select.
Disadvantage: Results depend entirely on the quality of the selector's judgment.
Errors in Sampling
Sampling Error: The inherent difference between the value of a sample statistic (e.g., ) and the corresponding population parameter (e.g., ).
Nonsampling Errors: Deviations from the population occurring for reasons other than random sampling. These can occur in both samples and censuses.
Coverage Error: Incorrectly defining the population or frame.
Non-response Error: Failure to obtain data from selected elements.
Interviewer Error: Errors introduced by the person conducting the interview.
Processing Error: Data entry or coding mistakes.
Measurement Error: Inaccuracy in the measurement tool or response.
Minimizing Nonsampling Errors:
Carefully define the target population.
Train data collectors properly.
Pretest data collection procedures.
Use stratified sampling for qualitative characteristics or systematic sampling for quantitative characteristics.