If \(\bar{x} = 18.4\), sample standard deviation is 4.5, sample size = 35, and your confidence level is 95% this is how you can have R calculate a Confidence Interval for you.
conf_int(xbar = 18.4, size = 35, conf = .95, s = 4.5)
## [1] 16.8542 19.9458
21.
23.
25.
We are 90% confident that the mean number of drive-through service times of fast-food restaurants in Taco Bell’s was between 161.5 seconds and 164.7 seconds.
27.
29.
31.
(12.052, 14.748). We are 99% confident that the mean number of books read by Americans in the past year was between 12.052 and 14.748.
33.
(1.084, 8.116). Weare 95% confident that the mean incubation period of patients with SARS is between 1.084 and 8.116 days.
Question
A current medicine widely available on the market is known to lower cholesterol by an average amount of 10 mg/dl. A new medicine becomes available on the market. The research publication associated with the new medicine displays a 95% Confidence Interval of the average lowering effect to be (14 mg/dl, 23 mg/dl).
In deciding that the new medication is more effective then the old medication what is the Probability you made a type I error. ? We say the new medication is more effective than the old medication, truth is it is not.
Describe in words what a type II error is in this situation. We say the new medication is not more effective, but truth is it is more effective.