The weights of steers in a herd are distributed normally. The variance is 40,000 and the mean steer weight is 1300 lbs. Find the probability that the weight of a randomly selected steer is greater than 979 lbs. (Round your answer to 4 decimal places)
To determine the probability, we need to find the standard (\(Z\)) score of the 979 weight. We use this formula:
\[z = \frac{(x-\mu)}{\sigma}\] In this problem, that gives us: \[z=\frac{979-1300}{\sqrt{40000}}\]
Z = (979-1300)/(40000)^(1/2)
Z
## [1] -1.605
Now we can use the standard score to compute a 1-tailed probability (because we’re looking for the probability that we get a steer \(\gt\) 979).
round(pnorm(-1.605, mean=0, sd=1, lower.tail=FALSE),4)
## [1] 0.9458
…or we can compute it directly:
round(pnorm(979, mean=1300, sd=(40000)^0.5, lower.tail=FALSE),4)
## [1] 0.9458
SVGA monitors manufactured by TSI Electronics have life spans that have a normal distribution with a variance of 1,960,000 and a mean life span of 11,000 hours. If a SVGA monitor is selected at random, find the probability that the life span of the monitor will be more than 8340 hours.
round(pnorm(8340, mean=11000, sd=(1960000)^0.5,lower.tail=FALSE),4)
## [1] 0.9713
Suppose the mean income of firms in the industry for a year is 80 million dollars with a standard deviation of 3 million dollars. If incomes for the industry are distributed normally, what is the probability that a randomly selected firm will earn between 83 and 85 million dollars? (Round your answer to 4 decimal places)
round(pnorm(85, mean=80, sd=3, lower.tail=TRUE) - pnorm(83, mean=80, sd=3, lower.tail=TRUE),4)
## [1] 0.1109
Suppose GRE Verbal scores are normally distributed with a mean of 456 and a standard deviation of 123. A university plans to offer tutoring jobs to students whose scores are in the top 14%. What is the minimum score required for the job offer?
We rearrange the formula for standard scores to get: \[x = \mu+z\sigma\] That gives us:
465 + .36*123 # 0.36 is z-value with the closest probability to 14% (0.14)
## [1] 509.28
The lengths of nails produced in a factory are normally distributed with a mean of 6.13 centimeters and a standard deviation of 0.06 centimeters. Find the two lengths that separate the top 7% and the bottom 7%. These lengths could serve as limits used to identify which nails should be rejected.
# Lowest 7%
6.13 - 1.48 * 0.06
## [1] 6.0412
# Upper 7%
6.13 + 1.48 * 0.06
## [1] 6.2188
An English professor assigns letter grades on a test according to the following scheme. A: Top 13% of scores B: Scores below the top 13% and above the bottom 55% C: Scores below the top 45% and above the bottom 20% D: Scores below the top 80% and above the bottom 9% F: Bottom 9% of scores Scores on the test are normally distributed with a mean of 78.8 and a standard deviation of 9.8. Find the numerical limits for a C grade.
round(78.8 - 0.84 * 9.8) # bottom limit
## [1] 71
round(78.8 + 0.13 * 9.8) # upper limit
## [1] 80
Suppose ACT Composite scores are normally distributed with a mean of 21.2 and a standard deviation of 5.4. A university plans to admit students whose scores are in the top 45%. What is the minimum score required for admission?
round(21.2 + 0.13 * 5.4,1)
## [1] 21.9
Consider the probability that less than 11 out of 151 students will not graduate on time. Assume the probability that a given student will not graduate on time is 9%. Approximate the probability using the normal distribution.
We can approximate the binomial with the standard distribution with a mean of \(N\pi = (151)(0.09)=13.59\) and a variance of \(N\pi(1-\pi)=(151)(0.09)(0.91)=12.3669\).
To find \(P(x\lt11)\):
round(pnorm(11, mean=13.59, sd=(12.3669)^0.5, lower.tail = TRUE),4)
## [1] 0.2307
The mean lifetime of a tire is 48 months with a standard deviation of 7. If 147 tires are sampled, what is the probability that the mean of the sample would be greater than 48.83 months?
The sampling distribution of the mean would, assuming a large enough sample, tend to a normal distribution with a mean of \(\mu\) and standard deviation of \(\frac{\sigma}{\sqrt{N}}\) or \(\frac{7}{\sqrt{147}}\) in this case.
s <- 7/(147)^0.5
round(pnorm(48.83,mean=48, sd=s, lower.tail = FALSE),4)
## [1] 0.0753
The quality control manager at a computer manufacturing company believes that the mean life of a computer is 91 months, with a standard deviation of 10. If he is correct, what is the probability that the mean of a sample of 68 computers would be greater than 93.54 months?
s <- 10/(68)^0.5
round(pnorm(93.54,mean=91,sd=s,lower.tail = FALSE),4)
## [1] 0.0181
A director of reservations believes that 7% of the ticketed passengers are no-shows. If the director is right, what is the probability that the proportion of no-shows in a sample of 540 ticketed passengers would differ from the population proportion by less than 3%?
The mean of our sample distribution is 0.07, the same as the population proportion. The standard error is \(\sqrt{\frac{\pi(1-\pi)}{N}} = \sqrt{\frac{(0.07)(0.93)}{540}}\)
se <- (0.07*0.93/540)^0.5
round(pnorm(0.10, mean = 0.07, sd = se, lower.tail = TRUE) - pnorm(0.04, mean = 0.07, sd = se, lower.tail = TRUE),4)
## [1] 0.9937
A bottle maker believes that 23% of his bottles are defective. If the bottle maker is accurate, what is the probability that the proportion of defective bottles in a sample of 602 bottles would differ from the population proportion by greater than 4%?
se <- (0.23*0.77/602)^0.5
round(1 - (pnorm(0.27, mean = 0.23, sd = se, lower.tail = TRUE) - pnorm(0.19, mean = 0.23, sd = se, lower.tail = TRUE)),4)
## [1] 0.0197
A research company desires to know the mean consumption of beef per week among males over age 48. Suppose a sample of size 208 is drawn with \(\bar{x} = 3.9\) Assume \(s^2=0.8\). Construct the 80% confidence interval for the mean number of lb. of beef per week among males over 48.
# Since we're using a sample standard deviation, we need to use the T distribution
z <- abs(qt(0.10,207)) # 2-tailed, so 10% each side
lower <- round(3.9 - z*sqrt(0.8),1)
upper <- round(3.9 + z*sqrt(0.8),1)
Our confidence interval is 2.8 to 5.
An economist wants to estimate the mean per capita income (in thousands of dollars)in a major city in California. Suppose a sample size of 7472 is drawn with \(\bar{x} = 16.6\). Assume \(s^2 = 11\). Construct the 98% confidence interval for the mean per capita income.
z <- abs(qt(0.01,7471))
lower <- round(16.6 - z*sqrt(11),1)
upper <- round(16.6 + z*sqrt(11),1)
Our confidence interval is 8.9 to 24.3.
Find the value of t such that 0.05 of the area under the curve is to the left of t. Assume the degrees of freedom equals 26.
Which graph best describes the problem
The upper-right graph describes this problem visually.
Write your answer
The answer is \(t=\)-1.7056179.
The following measurements ( in picocuries per liter ) were recorded by a set of helium gas detectors installed in a laboratory facility: 383.6, 347.1, 371.9, 347.6, 325.8, 337 Using these measurements, construct a 90% confidence interval for the mean level of helium gas present in the facility. Assume the population is normally distributed.
# The mean of the sample distribution
sam <- c(383.6,347.1,371.9, 347.6, 325.8, 337)
m <- round(mean(sam),2)
stdDev <- round(sd(sam),2)
t <- round(abs(qt(0.05,5)),3)
lower <- round(m - (stdDev/sqrt(6)) * t,2)
upper <- round(m + (stdDev/sqrt(6)) * t,2)
Step 1. Calculate the sample mean for the given sample data.
The sample mean is 352.17.
Step 2. Calculate the sample standard deviation for the given sample data.
The standard deviation of the sample is 21.68.
Step 3. Find the critical value that should be used in constructing the confidence interval.
The critical value is 2.015.
Step 4. Construct the 90% confidence interval.
Our 90% confidence interval would be from 334.34 to 370.
A random sample of 16 fields of spring wheat has a mean yield of 46.4 bushels per acre and standard deviation of 2.45 bushels per acre. Determine the 80% confidence interval for the true mean yield. Assume the population is normally distributed.
Step 1. Find the critical value that should be used in constructing the confidence interval.
t <- abs(round(qt(0.10,15),3))
Our critical value would be 1.341.
Construct the 80% confidence interval.
lower = round(46.4 - (2.45/sqrt(16) * t),1)
upper = round(46.4 + (2.45/sqrt(16) * t),1)
Our confidence interval for the mean is 45.6 to 47.2.
A toy manufacturer wants to know how many new toys children buy each year. She thinks the mean is 8 toys per year. Assume a previous study found the standard deviation to be 1.9. How large of a sample would be required in order to estimate the mean number of toys bought per child at the 99% confidence level with an error of at most 0.13 toys?
We can use the formula:
\[n = \frac{(z_{\alpha/2})^2\sigma^2}{E^2}\]
z <- abs(qnorm(0.005,mean=0, sd = 1))
ceiling((z^2 * 1.9^2)/0.13^2)
## [1] 1418
A research scientist wants to know how many times per hour a certain strand of bacteria reproduces. He believes that the mean is 12.6. Assume the variance is known to be 3.61. How large of a sample would be required in order to estimate the mean number of reproductions per hour at the 95% confidence level with an error of at most 0.19 reproductions?
z <- abs(qnorm(0.025,mean=12.6,sd=sqrt(3.61)))
ceiling((z^2 * 3.61)/0.19^2)
## [1] 7879
The state education commission wants to estimate the fraction of tenth grade students that have reading skills at or below the eighth grade level.
Step 1. Suppose a sample of 2089 tenth graders is drawn. Of the students sampled, 1734 read above the eighth grade level. Using the data, estimate the proportion of tenth graders reading at or below the eighth grade level.
p <- 1 - 1734/2089
p
## [1] 0.1699378
Suppose a sample of 2089 tenth graders is drawn. Of the students sampled, 1734 read above the eighth grade level. Using the data, construct the 98% confidence interval for the population proportion of tenth graders reading at or below the eighth grade level.
z <- abs(qnorm(0.01, mean = 0, sd = 1))
lower <- round(p - (z * sqrt((p*(1-p))/2089)),3)
upper <- round(p + (z * sqrt((p*(1-p))/2089)),3)
Our lower limit is 0.151 and the upper limit is 0.189.
An environmentalist wants to find out the fraction of oil tankers that have spills each month.
Step 1. Suppose a sample of 474 tankers is drawn. Of these ships, 156 had spills. Using the data, estimate the proportion of oil tankers that had spills.
p <- 156 / 474
p
## [1] 0.3291139
Step 2. Suppose a sample of 474 tankers is drawn. Of these ships, 156 had spills. Using the data, construct the 95% confidence interval for the population proportion of oil tankers that have spills each month.
z <- abs(qnorm(0.025, mean = 0, sd = 1))
lower <- round(p - (z * sqrt((p*(1-p))/474)),3)
upper <- round(p + (z * sqrt((p*(1-p))/474)),3)
Our lower limit is 0.287 and the upper limit is 0.371.