Christophe Hunt
10/07/2015
A college counselor is interested in estimating how many credits a student typically enrolls in each semester. The counselor decides to randomly sample 100 students by using the registrar's database of students. The histogram below shows the distribution of the number of credits taken by these students. Sample statistics for this distribution are also provided.
(a) What is the point estimate for the average number of credits taken per semester by students at this college? What about the median?
average number of credits taken per semester by students = 13.65
median number of credits taken per semester by students = 14
(b) What is the point estimate for the standard deviation of the number of credits taken per semester by students at this college? What about the IQR?
Standard Deviation is 1.91
The IQR is (Q3 - Q1) or (15 - 13) = 2
(c ) Is a load of 16 credits unusually high for this college? What about 18 credits? Explain your reasoning.
test_z_score <- function(x)
if (abs(x) > 2) {
return("this score is unusual for this distribution")
} else {
return("this score is not unusual for this distribution")
}
(c ) Is a load of 16 credits unusually high for this college? What about 18 credits? Explain your reasoning.
x_16 <- 16
x_18 <- 18
mean <- 13.65
sd <- 1.91
z_score_16 <- (x_16 - mean)/sd
z_score_18 <- (x_18 - mean)/sd
(c ) Is a load of 16 credits unusually high for this college? What about 18 credits? Explain your reasoning.
paste("The Z score for an observation of", x_16, "is", round(z_score_16,2), "and", test_z_score(z_score_16))
[1] “The Z score for an observation of 16 is 1.23 and this score is not unusual for this distribution”
paste("The Z score for an observation of", x_18, "is", round(z_score_18,2), "and", test_z_score(z_score_18))
[1] “The Z score for an observation of 18 is 2.28 and this score is unusual for this distribution”
(d) The college counselor takes another random sample of 100 students and this time finds a sample mean of 14.02 units. Should she be surprised that this sample statistic is slightly different than the one from the original sample? Explain your reasoning.
(e) The sample means given above are point estimates for the mean number of credits taken by all students at that college. What measures do we use to quantify the variability of this estimate (Hint: recall that \[ SD_\bar{x} = \frac {\sigma}{\sqrt{n}} \] )? Compute this quantity using the data from the original sample.
\[ \frac {\sigma}{\sqrt{n}} = \frac {1.91}{\sqrt{100}} = 0.191 \]