High School Modules > Advanced Miscellaneous Topics
Confidence Intervals
An exploration of confidence intervals with particular attention to visualization and computation.
[Directions : Execute the Code Resource section first. Although there will be no output immediately, these definitions are used later in this worksheet.]
0. Code
Warning, the name changecoords has been redefined
1. What is a Confidence Interval?
A confidence interval is an estimate - a range estimate in fact. And unlike most estimates, it comes along with a probability of its correctness. This is what a confidence interval looks like :
To which we would be able to say with 90% certainty that the number we are looking for, lives inside of this range of numbers.
2. Visualizing a Confidence Interval
A confidence interval is closely related to the normal distribution. This is the 95% confidence interval when the mean is 10 and standard deviation is 3. This means that 95% of the possible values are in this range (4.12, 15.9).
Here are four confidence intervals for the same mean (10) and standard deviation (3). Can you explain what is happening as the level of confidence goes up?
As you can see, as the level of confidence goes up, the range of values gets wider and less precise - a trade-off.
3. Comparing Confidence Intervals
Lets see several confidence intervals for the same mean and standard deviation on the same graph.
Here is another example, where the mean is 30 and standard deviation 4.21.
Let the mean be 7.3 and standard deviation 1.09.
4. Computing Confidence Intervals
Its not difficult to compute a confidence interval. Its much like computing an x value, given a z value. We need to be given the mean, the standard deviation, and level of confidence.
The level of confidence is also how much of the normal distribution we want to be centered around the mean. This leaves two "tails" - one on the far left and one on the far right. Take half of the level of confidence, to find the amount of area to the right of the mean, and then look this value up in the body of a normal distribution table to find the corresponding z score.
Now plug in these values into the familiar formulas to find the right and left extremes of the 95% confidence interval for this example.
2002 Waterloo Maple Inc & Gregory Moore, all rights reserved.