Working backwards, Part II. (5.24, p. 203)

A 90% confidence interval for a population mean is (65, 77). The population distribution is approximately normal and the population standard deviation is unknown. This confidence interval is based on a simple random sample of 25 observations. Calculate the sample mean, the margin of error, and the sample standard deviation.

## [1] 71
## [1] 6
## [1] 17.53481

SAT scores. (7.14, p. 261)

SAT scores of students at an Ivy League college are distributed with a standard deviation of 250 points. Two statistics students, Raina and Luke, want to estimate the average SAT score of students at this college as part of a class project. They want their margin of error to be no more than 25 points.

(a) Raina wants to use a 90% confidence interval. How large a sample should she collect?

90% CI \(\rightarrow\) qnrom(0.95)

## [1] 271
(b) Luke wants to use a 99% confidence interval. Without calculating the actual sample size, determine whether his sample should be larger or smaller than Raina’s, and explain your reasoning.

Luke’s sample would be larger than Raina’s. A 99% condifence interval requires a higher z score so the n in the denominator would have to increase to keep the marking of error at 25.

(c) Calculate the minimum required sample size for Luke.

99% CI \(\rightarrow\) qnrom(0.995)

## [1] 664

High School and Beyond, Part I. (7.20, p. 266)

The National Center of Education Statistics conducted a survey of high school seniors, collecting test data on reading, writing, and several other subjects. Here we examine a simple random sample of 200 students from this survey. Side-by-side box plots of reading and writing scores as well as a histogram of the differences in scores are shown below.

(a) Is there a clear difference in the average reading and writing scores?

There appears to be a slight difference in the averages scores, but it is not “clear”.

(b) Are the reading and writing scores of each student independent of each other?

The reading and writing scores are probably dependent on each other since being good at one usually implies being good at the other.

(c) Create hypotheses appropriate for the following research question: is there an evident difference in the average scores of students in the reading and writing exam?

Ho: \(\mu_{diff} = 0\)
Ho: \(\mu_{diff} \neq 0\)

(d) Check the conditions required to complete this test.

The conditions are:
- The distribution is normal. True
- The data are symmetric, unimodal, without outliers. True

(e) The average observed difference in scores is \({ \widehat { x } }_{ read-write }=-0.545\), and the standard deviation of the differences is 8.887 points. Do these data provide convincing evidence of a difference between the average scores on the two exams?

Calculate test statistic

## [1] -0.867274

Calculate propability of observing the test statistic or a more extreme outcome

## [1] 0.3868365

Since the p value is greater than 0.05 we do not reject the null hypothesis and conclude that there is no difference in reading and writing scores.

(f) What type of error might we have made? Explain what the error means in the context of the application.

We may have made a type II error which is failing to reject Ho when you should have.

(g) Based on the results of this hypothesis test, would you expect a confidence interval for the average difference between the reading and writing scores to include 0? Explain your reasoning.

We would expect the confidence interval to include 0 meaning that it would take a large point estimate deviation to not have the null hypothesis mean of 0 included in the interval.


Fuel efficiency of manual and automatic cars, Part II. (7.28, p. 276)

The table provides summary statistics on highway fuel economy of cars manufactured in 2012. Use these statistics to calculate a 98% confidence interval for the difference between average highway mileage of manual and automatic cars, and interpret this interval in the context of the data.

98% CI \(\rightarrow\) qt(0.99, df)

## [1] 1.409078 8.510922

The condifence interval does not include 0 which would be expected if the means were the same. The results suggest that average fuel efficiency of manual cars is indeed higher than automatic cars.


Email outreach efforts. (7.34, p. 284)

A medical research group is recruiting people to complete short surveys about their medical history. For example, one survey asks for information on a person’s family history in regards to cancer. Another survey asks about what topics were discussed during the person’s last visit to a hospital. So far, as people sign up, they complete an average of just 4 surveys, and the standard deviation of the number of surveys is about 2.2. The research group wants to try a new interface that they think will encourage new enrollees to complete more surveys, where they will randomize each enrollee to either get the new interface or the current interface. How many new enrollees do they need for each interface to detect an effect size of 0.5 surveys per enrollee, if the desired power level is 80%?

## [1] 0.1784704
## [1] 304

304 new enrollees would be needed to detect an effect size of 0.5 at the desired power level of 80% at 95% significance???


Work hours and education.

The General Social Survey collects data on demographics, education, and work, among many other characteristics of US residents. Using ANOVA, we can consider educational attainment levels for all 1,172 respondents at once. Below are the distributions of hours worked by educational attainment and relevant summary statistics that will be helpful in carrying out this analysis.

(a) Write hypotheses for evaluating whether the average number of hours worked varies across the five groups.

Ho: \(\mu_{lhs} = \mu_{hs} = \mu_{jcol} = \mu_{bach} = \mu_{grad}\)
Ha: \(\mu_{lhs} \neq \mu_{hs} \neq \mu_{jcol} \neq \mu_{bach} \neq \mu_{grad}\)

(b) Check conditions and describe any assumptions you must make to proceed with the test.

The conditions are: 1. Independence within groups, independence between groups (not paired)
2. Approximately normal 3. Roughly equal variance

Assumptions: 1. random sample/assignment
2. less than 10%

(c) Below is part of the output associated with this test. Fill in the empty cells.
## ── Attaching packages ───────────────────────────────────────────────────────────────────────────────────────────────────────── tidyverse 1.2.1 ──
## ✔ ggplot2 3.2.1     ✔ purrr   0.3.2
## ✔ tibble  2.1.3     ✔ dplyr   0.8.3
## ✔ tidyr   0.8.3     ✔ stringr 1.4.0
## ✔ readr   1.3.1     ✔ forcats 0.4.0
## ── Conflicts ──────────────────────────────────────────────────────────────────────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## [1] 269388.3
## [1] 2006.162
## [1] 1171
## [1] 4
## [1] 1167
## [1] 229.1191
## [1] 2.188992
## [1] 0.06819325
(d) What is the conclusion of the test?

The p value is larger than 0.05 so we fail to reject the null hypothesis and conclude that the data does not provide convincing edivdence that at least one pair of population means are different.