mean <- 2.5
sd <- 0.03
paste0('The probability of a peny weighing less than 2.4g is: ', round(pnorm(2.4, mean, sd)*100, 3), '%', sep='')
## [1] "The probability of a peny weighing less than 2.4g is: 0.043%"
n = 10
sampleSD <- sd/sqrt(n)
sampleSD
## [1] 0.009486833
pnorm(2.4,mean = 2.5,sd = sampleSD)
## [1] 2.797279e-26
The probability is so small and tends towards zero
normSample <- seq(mean - (3 * sd), mean + (3 * sd), length=15)
randomSample<- seq(mean - (3 * sampleSD), mean + (3 * sampleSD), length=15)
popDistribution <- dnorm(normSample,mean,sd)
sampleDistribution <- dnorm(randomSample,mean,sampleSD)
plot(normSample, popDistribution, type="l",col="green", ylim=c(0,75), xlab = "Weights", ylab = "Frequency")
lines(randomSample, sampleDistribution, col="steelblue")
Answer: The probabiliry of (a) could not be estimated because the distribution is right skewed as it asks for a probability of weight less than 2.4grams and is not normal, while that of (c) might be possible to estimate but the size of the sample is way lower than the minimum required size so it canโt be estimated.