Question

In: Statistics and Probability

Please do in Rstudio **4) Find an 80% confidence interval for the mean number of hands...

Please do in Rstudio


**4) Find an 80% confidence interval for the mean number of hands it takes to win a game of cards. "Cards" is a sample of the number of hands it took to win a game at a tournament in Preston Idaho**

```{r}
Cards<-c(18,10,10,12,13,16,17,14,15,10,13,16,18,19,19,18,16,15,13,14,19,12,11,11,15,13,10,19,15)

###Please do your work here###


##############################
```

**How would you interpret this confidence interval? Please type your answer on the line below**

Answer:

Solutions

Expert Solution

Formula for finding confidence interval -

Code for finding confidence interval with output :

> Cards<-c(18,10,10,12,13,16,17,14,15,10,13,16,18,19,19,18,16,15,13,14,19,12,11,11,15,13,10,19,15)
> m<-mean(Cards)
> m
[1] 14.51724
> n<-length(Cards)
> n
[1] 29
> sd2 <- sqrt(sum((Cards - mean(Cards))^2) / (n - 1))
> sd2
[1] 3.042798
> sd=sqrt(sd2)
> sd
[1] 1.744362
> marginoferror <- qt(0.9,df=n-1)*sd/sqrt(n)
> left <- m-marginoferror
> right <- m+marginoferror
> left
[1] 14.09209
> right
[1] 14.94239

Therefore, Lower confidence interval = 14.09209

Upper confidence interval = 14.94239.

Interpretation: There is 80% chance that this confidence interval contains the true population mean(µ).


Related Solutions

What is an 80% confidence interval? What does it mean for a confidence interval to be...
What is an 80% confidence interval? What does it mean for a confidence interval to be ‘equal tailed?’ What are the steps for obtaining a confidence interval?
Match the margin of error for an 80% confidence interval to estimate the population mean with...
Match the margin of error for an 80% confidence interval to estimate the population mean with sigma σ equals=50 with its corresponding sample sizes. Question 5 options: a.) 8.07. 1.) n= 34 b.) 9.45 2.) n= 46 c.) 10.99 3.) n= 63
Find the 95% confidence interval for the mean number of times people itch themselves per hour...
Find the 95% confidence interval for the mean number of times people itch themselves per hour (iph), given that a sample of 20 people had a mean rate of 1.3 iph with a standard deviation of 0.5 iph. Assume an unknown σ and a close to normally distributed population.
Find the 80% confidence interval for the standard deviation of the ages of seniors at Oak...
Find the 80% confidence interval for the standard deviation of the ages of seniors at Oak Park College if a random sample of 21 students has a standard deviation of 2.3 years. Assume the variable is normally distributed. a.) (1.9,2.9) b.) (2.6, 3.3) c.) (3.7,8.5) d.) (2.6, 7.0)
Find the 80% confidence interval for the standard deviation of the ages of seniors at Oak...
Find the 80% confidence interval for the standard deviation of the ages of seniors at Oak Park College if a random sample of 21 students has a standard deviation of 2.3 years. Assume the variable is normally distributed.
Find the 80%, 95%, and 99% confidence intervals & margin error Create your own confidence interval...
Find the 80%, 95%, and 99% confidence intervals & margin error Create your own confidence interval (you cannot use 80%, 95%, and 99%) and make sure to show your work. Make sure to list the margin of error. 122 132 97 102 106 116 94 132 112 123 123 108 84 120 125 123 115 103 127 139 122 124 112 113 109 104 120 109 117 108 125 109 119 138 125 104 110 101 130 124 115 104...
Confidence Intervals for a proportion and mean Do all steps in the confidence interval: a) Check...
Confidence Intervals for a proportion and mean Do all steps in the confidence interval: a) Check when easy the requirements for the interval (t-interval) b) Create a summary of the information that goes into the interval c) Write out the formula for the interval d) Replace the symbols in the formula with the numbers from (b) e) Produce the interval f) Interpret the interval In 1998, as an advertising campaign, the Nabisco Company announced a "1000 Chips Challenge," claiming that...
You are interested in finding a 95% confidence interval for the mean number of visits for...
You are interested in finding a 95% confidence interval for the mean number of visits for physical therapy patients. The data below show the number of visits for 10 randomly selected physical therapy patients. 25 28 22 19 15 20 7 27 23 6 a. To compute the confidence interval use a ? z t  distribution. b. With 95% confidence the population mean number of visits per physical therapy patient is between  and   visits. c. If many groups of 10 randomly selected...
A fitness center is interested in finding a 98% confidence interval for the mean number of...
A fitness center is interested in finding a 98% confidence interval for the mean number of days per week that Americans who are members of a fitness club go to their fitness center. Records of 213 members were looked at and their mean number of visits per week was 3.5 and the standard deviation was 1.8. Round answers to 3 decimal places where possible. a. To compute the confidence interval use a distribution. b. With 98% confidence the population mean...
You are interested in finding a 90% confidence interval for the mean number of visits for...
You are interested in finding a 90% confidence interval for the mean number of visits for physical therapy patients. The data below show the number of visits for 15 randomly selected physical therapy patients. Round answers to 3 decimal places where possible. 13 26 16 13 6 27 26 6 13 25 6 11 20 14 16 a. To compute the confidence interval use a ? z t  distribution. b. With 90% confidence the population mean number of visits per physical...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT