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:
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:
| 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 |
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:
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.
| 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 |
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.
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.