MATH 313: Survey Design and Sampling
In general, if \(X\) is a random variable following a normal distribution with the mean \(a\) and standard deviation \(b\), then we can compute the probability of \(X>c\) for some number \(c\) with the following R function:
When dealing with a sample mean \(\bar{y}\), the variable \(\bar{y}\) is normally distributed with mean \(\mu\) and standard deviation \(\frac{\sigma}{\sqrt{n}}\), where \(n\) is the sample size. This is described mathematically as: \[ X = \bar{y}, \quad a = \mu, \quad b = \frac{\sigma}{\sqrt{n}} \] For computing the probability of \(X>c\), use the R code below:
Suppose the heights of all male adults from a particular region follow a normal distribution with mean 5.6 ft and variance \(1.44 \mathrm{ft}^2\). A sample of 100 male adults from this region is randomly selected and their heights are measured.
The \(100 \times p\)th percentile of a random variable \(X\) is a value \(c\) such that: \[P(X<c) = p\] This defines the point below which a given percentage (\(p\)) of observations fall.
Standard Normal Distribution
qnorm(p)
where p
is the desired percentile.qnorm(p, mean = mu, sd = sigma)
According to the National Center of Education Statistics report, the SAT scores for all exam takers in Maryland in 2017 has a mean of 1060 and standard deviation of 199. Assume that the SAT scores follow a normal distribution.