The Sampling Distribution of the Sample Mean

Published: 26 September 2013
on channel: jbstatistics
319,778
2.3k

I discuss the sampling distribution of the sample mean, and work through an example of a probability calculation. (I only briefly mention the central limit theorem here, but discuss it in more detail in another video).

The mean and standard deviation of the amount of protein in a quarter pound patty of lean beef was found in the USDA nutrient database at:

http://ndb.nal.usda.gov/ndb/foods/sho...

For those using R, here is the R code to find the values in the examples:

The probability a randomly selected patty has at least 23.0 grams of protein (mu = 21.4, sigma = 1.9):
1-pnorm(23.0,21.4,1.9)
[1] 0.1998645
or, if we standardize:
1-pnorm((23.0-21.4)/1.9)
[1] 0.1998645

The probability that the mean of 4 randomly selected patties is at least 23.0 grams of protein (sampling from a normal distribution with mu = 21.4, sigma = 1.9):
1-pnorm(23.0,21.4,1.9/sqrt(4))
[1] 0.04607049
or, if we standardize:
1-pnorm((23.0-21.4)/(1.9/sqrt(4)))
[1] 0.04607049


Watch video The Sampling Distribution of the Sample Mean online without registration, duration hours minute second in high quality. This video was added by user jbstatistics 26 September 2013, don't forget to share it with your friends and acquaintances, it has been viewed on our site 319,778 once and liked it 2.3 thousand people.