Heights of adults. (7.7, p. 260) 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.

  1. What is the point estimate for the average height of active individuals? What about the median?

    The average height or the mean is 171.1cm and the median is 170.3cm.
summary(bdims$hgt)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   147.2   163.8   170.3   171.1   177.8   198.1
  1. What is the point estimate for the standard deviation of the heights of active individuals? What about the IQR?
sd(bdims$hgt)
## [1] 9.407205
IQR(bdims$hgt)
## [1] 14
  1. 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.

Both individuals would not be considered to be unusually tall or short since they are within two standard deviations of the mean.

tall <- (mean(bdims$hgt) - 180) / sd(bdims$hgt)
short <- (mean(bdims$hgt) - 155) / sd(bdims$hgt)

c(short, tall)
## [1]  1.7161087 -0.9414287
  1. 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.

    I would expect the mean and standard deviation to be close to but not exactly as the ones above due to the                randomness of the sample picked. The sample might be dominated by outliers and might show an unexpectedly                 different outcome for both the standard deviation and mean compare to the ones computed above.
  2. 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_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.

    This is the sample error (SE) computed as a product of the standard deviation (sd) of the sample and the square root (sqrt) of the number of observations (n).
n <- 507
SE_height <- sd(bdims$hgt)/sqrt(n)
SE_height
## [1] 0.4177887

Thanksgiving spending, Part I. 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.

  1. We are 95% confident that the average spending of these 436 American adults is between $80.31 and $89.11.

    False. A true definition of confidence interval refers to the entire population and not specific to just the              sample. We need to giniralize it to the entire population.
  2. This confidence interval is not valid since the distribution of spending in the sample is right skewed.

    False. As long as the sample was randomly selected and is large enough that is it passes the success-failure rate,         some skewness can still be observed and still have a valid confidence interval.
  3. 95% of random samples have a sample mean between $80.31 and $89.11.

    False. This is not a true definition of the confidence interval.
  4. We are 95% confident that the average spending of all American adults is between $80.31 and $89.11.

    True. This is the true definition of the confidence interval.
  5. A 90% confidence interval would be narrower than the 95% confidence interval since we dont need to be as sure about our estimate.

    True. A smaller confidence interval is narrower, as noted we dont need to be very sure of our estimate.
  6. 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. we need a sample size equal to the square of the factor by which we need to reduce our error margin, in            this case 3^2. Note that the margin of error (SE) is the standard deviation * the square root of the sample size.         Thus the square root of 3^2 would give us 3, the factor needed to reduce the margin of error (SE) to a third.
  7. The margin of error is 4.4.

    True. For the given confidence interval of 95% the margin of error is 4.4.
Lower_inter <- 80.31
Upper_inter <- 89.11
SE_spend <- (Upper_inter - Lower_inter)/2
SE_spend
## [1] 4.4

Gifted children, Part I. Researchers investigating characteristics of gifted children col- lected 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 dis- tribution of the ages (in months) at which these children first counted to 10 successfully. Also provided are some sample statistics.

  1. Are conditions for inference satisfied?

Independence is satisfied - This is a random sample selection Sample size is over 30 and no strong skewness is evident. This sample satisfies inference conditions.

  1. Suppose you read online that children first count to 10 successfully when they are 32 months old, on average. Perform a hypothesis test to evaluate if these data provide convincing evidence that the average age at which gifted children fist count to 10 successfully is less than the general average of 32 months. Use a significance level of 0.10.

Null Hypothesis - mean = 32 Alternate hypothesis - mean != 32

n <- 36
mean <- mean(gifted$count)

sd <- sd(gifted$count)

SE <- sd/sqrt(n)

z_score <- (mean - 32)/SE
pnorm(z_score)
## [1] 0.03472969

Conclusion: Since the p value of 0.0347 is less than 0.10 we reject the null hypothesis in favor of the alternative hypothesis.

  1. Interpret the p-value in context of the hypothesis test and the data.

We usually reject the null hypothesis whenever the calculated p value is less that our set p value, in this case 0.10. since the calculated p value of 0.0347 is less than 0.01 we reject null hypothesis in favor of the alternative hypothesis. However additional information would be required before concluding onthe alternative hypothesis.

  1. Calculate a 90% confidence interval for the average age at which gifted children first count to 10 successfully.
lower_bound <- mean - 1.65*SE
Upper_bound <- mean + 1.65*SE

c(lower_bound, Upper_bound)
## [1] 29.50785 31.88104

Conclusion: We are 90% confident that the average age of gifted children fall between 29.5 and 31.9 months.

  1. Do your results from the hypothesis test and the confidence interval agree? Explain.

Yes they do. The average age of gifted children is lower than 32 months. We rejected the null hypothesis (Average age of gifted children is same as average for all children)


Gifted children, Part II. Exercise above describes a study on gifted children. In this study, along with variables on the children, the researchers also collected data on the mothers and fathers IQ of the 36 randomly sampled gifted children. The histogram below shows the distribution of mothers IQ. Also provided are some sample statistics.

  1. 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.

Null hypothesis: mean = 100 Alternative hypothesis: mean != 100

n <- 36
mean <- mean(gifted$motheriq)

sd <- sd(gifted$motheriq)

SE <- sd/sqrt(n)

z_score <- (mean - 100)/SE

z_score
## [1] 16.75649

With a z_score of 16.8 we expect a p-value close to 0, which is smaller than our P-value of 0.10 and thus we reject the null hypothesis in favor of the alternative hypothesis.

  1. Calculate a 90% confidence interval for the average IQ of mothers of gifted children.
lower_bound <- mean - 1.65*SE
upper_bound <- mean + 1.65*SE

c(lower_bound, upper_bound)
## [1] 116.3778 119.9555
  1. Do your results from the hypothesis test and the confidence interval agree? Explain.

Conclusion: The two results agree since we rejected the null hypothesis and the lower bound of our confidence interval is higher than the mean of 100, which is the average IQ of the population. The average mean of the population falls outside of our confidence interval.


CLT. 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 sampling distribution of the mean is is the mean obtained from taking several samples from a population and computing their means. we can describe it as the sample means distribution. As sample size increases the shape of the distribution mimics that of the normal random distribution, the centre (mean) gets closer and closer to that to the population and the spread gets narrower.

CFLBs. 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.

  1. What is the probability that a randomly chosen light bulb lasts more than 10,500 hours?
1 - pnorm(q=10500, mean = 9000, sd = 1000)
## [1] 0.0668072

The probability is 6.68%.

  1. Describe the distribution of the mean lifespan of 15 light bulbs.
mean <- 9000
sd <- 1000
n <- 15

sd_15 <- sd/sqrt(n)

sd_15
## [1] 258.1989
  1. What is the probability that the mean lifespan of 15 randomly chosen light bulbs is more than 10,500 hours?
1-pnorm(q=10500, mean = 9000, sd = sd_15)
## [1] 3.133452e-09
    The probability is close to 0.
  1. Sketch the two distributions (population and sampling) on the same scale.
scale <- seq(5500,12000,0.01)

plot(scale, dnorm(scale,mean = mean, sd = sd), col = "orange", type= "l", ylim = c(0,0.0017), ylab = "Scale", xlab = "Hours")

lines(scale, dnorm(scale,mean = mean, sd = sd_15), col="blue")

  1. Could you estimate the probabilities from parts (a) and (c) if the lifespans of light bulbs had a skewed distribution?

    To estimate probability we need a near normal distribution and a skewed distribution would not meet such criteria.

Same observation, different sample size. 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 dependent on z_score whose denominator is the square root of n(the number of observations). Thus the           larger the n(our denominator) the smaller the error function and by extension the smaller the p-value.
    In this case our p-value would decrease.