Lesson 5 Topic 2 Solutions

Central Limit Theorem (CLT) & Comprehensive Z-Score Analysis
Data Science & Statistical Inference Report

I. Introduction & Theoretical Background

The Central Limit Theorem (CLT) serves as a foundational principle within probability theory and modern data science. It dictates that given a sufficiently large sample size from a population with a finite variance, the distribution of the sample means will be approximately normally distributed (following a Gaussian "bell curve"), regardless of the underlying population's original distribution shape.

In practical analytics and engineering environments, the CLT is indispensable for several core reasons:

II. Population Parameter Calculations

Consider a discrete population consisting of 28 consecutive integers: X = {1, 2, 3, …, 28}. This finite sequence follows a Discrete Uniform Distribution. Below are the primary population parameters derived mathematically:

Table I: Population Statistical Parameters
Parameter Mathematical Formula Calculation Detail Result
Population Size (N) Count 28 consecutive integers 28
Population Mean (μ) μ = (∑ Xi) / N (1 + 2 + … + 28) / 28 = 406 / 28 14.50
Population Variance (σ2) σ2 = ∑(Xi - μ)2 / N Sum of squared deviations / 28 65.25
Population Standard Deviation (σ) σ = √σ2 √65.25 8.0777

III. Sampling Distribution & Z-Score Limit Evaluation

According to the Central Limit Theorem, drawing repeated independent random samples of size n from this population produces a sampling distribution of means with the following formal properties:

Expected Sampling Mean: μx̄ = μ = 14.50
Standard Error (SE): σx̄ = σ / √n

To establish standardised operational boundaries, lower and upper limits are computed at Z = -2.00 and Z = +2.00 standard deviations from the expected mean. Under a standard normal model, this interval (μx̄ ± 2σx̄) encompasses approximately 95.4% of all sample means.

Table II: Theoretical Sampling Properties and Standardized Limits Across Sample Sizes
Sample Size (n) Expected Mean (μx̄) Standard Error (σx̄) Lower Limit (Z = -2.00) Upper Limit (Z = +2.00) Theoretical Interval Coverage
n = 2 14.50 8.0777 / √2 = 5.7118 3.08 25.92 95.4% Expected Range
n = 5 14.50 8.0777 / √5 = 3.6125 7.28 21.73 95.4% Expected Range
n = 10 14.50 8.0777 / √10 = 2.5544 9.39 19.61 95.4% Expected Range
n = 20 14.50 8.0777 / √20 = 1.8062 10.89 18.11 95.4% Expected Range

IV. Empirical Simulation & Visual Convergence

An empirical Monte Carlo simulation was executed comprising 5,000 independent draws at each specified sample size (n ∈ {2, 5, 10, 20}). The results demonstrate clear visual convergence toward a standard Gaussian density curve centered tightly at μ = 14.50.

CLT Simulation Histograms
Fig. 1. Empirical sampling distributions of sample means across 5,000 iterations for sample sizes n = 2, 5, 10, and 20. Overlaid red lines depict the theoretical standard normal curve.

V. Z-Score Hints & Conclusion

Z-Score Boundary Breakdown:

Conclusion: The numerical study and simulation confirm the Central Limit Theorem. As the sample size n increases, the sampling distribution of means rapidly approaches a normal distribution N(14.50, σ2/n), narrowing standard error and improving estimation precision.