1. 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)
Known Data:
Variance: 40000
mean Steer weight: 1300
N:>979
n<-979
m<-1300
V<-40000
SD<-sqrt(V)
round(pnorm(n, m, SD,lower.tail = FALSE), 4)
## [1] 0.9458
2. 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)
Known Data:
Variance: 1960000
Mean: 11000
N:>8340
n<-8340
m<-11000
v<-1960000
SD<-sqrt(v)
round(pnorm(n, m, SD, lower.tail = FALSE), 4)
## [1] 0.9713
3. 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)
Known Data:
Income: 80,000,000
dev: 3,000,000
Between: 83000000 <= A <= 85000000
n1<-85000000
n2<-83000000
m<-80000000
v<-3000000
round((pnorm(n1, m , v) - pnorm(n2, m , v)), 4)
## [1] 0.1109
4. 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.
Known Data:
N:? Mean:456
SD:123
Top:14%
m<-456
SD<-123
p<-.14
round(qnorm(p, m, SD, lower.tail = FALSE))
## [1] 589
5.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.
Known Data:
Mean: 6.13
SD: .06
Top: 7%
Bottom 7%
m<- 6.13
SD<- .06
p<- .07
round(qnorm(p,m,SD, lower.tail = FALSE),2)
## [1] 6.22
round(qnorm(p,m,SD, lower.tail = TRUE),2)
## [1] 6.04
6.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.
Known Data:
MEAN: 78.8
SD: 9.8
P top 45% and above the bottom 20%
m<- 78.8
SD<- 9.8
p1<- .45
p2<-.20
round(qnorm(p2,m, SD,),0)
## [1] 71
round(qnorm(p1,m, SD, lower.tail = FALSE),0)
## [1] 80
7.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.
Known Data:
MEAN: 21.2
SD: 5.4
Percent: top 45%
m<- 21.2
SD<- 5.4
p<- .45
round(qnorm(p,m,SD, lower.tail = FALSE),1)
## [1] 21.9
8. 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.)
Known Data:
Students: 11 of 151 (less than 11) Percent: 9%
q<- 10
s<- 151
p<- .09
round(pbinom(q,s,p),4)
## [1] 0.192
9. 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)
Known Data:
MEAN: 48
SD: 7
month (q): 48.83
N: 147
n<- 147
m<- 48
q<- 48.83
sd = 7
SM<- sd/sqrt(n)
round(1-pnorm(q,m,SM),4)
## [1] 0.0753
10. 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)
Known Data:
MEAN: 91
SD: 10
Month: 93.54
N: 68
n<-68
m<- 91
SD<- 10
q<- 93.54
SM<- sd/sqrt(n)
round(1-pnorm(q,m,SM),4)
## [1] 0.0014
11. 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)
KNOWN DATA:
N: 540
Passengers (P): .07
Below(p1): Pass-x
Above(p2): Pass+x
x: .3
n<-540
p<-.07
x<-.03
q1<- p-x
q2<- p+x
SE <- sqrt(p * (1-p)/n)
UPPER<- pnorm(q2,p,SE)
LOWER <- pnorm(q1,p, SE)
round(UPPER-LOWER, 3)
## [1] 0.994
12. 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)
KNOWN DATA:
N: 602
P: .23
x: .04
p1: (.23-.04)
p2: (.23+.04)
SE: (sqrt(.23(1.23)/602))
n<-602
P<-.23
x<-.04
p1<- P-x
p2<- P+x
SE<- sqrt(P*(1-P)/n)
round(pnorm(p1, P, SE)+pnorm(p2,P,SE, lower.tail = FALSE),4)
## [1] 0.0197
13. 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 mean = 3.9. Assume STD = 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)
KNOWN DATA:
N: 208
mean: 3.9
STD: .8
ci: .8
Lower Bound: (see Below)
Upper Bound: (see Below)
n <- 208
m <- 3.9
sd <- .8
ci <- .8
SE <- sd/sqrt(n)
p <- (1-ci)/2
t <- abs(qt(p, (n-1)))
round((m-t * SE),1)
## [1] 3.8
round((m+t * SE),1)
## [1] 4
14. 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 mean = 16.6. Assume SD = 11 . Construct the 98% confidence interval for the mean per capita income. (Round your answers to 1 decimal place)
KNOWN DATA:
N: 7472
M: 16.6
SD: 11
CI: 98%
Lower Bound: (see Below)
Upper Bound: (see Below)
n <- 7472
m <- 16.6
sd <- 11
ci <- .98
SE <- sd/sqrt(n)
p <- (1-ci)/2
t <- abs(qt(p, (n-1)))
round((m-t * SE),1)
## [1] 16.3
round((m+t * SE),1)
## [1] 16.9
15. 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.
Step 1. Choose the picture which best describes the problem.
Upper Right
Step 2. Write your answer below.
KNOWN DATA:
N: 26
P: .05
n <- 26
p<- .05
qt(p,n -1)
## [1] -1.708141
16. 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.
KNOWN DATA:
P: based off of chart of 6
CI: 90%
Step 1. Calculate the sample mean for the given sample data. (Round answer to 2 decimal places)
q <- c(383.6, 347.1, 371.9, 347.6, 325.8, 337)
m <-round(mean(q),2)
m
## [1] 352.17
Step 2. Calculate the sample standard deviation for the given sample data. (Round answer to 2 decimal places)
sd<- round(sd(q),2)
sd
## [1] 21.68
Step 3. Find the critical value that should be used in constructing the confidence interval. (Round answer to 3 decimal places)
n <- 6
ci<- .90
p <- (1-ci)/2
cv<- abs(round(qt(p,n-1),3))
cv
## [1] 2.015
Step 4. Construct the 90% confidence interval. (Round answer to 2 decimal places)
Lower Bound:
Upper Bound:
SE <- sd/sqrt(n)
round((m-cv * SE),2)
## [1] 334.34
round((m+cv * SE),2)
## [1] 370
17. 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.
KNOWN DATA:
N: 16
M: 46.4
SD: 2.45
CI: 80%
Step 1. Find the critical value that should be used in constructing the confidence interval. (Round answer to 3 decimal places)
m <-46.4
sd<-2.45
N<- 16
ci<- .80
p<-(1-ci)/2
cv<- abs(qt(p,N-1))
round(t,3)
## [1] 2.327
Step 2. Construct the 80% confidence interval. (Round answer to 1 decimal place)
Lower Bound: (see Below)
Upper Bound: (see Below)
round(m-cv * sd/sqrt(N),1)
## [1] 45.6
round(m+cv * sd/sqrt(N),1)
## [1] 47.2
18. 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? (Round your answer up to the next integer)
KNOWN DATA:
N: ??
M: 8
SD: 1.9
CI: 99%
SE: .13
m <- 8
sd<- 1.9
se<- .13
ci<- .99
z <- qnorm(1-(1-ci)/2)
round((z*sd/se)^2,0)
## [1] 1417
19. 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? (Round your answer up to the next integer)
KNOWN DATA:
N: ??
M: 12.6
V: 3.61
SD: sqrt(V)
CI: 95%
SE: .19
m<- 12.6
v<- 3.61
sd<- sqrt(v)
se<- .19
ci<- .95
z <- qnorm(1-(1-ci)/2)
round((z*sd/se)^2,0)
## [1] 384
20. The state education commission wants to estimate the fraction of tenth grade students that have reading skills at or below the eighth grade level.
KNOWN DATA:
N: ??
M: 12.6
V: 3.61
SD: sqrt(V)
CI: 95%
SE: .19
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. (Write your answer as a fraction or a decimal number rounded to 3 decimal places)
KNOWN DATA:
N: 2089
N+8th: 1734
N <- 2089
n_8 <- 1734
n1 <- N-n_8
step1<- (n1/N)
round(step1,3)
## [1] 0.17
Step 2. 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. (Round your answers to 3 decimal places)
KNOWN DATA:
N: 2089
N+8th: 1734
N1: 2089-1734
CI: 98%
Lower Bound: (see Below)
Upper Bound: (see Below)
N <- 2089
n_8 <- 1734
n1 <- N-n_8
ci <- .98
z <- qnorm(1-(1-ci)/2)
p <- 1-(n_8/N)
se<- sqrt((p*(1-p))/n1)
round(p-z*se,3)
## [1] 0.124
round(p+z*se,3)
## [1] 0.216
21. 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. (Write your answer as a fraction or a decimal number rounded to 3 decimal places)
KNOWN DATA:
N: 474
N+Spills: 156
N1: 474-156
N <- 474
n1<- 156
round((n1/N),3)
## [1] 0.329
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. (Round your answers to 3 decimal places)
KNOWN DATA:
N: 474
N+Spills: 156
N1: 474-156
CI: 95%
Lower Bound: (see Below)
Upper Bound: (see Below)
N<- 474
n1 <- 156
ci <- .95
n2 <- N-n1
z <- qnorm(1-(1-ci)/2)
p <- n1/N
se<- sqrt((p*(1-p))/n2)
round(p-z*se,3)
## [1] 0.277
round(p+z*se,3)
## [1] 0.381