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.
The Point estimate is 171 cm. Median is 170.3 cm
The Standard Deviation is 11.1 and IQR is 14
mean=171
se= 11.1/sqrt(507)
z_val=(180-mean)/se
The person with 180cm height is not unusually tall. The standard error allowed is 18 cm ~. Hence the heights can be upto 188cm. Same reasoning is applicable for 155 cm.
The mean and standard deviation will not be same as the new sample will provide different summary. It could be similar.
The variablity can be estimated as SE = S.D/sqrt(n), the value is 0.49
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.
The statement is true. the Confidence interval is (80.31,89.11). This provides the lower and upper limit.
The statement is false, only extreme skewing will create an impact. Right skewing to some extent is fine.
The statement is true. It can be said with 95% confidence that the sample mean is between 80.31 and 89.11
The statement is false, We cannot take the sample confidence interval to original population.
The statement is true, as confidence interval increases the spread would become wider
The statement is true. Sample size will have impact on the marging of error directly.
The statement is true
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.
Yes, the conditions are satisfied.
mu=30.69
n=36
sd=4.31
se=sd/sqrt(n)
z=(32-mu)/se
p=0.034
Since p-value is less than five percent we can reject null hypothesis and the alternative statement is true.
The p-value is 0.034 based on z score of 1.82.
mu=30.69
n=36
sd=4.31
se=sd/sqrt(n)
pe_low = mu-1.7*se
pe_high= mu+1.7*se
The Confidence Interval is (29.5,31.8)
The results match with the confidence interval.
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 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.
mu=118.2
n=36
sd=6.5
se=sd/sqrt(n)
p_value=0.05
The rule to reject is P(Z<=-1.96) or P(Z>1.96)
mu=118.2
n=36
sd=6.5
se=sd/sqrt(n)
pe_low = mu-1.7*se
pe_high= mu+1.7*se
The confidence interval is (116,120)
Yes, The confidence interval is different than the average IQ of 100.
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.
Sampling distribution is normally distributed with the mean mu and SE = SD/sqrt(n)
The shape of the distribution changes as sample size increases and it gets narrower as the mean would be accurate as size increases. center will be narrowing as well.
Spread will get reduced as size increases
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.
mu=9000
sd=1000
z=(10500-mu)/sd
p_value=0.067
There is 6% chance for the chosen light bulb
The distribution is normall distributed
n=15
mu=9000
sd=1000
se=(sd)/sqrt(n)
z=(10500-mu)/se
p_value=0.0001
p_value
## [1] 1e-04
n=15
mu=9000
sd=1000
ci_low=mu-(2*sd)
ci_high=mu+(2*sd)
df_distribution1 <- data.frame(seq(ci_low,ci_high),dnorm(seq(ci_low,ci_high),mean=mu,sd=sd))
library(tidyverse)
## -- Attaching packages -------------------------------------------------------------------------------- tidyverse 1.2.1 --
## v ggplot2 3.2.1 v purrr 0.3.2
## v tibble 2.1.3 v dplyr 0.8.3
## v tidyr 0.8.3 v stringr 1.4.0
## v readr 1.3.1 v forcats 0.4.0
## -- Conflicts ----------------------------------------------------------------------------------- tidyverse_conflicts() --
## x dplyr::filter() masks stats::filter()
## x dplyr::lag() masks stats::lag()
ggplot() +
geom_line(data=df_distribution1, aes(x=seq(ci_low,ci_high), y=dnorm(seq(ci_low,ci_high),mean=mu,sd=sd)))
se=sd/sqrt(15)
ci_low=mu-(2*se)
ci_high=mu+(2*se)
df_distribution1_Se <- data.frame(seq(ci_low,ci_high),dnorm(seq(ci_low,ci_high),mean=mu,sd=sd))
library(tidyverse)
ggplot() +
geom_line(data=df_distribution1_Se, aes(x=seq(ci_low,ci_high), y=dnorm(seq(ci_low,ci_high),mean=mu,sd=sd)))
(e) Could you estimate the probabilities from parts (a) and (c) if the lifespans of light bulbs had a skewed distribution?
The distribution is not skewed
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.
When the sampling size increase the standard error will decrease. As a result the z score will increase and p value will decrease.