100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Solutions for Design and Analysis of Experiments with R 1st Edition by Lawson (All Chapters included) $29.49   Add to cart

Exam (elaborations)

Solutions for Design and Analysis of Experiments with R 1st Edition by Lawson (All Chapters included)

 1 view  0 purchase
  • Course
  • Design and Analysis of Experiments 1e Lawson
  • Institution
  • Design And Analysis Of Experiments 1e Lawson

Complete Solutions Manual for Design and Analysis of Experiments with R 1st Edition by John Lawson ; ISBN13: 9781439868133...(Full Chapters are included and organized in reverse order from Chapter 12 to 1)...1. Introduction 2. Completely Randomized Designs with One Factor 3. Factorial Designs 4....

[Show more]

Preview 4 out of 275  pages

  • November 15, 2024
  • 275
  • 2013/2014
  • Exam (elaborations)
  • Questions & answers
  • Design and Analysis of Experiments 1e Lawson
  • Design and Analysis of Experiments 1e Lawson
avatar-seller
mizhouubcca
Design and Analysis of Experiments
with R 1st Edition by John Lawson




Complete Chapter Solutions Manual
are included (Ch 1 to 12)




** Immediate Download
** Swift Response
** All Chapters included

,Table of Contents are given below




1. Introduction
2. Completely Randomized Designs with One Factor
3. Factorial Designs
4. Randomized Block Designs
5. Designs to Study Variances
6. Fractional Factorial Designs
7. Incomplete and Confounded Block Designs
8. Split-Plot Designs
9. Crossover and Repeated Measures Designs
10. Response Surface Designs
11. Mixture Experiments
12. Robust Parameter Design Experiments
Experimental Strategies for Increasing Knowledge

,Solutions Manual organized in reverse order, with the last chapter displayed first, to ensure that all
chapters are included in this document. (Complete Chapters included Ch12-1)



Chapter 12 Solutions

John Lawson

2/25/2021

1. Consider the commercial product test of erasers conducted by Sachiyo and Kosaka in 1971 and discussed
by Taguchi (1987). The purpose of the test was to determine the quality of erasure when lines of the
same length drawn on different types of paper were rubbed with different erasers. For the experiment,
lines of the same length were drawn on each type of paper by different pencils. The lines were rubbed
three times back and forth by each eraser and then judged for quality. A response of $0 = $ top means
that no pencil trace was left on the paper. A response of 1 = middle means only a faint pencil trace
was left on the paper, and response of 2 = bottom means it did not erase very well.
Factors and levels for the experiment are shown in Table 1. The hope was to identify the brand and material
that produced the best quality erasure consistently regardless of the type of paper or the hardness of the
pencil lead used.


Table 1: Factors and Levels for Commercial Product Test of Erasers
Levels
Factor 1 2 3 4 5
Control Factors:
A: Manufacturer Rabbit Staedtler
B: Material Rubber Plastic
Noise Factors:
C: Paper Note Paper Tracing Paper
D: Lead Hardness 4H 2H HB 2B 4B

The control-factor array was a 22 factorial. One cell is missing since one manufacturer did not make rubber
erasers, and one cell is duplicated since the other manufacturer made two types of plastic erasers. The noise
factor array was a 2 × 5 full factorial. The product array design and the judged responses are shown in Table
2.

Table 2: Product Array Design and Response for Commercial Product Test
C 1 2
A B D 1 2 3 4 5 1 2 3 4 5
1 1 1 0.5 1 1 1 0 0.5 0.5 2 1.5
1 2 0.5 1 1 1 1 0 0 0 0.5 1.5
2 2 0 0 0 0 0.5 0 0 0 0.5 0
1 2 0 0.5 1 1 0 0 0 0.5 1.5 1.5

(a) Analyze the data using location-dispersion modeling.
# create control array
A<-c(1,1,2,1)
B<-c(1,2,2,2)
Carray<-data.frame(A,B)
#calculate mean and log variance across levels of the noise array
row<-rep(1:4,each=10)


243

, y<-c(1,0.5,1,1,1,0,0.5,0.5,2,1.5,0.5,1,1,1,1,0,0,0,0.5,1.5,0,0,0,0,0.5,0,0,0,0.5,
0,0,0.5,1,1,0,0,0,0.5,1.5,1.5)
meany<-tapply(y,row,mean)
logvar<-log(tapply(y,row,var))
# append mean and variance to rows of control array
Carray<-cbind(Carray,meany,logvar)
Carray

## A B meany logvar
## 1 1 1 0.90 -1.1325138
## 2 1 2 0.65 -1.2709835
## 3 2 2 0.10 -3.1135153
## 4 1 2 0.60 -0.9734491
# fit location dispersion models
mody<-lm(meany~A+B, data=Carray)
summary(mody)

##
## Call:
## lm(formula = meany ~ A + B, data = Carray)
##
## Residuals:
## 1 2 3 4
## 0.000e+00 2.500e-02 3.469e-18 -2.500e-02
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 1.70000 0.07906 21.503 0.0296 *
## A -0.52500 0.04330 -12.124 0.0524 .
## B -0.27500 0.04330 -6.351 0.0994 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.03536 on 1 degrees of freedom
## Multiple R-squared: 0.9963, Adjusted R-squared: 0.9889
## F-statistic: 134.3 on 2 and 1 DF, p-value: 0.06091
modv<-lm(logvar~A+B, data=Carray)
summary(modv)

##
## Call:
## lm(formula = logvar ~ A + B, data = Carray)
##
## Residuals:
## 1 2 3 4
## 0.000e+00 -1.488e-01 -2.776e-17 1.488e-01
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 0.8485 0.4704 1.804 0.3223
## A -1.9913 0.2577 -7.728 0.0819 .
## B 0.0103 0.2577 0.040 0.9746
## ---


244

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller mizhouubcca. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $29.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

79223 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$29.49
  • (0)
  Add to cart