Statistics · easy
Asked in Data Scientist interviews, in the Statistics round.
The law of large numbers says the sample mean converges to the true mean as n grows. The CLT says how it gets there: the sampling distribution of the mean becomes normal with spread sigma over root n.
Two statements about the sample mean, one about where it goes and one about how it is spread on the way.
The law of large numbers: average enough independent draws and the sample mean settles on the population mean. It says nothing about the shape of the errors, only that they shrink.
The Central Limit Theorem: for large n the sample mean is approximately normal around the true mean with standard deviation sigma divided by the square root of n, whatever the shape of the underlying data. That is what lets you put a confidence interval or a p-value on a mean of skewed revenue numbers.
The interview version: LLN is why more data makes the estimate closer, CLT is why you can say how close, and both need independence. Autocorrelated daily metrics or one user contributing many rows break the "root n" part first.