Statistics: Confidence interval for the mean(sigma known)

This is part of the course “Probability Theory and Statistics for Programmers”.

Probability Theory and Statistics For Programmers

Confidence interval

The confidence interval gives a range of possible values for a parameter computed from the observed data. Confidence intervals often appear in media. For example: “The last survey found with 95% confidence that 74.6% ±3% of software developers have Bachelor’s degree”. From this example, we can construct the confidence interval: (71.6%, 77.6%) by subtracting and adding 3%. The desired level of confidence is set by the researcher(not determined by data). Most commonly, the 95% confidence level is used. The ±3% is a margin of error — a statistic expressing the amount of random sampling error in survey’s results. The larger margin of error, the less confidence one should have that the results are close to the real parameters.

Confidence interval for mean(sigma known)

Let’s take a look at how we can find the confidence interval for mean when sampling from a normally distributed population with known standard deviation. The confidence interval for the mean will be of the form:

the confidence interval

Suppose we are having a random sample of n independent observations from a normally distributed population with mean μ and standard deviation σ. In this case, a sample mean is a normally distributed random variable with a mean μ and standard deviation of

standard deviation of the sample mean

We can standardize this random variable, make it have the standard normal distribution.

random variable with standard normal distribution

For standard normal distribution we can write such formula:

a probability to fall in the interval

Then we can find a confidence interval:

Now let’s try to make some simulations — generate normally distributed population, take a sample, find the sample mean and then find confidence interval.

There is few thing that affect margin of error:

  • variance of the population
  • sample size
  • confidence level

Next part ->

Reach the next level of focus and productivity with increaser.org.

Increaser

--

--

Indie hacker behind increaser.org. More at radzion.com

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store