"The central limit theorem states that if you have a population with mean μ and standard deviation σ and take sufficiently large random samples from the population with replacement, then the distribution of the sample means will be approximately normally distributed." (from sphweb.bumc.bu.edu)
Reviewing the underlying fundamentals, I got puzzled by an example that attempts to explain how the CLT is formed. More specifically, I wonder why the "large random samples" here should be selected by the "permutation with repetition" method, not the "combination" method. In this example (from a class I'm taking. Not a perfect example since the sample size is not large), we suppose there's a finite population with 8 numbers
54, 55, 59, 63, 64, 68, 69, 70
Then it said all possible samples of n=2 will be 64. This is so because we can do 8C2*2+8 or 8^2
And all the samples will look like this
How do we understand the “sampling with replacement” here? Obviously the order matters here, but why does it?
When order matters, 2 samples with the same elements but different orders will produce the same means. For example, (55,57) and (57,55) both produce sample means of 56. Why would we want the same mean twice?