Researchers studying anthropometry collected body girth measurements and skeletal diameter measurements, as well as age, weight, height and gender, for 507 physically active individuals. The histogram below shows the sample distribution of heights in centimeters.
Min 147.2 Q1 163.8 Median 170.3 Mean 171.1 SD 9.4 Q3 177.8 Max 198.1
What is the point estimate for the average height of active individuals? What about the median?
point estimate for average height: 171.1 cm median: 170.3 cm
What is the point estimate for the standard deviation of the heights of active individuals? What about the IQR?
standard deviation: \(9.4 cm\) IQR: \(177.8cm - 163.8cm = 14 cm\)
Is a person who is 1m 80cm (180 cm) tall considered unusually tall? And is a person who is 1m 55cm (155cm) considered unusually short? Explain your reasoning.
A person 180 cm tall would be right on the border between the first standard deviation from the mean and the second (\(171.1cm + 9.4cm = 180.5cm\)). This would make the person slightly above average, but not unusually tall, as that would better describe someone who is more than 2 standard deviations above the mean. The same goes for a person 155 cm tall, albeit they are more than one standard deviation, but less than two below the mean. This would make the person below average in height, but not unusually so.
The researchers take another random sample of physically active individuals. Would you expect the mean and the standard deviation of this new sample to be the ones given above? Explain your reasoning.
No a random sample will included many, if not all individuals that were not in the first sample, this means the second sample will have a different mean and standard deviation than the first sample. It is reasonable to expect that the second mean and standard deviation be close to the first, perhaps within a couple of centimeters.
The sample means obtained are point estimates for the mean height of all active individuals, if the sample of individuals is equivalent to a simple random sample. What measure do we use to quantify the variability of such an estimate (Hint: recall that \(SD_{\bar{x}} = \frac{\sigma}{\sqrt{n}}\))? Compute this quantity using the data from the original sample under the condition that the data are a simple random sample.
Variability is measured by standard error which is the standard deviation divided by the square root of the sample size( \(n\)).
\(SD_{\bar{x}} = \frac{9.4cm}{\sqrt{507}} = 0.4174687cm\)
The 2009 holiday retail season, which kicked off on November 27, 2009 (the day after Thanksgiving), had been marked by somewhat lower self-reported consumer spending than was seen during the comparable period in 2008. To get an estimate of consumer spending, 436 randomly sampled American adults were surveyed. Daily consumer spending for the six-day period after Thanksgiving, spanning the Black Friday weekend and Cyber Monday, averaged $84.71. A 95% confidence interval based on this sample is ($80.31,$89.11).
Determine whether the following statements are true or false, and explain your reasoning.
We are 95% confident that the average spending of these 436 American adults is between $80.31 and $89.11.
False, we are 95% confident that sampling these 436 people has captured the mean spending for the entire population between $80.31 and $89.11
This confidence interval is not valid since the distribution of spending in the sample is right skewed.
False, the validity of the confidence interval is based on the sample mean being Normally Distributed, not the sample itself. Since these people were selected at random and the sample size is greater than 30, by the Central Limit Theorem, the sample mean is normally distributed and the confidence intervals are valid.
95% of random samples have a sample mean between$80.31 and $89.11.
False, 95% of random samples will produce confidence intervals that will capture the population mean.
We are 95% confident that the average spending of all American adults is between $80.31 and $89.11.
True, all Americans is the population of interest and our sample has produced an interval between $80.31 and $89.11 which is the range average spending of the population.
A 90% confidence interval would be narrower than the 95% confidence interval since we don’t need to be as sure about our estimate.
True, to produce a 90% interval we need to multiply the standard error by 1.645 instead of 1.96 which would create a narrower range.
In order to decrease the margin of error of a 95% confidence interval to a third of what it is now, we would need to use a sample 3 times larger.
False, margin of error is \(z^{*} x SE\), and SE goes as the inverse square root of sample size so in order to decrease margin of error by 3 you need to increase sample size by 9 since \(\frac{1}{3} = \frac{1}{\sqrt{9}}\).
The margin of error is 4.4.
True, Margin of error is \(z^{*} x SE\), which is 1/2 the confidence interval so, \(\frac{\$89.11-\$80.31}{2} = \$4.4\)
Researchers investigating characteristics of gifted children collected data from schools in a large city on a random sample of thirty-six children who were identified as gifted children soon after they reached the age of four. The following histogram shows the distribution of the ages (in months) at which these children first counted to 10 successfully. Also provided are some sample statistics.
n 36 min 21 mean 30.69 sd 4.31 max 39
Yes, the children were randomly selected, independent of each other, and the sample size is greater than 30. Furthermore the distribution is single peaked and not badly skewed.
\[ Z = \frac{30.69-32}{4.31/\sqrt{36}} \]
z <- (30.69-32)/(4.31/6)
p <- 2*pnorm(z)
p
## [1] 0.0682026
We want p to be less than the significance level, in this case we meet that condition.
If p is low, the null must go. In this case since p is < 0.10 we can reject the null hypothesis that there is not difference in the age when gifted children first count to 10 compared to regular children first count to 10. We then accept the alternative hypothesis that the two populations are different.
lower_vector <- 30.69 - 1.645*(4.31/6)
upper_vector <- 30.69 + 1.645*(4.31/6)
c(lower_vector, upper_vector)
## [1] 29.50834 31.87166
Yes, since the population mean of 32 months is not contained in the confidence interval we can reject the null hypothesis that the sample mean and population mean are the same.
Exercise 4.24 describes a study on gifted children. In this study, along with variables on the children, the researchers also collected data on the mother’s and father’s IQ of the 36 randomly sampled gifted children. The histogram below shows the distribution of mother’s IQ. Also provided are some sample statistics. n 36 min 101 mean 118.2 sd 6.5 max 131
Perform a hypothesis test to evaluate if these data provide convincing evidence that the average IQ of mothers of gifted children is different than the average IQ for the population at large, which is 100. Use a significance level of 0.10.
z <- (118.2-100)/(6.5/6)
p <- 2*pnorm(-abs(z))
p
## [1] 2.44044e-63
p is much lower than 0.1 so we can reject the null hypothesis that the sample mean IQ is the same as the population mean IQ of 100 and accept the alternative hypothesis that the sample mean IQ is different from the population mean IQ.
Calculate a 90% confidence interval for the average IQ of mothers of gifted children.
lower_vector <- 118.2 - 1.645*(6.5/6)
upper_vector <- 118.2 + 1.645*(6.5/6)
c(lower_vector, upper_vector)
## [1] 116.4179 119.9821
Do your results from the hypothesis test and the confidence interval agree? Explain.
Since the confidence interval does not contain the population mean IQ of 100 it is consistent with the hypothesis test.
Define the term “sampling distribution” of the mean, and describe how the shape, center, and spread of the sampling distribution of the mean change as sample size increases.
The means sampling distribution of the mean is the distribution of the mean from many different samples from a population. As the sample size increases the sampling distribution becomes closer to the Normal Distribution in its shape. The center does not change much and approaches the population mean. The spread narrows as sample size increases.
A manufacturer of compact fluorescent light bulbs advertises that the distribution of the lifespans of these light bulbs is nearly normal with a mean of 9,000 hours and a standard deviation of 1,000 hours.
What is the probability that a randomly chosen light bulb lasts more than 10,500 hours?
Z <- (10500-9000)/1000
1 - pnorm(Z)
## [1] 0.0668072
normalPlot(bounds = c(Z,Inf))
A 6.68% chance that a single bulb will last 10,500 hours.
Describe the distribution of the mean lifespan of 15 light bulbs.
lgh_blb_15 <- rnorm(15 ,mean = 9000, sd = 1000)
hist(lgh_blb_15)
summary(lgh_blb_15)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 7760 8439 8721 9078 9475 10892
15 is a small sample size so the distribution is not quite normal, in this case its mode is around 9,500 hours and is left skewed with a mean of 8658 hours and median of 8791 hours..
What is the probability that the mean lifespan of 15 randomly chosen light bulbs is more than 10,500 hours?
Z <- (10500-9000)/(1000/15^0.5)
1 - pnorm(Z)
## [1] 3.133452e-09
normalPlot(bounds = c(Z,Inf))
Approximately 313 chances in 100 billion.
Sketch the two distributions (population and sampling) on the same scale.
Followed the format from: https://www.r-bloggers.com/overlapping-histogram-in-r/
pop <- rnorm(1000, 9000, 1000) # This popualtion size was chosen so you can see the sample
hist(pop, col=rgb(1,1,0,0.5))
hist(lgh_blb_15, col=rgb(0,0,1,0.5), add=T)
box()
The population is in yellow and the sample is purple, you can see the sample near the bottom of the bins.
Could you estimate the probabilities from parts (a) and (c) if the lifespans of light bulbs had a skewed distribution?
If the skew was too bad then no. Inference depends on the sample mean being normally distributed. For a sample size of 15, the population needs to be normally distributed for the sample mean to be normally distributed and for us to be able to draw inference.
Suppose you conduct a hypothesis test based on a sample where the sample size is n= 50, and arrive at a p-value of 0.08. You then refer back to your notes and discover that you made a careless mistake, the sample size should have been n = 500. Will your p-value increase, decrease, or stay the same? Explain.
p-value is derived from the Z-score using SE instead of SD. Everything else being the same, as sample size increased, SE decreases and Z-score increases. A Z-score increases the probability decreases so p-value decreases.