Question 1201612
<font color=black size=3>
<font color=red>Answers:</font>
90% confidence interval is (112.94, 121.06)
95% confidence interval is (112.16, 121.84)
The 95% confidence interval is wider.


Further explanation is down below.


====================================================================================


At 90% confidence, the z critical value is roughly z = 1.645
Use a table like this
<a href = "https://www.sjsu.edu/faculty/gerstman/StatPrimer/t-table.pdf">https://www.sjsu.edu/faculty/gerstman/StatPrimer/t-table.pdf</a>
to get that value. Look at the bottom row labeled "Z" and above the 90% confidence level.
A stats calculator can also compute this value.


xbar = 117.00 = sample mean
sigma = 18.30 = population standard deviation
n = 55 = sample size


Let's compute the margin of error
E = margin of error
E = z*sigma/sqrt(n)
E = 1.645*18.30/sqrt(55)
E = 4.05915511193244
E = 4.059155


Then,
L = lower boundary
L = xbar - E
L = 117 - 4.059155
L = 112.940845
L = 112.94
and
U = upper boundary
U = xbar + E
U = 117 + 4.059155
U = 121.059155
U = 121.06


The 90% confidence interval for the population mean is 112.94 < mu < 121.06
That is in the format L < mu < U


It can be condensed to the format (L, U) and we get (112.94, 121.06)
This second format is more common, but the drawback is that we don't know what population parameter we're estimating (unless further context is given).


Interpretation: We are 90% confident the population mean price of a home theater system is somewhere between $112.94 and $121.06


-------------------------------


We'll repeat the process but this time for a 95% confidence interval.


At 95% confidence, the z critical value is roughly z = 1.96
Refer to that table I mentioned earlier.


The other input values are the same as before.
E = margin of error
E = z*sigma/sqrt(n)
E = 1.96*18.30/sqrt(55)
E = 4.83644013336631
E = 4.836440
The margin of error is larger than previously calculated.
This will widen the confidence interval.


L = lower boundary
L = xbar - E
L = 117 - 4.836440
L = 112.16356
L = 112.16
and
U = upper boundary
U = xbar + E
U = 117 + 4.836440
U = 121.83644
U = 121.84


The 95% confidence interval can be expressed as 112.16 < mu < 121.84
Or can be expressed as (112.16, 121.84)


Interpretation: We are 95% confident the population mean price of a home theater system is somewhere between $112.16 and $121.84


-------------------------------


Let's compare the confidence intervals.
90% confidence interval: (112.94, 121.06)
95% confidence interval: (112.16, 121.84)
{{{
drawing(300,300,-5,5,-3,3,
line(-2,1,4,1),line(-2,-1,4,-1),
locate(-4,2.5,matrix(1,4,CI,"=",confidence,interval)),
locate(-4,1,matrix(1,2,"90%","CI")),
locate(-4,-1,matrix(1,2,"95%","CI")),
locate(-4.5,-2.5,matrix(1,4,diagrams,not,to,scale)),
red(
line(0,1,2,1),line(-1,-1,3,-1),circle(0,1,0.04),circle(0,1,0.08),circle(0,1,0.12),circle(2,1,0.04),circle(2,1,0.08),circle(2,1,0.12),circle(-1,-1,0.04),circle(-1,-1,0.08),circle(-1,-1,0.12),circle(3,-1,0.04),circle(3,-1,0.08),circle(3,-1,0.12),locate(-1,1.5,"112.94"),locate(2,1.5,"121.06"),locate(-1,-1.15,"112.16"),locate(3,-1.15,"121.84")
)
)
}}}

The 95% confidence interval is wider because the margin of error is larger.
The more confident we get, the wider the interval will become.


Imagine you are looking for a certain rare species of fish in the ocean.
To be more confident you caught the fish you want, you could increase the size of the net. 
The size of the net is analogous to the width of the confidence interval.
</font>