MANE 6313 - Design of Experiments
Homework Assignment 10
Assigned: April 5, 2023
Due: April 14, 2023
Work problem 3.11 from Montgomery, Peck and Vining1. When a decision or analysis is made, use alpha = 0.05 unless told to use another value. There is a library, MPV, in CRAN that contains the data values for the Montgomery, Peck and Vining textbook. Install MPV before starting homework 10. Instructions for using the MPV library are provided in this assignment.
- Parts a- e as written,
- Perform a partial F-test for the full model and the reduced model found in part d,
- Construct a 99% confidence interval for the mean when ?
- Construct a 99% prediction interval when ?
Problem 3.11

Problem 3.11 - Data Table

Using MPV Library
library('MPV')
data(table.b7)
attach(table.b7)
# full model
model.full <- lm(y~x1+x2+x3+x4+x5)
summary(model.full)
detach(table.b7)
Please upload your submission as a single PDF document to the Homework 10 Drop Box before the end of the day on April 14, 2023.
-
Montgomery, Peck and Vining (2012). Introduction to Linear Regression Analysis, 5th edition. John Wiley and Sons. ↩