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)
m <- 1300
s <- sqrt(40000)
Ans <- pnorm(979,mean = m,sd =s,lower.tail=FALSE)
round(Ans, 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 your answer to 4 decimal places)
m <- 1100
s <- sqrt(1960000)
Ans <- pnorm(8340,mean = m,sd = s,lower.tail=FALSE)
round(Ans, 4)
## [1] 0
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)
m <- 80
s <- 3
Ans <- pnorm(85,mean = m,sd = s) - pnorm(83, mean = m, sd = s)
round(Ans, 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? Round your answer to the nearest whole number, if necessary.
m <- 456
s <- 123
Ans <- 1- qnorm(0.86, mean = m, sd = s)
abs(round(Ans, 0))
## [1] 588
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. Round your answer to the nearest hundredth, if necessary.
m <- 6.13
s <- 0.06
Ans1 <- qnorm(0.07, mean = m, sd = s)
Ans2 <- 1- qnorm(0.93, mean = m, sd = s)
abs(round(Ans1, 0))
## [1] 6
abs(round(Ans2,0))
## [1] 5
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 your answers to the nearest whole number, if necessary.
m <- 78.8
s <- 9.8
Ans1 <- qnorm(0.20, mean = m, sd = s)
Ans2 <- 1- qnorm(0.45, mean = m, sd = s)
abs(round(Ans1, 0))
## [1] 71
abs(round(Ans2,0))
## [1] 77
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 your answer to the nearest tenth, if necessary.
m <- 21.2
s <- 5.4
Ans <- 1- qnorm(0.55, mean = m, sd = s)
abs(round(Ans, 1))
## [1] 20.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. (Round your answer to 4 decimal places.)
Let X be the event that a student will not graduate on time
X ~ B(151, 0.09)
Approximate to Normal with mean and std as follows:
n <- 151
p <- 0.09
q <- 1 - p
themean <- n * p
thestd <- n * p * q
round(themean, 4)
## [1] 13.59
round(thestd,4)
## [1] 12.3669
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? (Round your answer to 4 decimal places)
Sample distribution N(mean, variance/sqrt(N))
themean <- 48
thevar <- (7^2)/sqrt(147)
Answer:
Ans <- pnorm(48.83, themean, sqrt(thevar), lower.tail = FALSE)
round(Ans,4)
## [1] 0.3399
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? (Round your answer to 4 decimal places)
Sample distribution N(mean, variance/sqrt(N))
themean <- 91
thevar <- (10^2)/sqrt(68)
Answer:
Ans <- pnorm(93.54, themean, sqrt(thevar), lower.tail = FALSE)
round(Ans,4)
## [1] 0.2329
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%? (Round your answer to 4 decimal places)
p = 0.07 n = 540
themean <- 0.07
thesd <- sqrt((themean*(1-themean))/540)
Answer:
Ans1 <- pnorm(0.1, themean, thesd)
Ans2 <- pnorm(0.04,themean,thesd)
round(Ans1 - Ans2,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%? (Round your answer to 4 decimal places)
p = 0.23 n = 602
themean <- 0.23
thesd <- sqrt((themean*(1-themean))/602)
Answer:
Ans1 <- pnorm(0.17, themean, thesd)
Ans2 <- pnorm(0.27,themean,thesd)
round(abs(Ans1 - Ans2),4)
## [1] 0.9899
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 x ?? = 3.9. Assume s = 0.8 . Construct the 80% confidence interval for the mean number of lb. of beef per week among males over 48. (Round your answers to 1 decimal place)
m <- 3.9
s <- 0.8
n <- 208
conf <- qnorm(0.1)*s/sqrt(n)
lower <- m - abs(conf)
upper <- m + abs(conf)
round(lower,1)
## [1] 3.8
round(upper,1)
## [1] 4
An economist wants to estimate the mean per capita income (in thousands of dollars) in a major city in California. Suppose a sample of size 7472 is drawn with x ?? = 16.6. Assume ® = 11 . Construct the 98% confidence interval for the mean per capita income. (Round your answers to 1 decimal place)
m <- 16.6
s <- 11
n <- 7472
conf <- qnorm(0.01)*s/sqrt(n)
lower <- m - abs(conf)
upper <- m + abs(conf)
round(lower,1)
## [1] 16.3
round(upper,1)
## [1] 16.9
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.
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.
Step 1. Calculate the sample mean for the given sample data. (Round answer to 2 decimal places)
Step 2. Calculate the sample standard deviation for the given sample data. (Round answer to 2 decimal places)
Step 3. Find the critical value that should be used in constructing the confidence interval. (Round answer to 3 decimal places)
Step 4. Construct the 90% confidence interval. (Round answer to 2 decimal places)
values <- c(383.6, 347.1, 371.9, 347.6, 325.8, 337)
Step 1
themean <- round(mean(values), 2)
Step 2
thesd <- round(sd(values), 2)
Step 3
conf <- qnorm(0.05)*thesd/sqrt(length(values))
Step 4
lower <- themean - abs(conf)
upper <- themean + abs(conf)
round(lower, 2)
## [1] 337.61
round(upper, 2)
## [1] 366.73