Question

In: Math

An exercise science major wants to try to use body weight to predict how much someone...

An exercise science major wants to try to use body weight to predict how much someone can bench press. He collects the data shown below on 30 male students. Both quantities are measured in pounds.

Body weight

Bench press

148

145

176

148

154

133

189

156

181

166

217

174

210

168

150

139

137

109

151

119

172

138

219

167

142

131

143

119

164

151

136

124

147

149

129

134

219

162

169

140

180

149

187

156

198

149

156

131

220

149

154

138

212

147

122

122

163

133

136

136

b) Compute a 95% confidence interval for the average bench press of 150 pound males. What is the lower limit? Give your answer to two decimal places.  

c) Compute a 95% confidence interval for the average bench press of 150 pound males. What is the upper limit? Give your answer to two decimal places.  

d) Compute a 95% prediction interval for the bench press of a 150 pound male. What is the lower limit? Give your answer to two decimal places.  

e) Compute a 95% prediction interval for the bench press of a 150 pound male. What is the upper limit? Give your answer to two decimal places.  

Solutions

Expert Solution

Answer:

We can solve it by using R software. First import the given data set into R.

R-code for confidence and prediction interval:

attach(data); #Attach given data set.
x = `Body weight`; # Denote independent variable Body weight = x.
y = `Bench press`; # Denote dependent variable Bench press = y.
reg_model = lm(y ~ x); # For generating simple linear regression model.
reg_model;
newdata = data.frame(x = 150);
#for attaching the new value of Body weight = 150. #We now apply the predict function and set the predictor variable in the newdata argument. We also set the interval type as "predict" or "confidence", and use the default 0.95 confidence level.
predict(reg_model, newdata, interval = "confidence" ); # For estimating confidence interval for average Bench press.
predict(reg_model, newdata, interval = "predict"); # For estimating prediction interval for average Bench press.

Then from the R output:

reg_model:

Call:
lm(formula = y ~ x)

Coefficients:

Intercept x
70.1712 0.4284

Confidence Interval:

Fit Lower Upper
134.436 130.0678 138.8042

Prediction Interval:

Fit Lower Upper
134.436 113.9732 154.8989

Ans (b):

Lower limit of confidence interval = 130.07

Ans (c):

Upper limit of confidence interval = 138.80

Ans (d):

Lower limit of prediction interval = 113.97

Ans (e):

Upper limit of prediction interval = 154.90


Related Solutions

An exercise science major wants to try to use body weight to predict how much someone...
An exercise science major wants to try to use body weight to predict how much someone can bench press. He collects the data shown below on 30 male students. Both quantities are measured in pounds. b) Compute a 95% confidence interval for the average bench press of 150 pound males. What is the lower limit? Give your answer to two decimal places.   c) Compute a 95% confidence interval for the average bench press of 150 pound males. What is the...
An exercise science major wants to try to use body weight to predict how much someone...
An exercise science major wants to try to use body weight to predict how much someone can bench press. He collects the data shown below on 30 male students. Both quantities are measured in pounds. Body Weight Bench Press 147 134 134 131 141 125 129 135 152 147 176 142 196 171 200 158 132 134 176 153 204 153 194 156 211 164 145 129 180 141 201 162 124 118 145 151 172 143 145 137 137...
Use knowledge of engineering science and mathematics to predict some key performance metrics of the caravan (weight, cost of manufarure, acceleration etc)
Use knowledge of engineering science and mathematics to predict some key performance metrics of the caravan (weight, cost of manufarure, acceleration etc)
An economist with a major bank wants to learn, quantitatively, how much spending on luxury goods...
An economist with a major bank wants to learn, quantitatively, how much spending on luxury goods and services can be explained based on consumers’ perception about the current state of the economy and what do they expect in the near future (6 months ahead).  Consumers, of all income and wealth classes, were surveyed.  Every year, 1500 consumers were interviewed.  The bank having all of the data from the 1500 consumers interviewed every year, computed the average level of consumer confidence (an index ranging...
An economist with a major bank wants to learn, quantitatively, how much spending on luxury goods...
An economist with a major bank wants to learn, quantitatively, how much spending on luxury goods and services can be explained based on consumers’ perception about the current state of the economy and what do they expect in the near future (6 months ahead).  Consumers, of all income and wealth classes, were surveyed.  Every year, 1500 consumers were interviewed.  The bank having all of the data from the 1500 consumers interviewed every year, computed the average level of consumer confidence (an index ranging...
An economist with a major bank wants to learn, quantitatively, how much spending on luxury goods...
An economist with a major bank wants to learn, quantitatively, how much spending on luxury goods and services can be explained based on consumers’ perception about the current state of the economy and what do they expect in the near future (6 months ahead).  Consumers, of all income and wealth classes, were surveyed.  Every year, 1500 consumers were interviewed.  The bank having all of the data from the 1500 consumers interviewed every year, computed the average level of consumer confidence (an index ranging...
An economist with a major bank wants to learn, quantitatively, how much spending on luxury goods...
An economist with a major bank wants to learn, quantitatively, how much spending on luxury goods and services can be explained based on consumers’ perception about the current state of the economy and what do they expect in the near future (6 months ahead).  Consumers, of all income and wealth classes, were surveyed.  Every year, 1500 consumers were interviewed.  The bank having all of the data from the 1500 consumers interviewed every year, computed the average level of consumer confidence (an index ranging...
60 observations from a study on the impact of exercise and diet on body weight loss....
60 observations from a study on the impact of exercise and diet on body weight loss. The variables, exercise, diet, and exdiet are binary variables and the variable diff is a continuous variable. All of these are defined as follows: exercise = 1 if a person exercises, 0 otherwise diet = 1 if a person follows a diet plan, 0 otherwise exdiet = 1 if a person exercises and follows a diet plan, 0 otherwise diff = The difference observed...
60 observations from a study on the impact of exercise and diet on body weight loss.
  60 observations from a study on the impact of exercise and diet on body weight loss. The variables, exercise, diet, and exdiet are binary variables and the variable diff is a continuous variable. exercise = 1 if a person exercises, 0 otherwise. diet = 1 if a person follows a diet plan, 0 otherwise. exdiet = 1 if a person exercises and follows a diet plan, 0 otherwise. diff = The difference observed in weight (in lbs.) after 3...
1. Consider a study where we use a person's education level to to predict how much...
1. Consider a study where we use a person's education level to to predict how much money they have invested. What type of variable is the dependent variable? Binary Discrete Continuous Qualitative 2. Consider an experiment where we use the amount of sugar in cereal to predict what shelf the cereal is placed on in the grocery store. What type of variable is the independent variable? A. Discrete B. Continuous C. Categorical D. Qualitative 3. You want to determine whether...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT