Design and Analysis of Experiments

Size: px
Start display at page:

Download "Design and Analysis of Experiments"

Transcription

1 Design and Analysis of Experiments Part IX: Response Surface Methodology Prof. Dr. Anselmo E de Oliveira anselmo.quimica.ufg.br anselmo.disciplinas@gmail.com

2 Methods Math Statistics Models/Analyses Response (multifactor) Objective Response Optimization y = f x 1, x 2 + ε η = f x 1, x 2 η = E y response surface expected response

3

4

5

6 Models Response well modeled by a linear function of the independent variables First-order model y = β 0 + β 1 x 1 + β 2 x β k x k + ε If there is a curvature in the system Second-order model y = β 0 + k i=1 β i x i k + β ii x i 2 i=1 + β ij x i x j Method of least squares is used to estimate the parameters in the approximating polynomials Response surface analysis is performed using the fitted surface Response surface designs i<j + ε

7 RSM is a sequential procedure First-order model The objective is to lead the experimenter rapidly and efficiently along a path of improvement toward the general vicinity of the optimum Second-order model Climbing a hill

8

9 For example... An experimenter is interested in determining the operating conditions that maximize the yield of a procedure. Two variables influence process yield Reaction time (t) Temperature (T) Current operating conditions: 75 min and 130 o C s = 1.5 for the yield Experimental Design 2 2 full factorial design t = 70 (-) and 80 (+) min T = (-) and (+) o C

10 2 2 factorial augmented by three center points run t /min T / o C y /g run order: 5,4,2,6,1,7,3 Natural variables: Time and temperature Coded variables: x 1 and x 2 x 1 = time 75 5 x 2 = temperature

11 First-order model y = β 0 + β 1 x 1 + β 2 x 2 + β 12 x 1 x 2 Least square fit > x1<-c(-1,1,-1,1,0,0,0) > x2<-c(-1,-1,1,1,0,0,0) > y<-c(54.3,60.3,64.6,68,60.3,64.3,62.3) > reg1<-lm(y~x1*x2) Call: lm.default(formula = y ~ x1 * x2) Coefficients: (Intercept) x1 x2 x1:x y = x x x 1 x 2

12 Factorial design effects t = 4.7 T = 9.0 tt = -1.3

13 ANOVA for the first-order model > anova(reg1) Analysis of Variance Table Response: y Df Sum Sq Mean Sq F value Pr(>F) x x * x1:x Residuals Signif. codes: 0 *** ** 0.01 * The first-order model assumes that the variables x 1 and x 2 have an additive effect on the response. Interaction between the variables would be represented by the coefficient β 12 of the crossproduct term x 1 x 2 added to the model. y = x x 2

14 Check for a pure quadratic curvature effect y average response at F y C the four points in the factorial portion of the design average response at the design center

15 run t /min T / o C y /g y F = y C = y F y c = using σ = 1.5 V y F y C = V y F + V y C = σ N F 2 + σ NC 2 V y F y C = V y F y C = 1.31 s yf y C = These two results (y F y c = 0.50 and s yf y C = 1.15) indicate that there is no evidence of second-order curvature in the response over the region of exploration

16 > reg1<-lm(y~x1+x2) # model without b12 > coefficients(reg1) # model coefficients (Intercept) x1 x > confint(reg1, level=0.95) # CIs for model parameters 2.5 % 97.5 % (Intercept) x x > fitted(reg1) # predicted values > residuals(reg1) # residuals

17 > layout(matrix(c(1,2,3,4),2,2)) # optional 4 graphs/page > plot(reg1)

18 library(plot3d) x<-seq(-1,1,by=.1) y<-seq(-1,1,by=.1) M<-mesh(x,y) z= *m$x+4.5*m$y par(mar = c(2, 2, 2, 2)) surf3d(x=m$x,y=m$y,z, bty="b2", xlab="x1",ylab="x2",zlab="y")

19 contour2d(x=x,y=y,z, xlab="x1",ylab="x2",lwd=3)

20 > library(rsm) > reg1.rsm<-rsm(y~fo(x1,x2)) > contour(reg1.rsm,~x1+x2, image = TRUE)

21 The Method of Steepest Ascent the path of steepest ascent is the line through the center of the region of interest and normal to the fitted surface

22 path of steepest ascent x 2 First-order fitted surface x 1

23 y = x x 2 To move away from the design center the point (x 1 = 0, x 2 = 0) along the path of steepest ascent, we would to move 2.35 units in the x 1 direction for every 4.50 units in the x 2 direction. Thus, the path of steepest ascent passes through the point (x 1 = 0, x 2 = 0) and has a slope 4.50/2.35. Using the relationship between time and temperature we see that 5 min of reaction time is equivalent to a step in the coded variable x 1 of x 1 = 1 Steps along the path of steepest ascent: x 1 = 1 x 2 = = 1.91

24 > steps<-steepest(reg1.rsm); steps Path of steepest ascent from ridge analysis: dist x1 x2 yhat > contour(reg1.rsm,~x1+x2, image = TRUE, + xlim=c(-1,3),ylim=c(-1,4)) > lines(steps$x1,steps$x2,col="red", type ="b", pch=19)

25 center path of steepest ascent x 1 x 2 t T run y ,6,

26 Second Design Highest yield: run 10 t = 90 min T = 145 o C New design 2 2 factorial augmented by two center points Coded variables x 1 = time x 2 = temperature x 1 x 2 t T run y center points

27 First-order model y = β 0 + β 1 x 1 + β 2 x 2 + β 12 x 1 x 2 Least square fit > x1<-c(-1,1,-1,1,0,0) > x2<-c(-1,-1,1,1,0,0) > y<-c(78.8,84.5,91.2,77.4,89.7,86.8) > lm(y~x1*x2) Call: lm.default(formula = y ~ x1 * x2) Coefficients: (Intercept) x1 x2 x1:x y = x x x 1 x 2

28 Factorial design effects t = T = 2.65 tt = first design t = 4.7 T = 9.0 tt = -1.3

29 ANOVA for the first-order model > anova(reg2) Analysis of Variance Table Response: y Df Sum Sq Mean Sq F value Pr(>F) x x x1:x Residuals There is no significant term for the first-order model!

30 Check for a pure quadratic curvature effect x 1 x 2 t T run y y F = y F y c = y C = using σ = 1.5 V y F y C = V y F + V y C = σ N F 2 + σ NC 2 V y F y C = V y F y C = 1.69 s yf y C = The first-order model is not adequate to represent the response over this region of exploration! These two results (y F y c = 5.28 and s yf y C = 1.30) indicate that there is evidence of second-order curvature in the response over the region of exploration

31 Analysis of a Second-Order Response Surface Close to the optimum a model that incorporates curvature is required k 2 y = β 0 + β i x i + β ii x i + β ij x i x j + ε i=1 k i=1 i<j y = β 0 + β 1 x 1 + β 2 x 2 + β 11 x β 22 x β 12 x 1 x 2 06 parameters: β 0, β 1, β 2, β 11, β 22 and β leves: --, -+, +-, ++, 00 Since the number of parameters is higher than the levels, the design must be augmented Central Composite Design

32 Central Composite Design (CCD) a = 1.414

33 The initial design is augmented with a group of star points 04 axial points 02 central points , ,

34 x 1 x 2 t T run y obs The design matrix consists of runs 11 to , ,

35 > library(rsm) > design.ccd<-ccd(basis=~x1+x2,n0=2,alpha="orthogonal",randomize=false) > design.ccd run.order std.order x1.as.is x2.as.is Block y Data are stored in coded form using these coding formulas... x1 ~ x1.as.is x2 ~ x2.as.is

36 > model<-lm(y ~ x1 + x2 + I(x1^2) + I(x2^2) + x1:x2,data=design.ccd) > summary(model) Call: lm.default(formula = y ~ x1 + x2 + I(x1^2) + I(x2^2) + x1:x2, data = design.ccd) Residuals: Min 1Q Median 3Q Max Coefficients: Estimate Std. Error t value Pr(> t ) (Intercept) e-10 *** x x I(x1^2) * I(x2^2) ** x1:x ** --- Signif. codes: 0 *** ** 0.01 * Residual standard error: on 6 degrees of freedom Multiple R-squared: , Adjusted R-squared: F-statistic: on 5 and 6 DF, p-value: b 2 (P 0.1) is not significant. The resulting surface model equation is y = x x x x 1 x 2

37 > model.rsm <- rsm (y ~ SO(x1,x2),data=design.ccd) > model.rsm$coefficients (Intercept) FO(x1, x2)x1 FO(x1, x2)x2 TWI(x1, x2) PQ(x1, x2)x1^2 PQ(x1, x2)x2^ > model.rsm$coefficients[3] FO(x1, x2)x > model.rsm$coefficients[3]<-c(0) > model.rsm$coefficients[3] FO(x1, x2)x2 0 > model.rsm$coefficients (Intercept) FO(x1, x2)x1 FO(x1, x2)x2 TWI(x1, x2) PQ(x1, x2)x1^2 PQ(x1, x2)x2^ y = x x x x 1 x 2

38 > persp (model.rsm, ~x1+x2, at = xs(model.rsm), + contours = "col", col = rainbow(40), zlab = "Yield", + xlabs = c("x1", "x2"))

39 st design: T and t y 2nd design: T and t y

40 Location of the Stationary Points Stationary point Let X be a function differentiable and continuous, and X D a subset of R n x s D is a stationary point if x s = 0 x x s = x k x 0,1, x 0,2,, x 0,n = 0, k = 1,2,, n k x 1, x 2,, x k y = y = = y = 0 x 1 x 2 x k stationary point coordinates Maximum response Minimum response Saddle point Response Surface

41 Fitted second-order model in a matrix notation y = β 0 + x t + x t Bx x = x 1 x 2 x k b = y x β 1 β 2 β k B = = b + 2Bx = 0 x s = 1 2 B 1 b β 11 β 1k /2 β kk y s = β x s t b

42 > model.rsm$coefficients (Intercept) FO(x1, x2)x1 FO(x1, x2)x2 TWI(x1, x2) PQ(x1, x2)x1^2 PQ(x1, x2)x2^ > b<-c(model.rsm$coefficients[2],model.rsm$coefficients[3]) β 1 > b<-matrix(b,nrow=2,ncol=1); b [,1] [1,] [2,] > b<-c(model.rsm$coefficients[2],model.rsm$coefficients[3]) > b<-matrix(b,nrow=2,ncol=1) > B<-c(model.rsm$coefficients[5],model.rsm$coefficients[4]/2, + model.rsm$coefficients[4]/2,model.rsm$coefficients[6]) > B<-matrix(B,nrow=2,ncol=2); B [,1] [,2] [1,] [2,] > xs=-0.5*solve(b)%*%b; xs [,1] [1,] [2,] > ys<-model.rsm$coefficients[1]+0.5*t(xs)%*%b; ys [,1] [1,] x s = 1 2 B 1 b B = b = β 2 β k β 11 β 1k /2 β kk y s = β x s t b x 1 = x 2 = The maximum is out of the design region x 1 = time 90 min 10 min x 2 = Temperature 145 o C 5 o C

43 Canonical analysis New coordinate system with the origin at the stationary point x s Rotate the axis of this system until they are parallel to the principal axes of the fitted response surface Canonical form of the model y = y s + λ 1 w λ 2 w λ k w k 2 where {w i } are the transformed independent variables and the {λ i } are constants. {λ i } are the eigenvalues or characteristic roots of B {λ i } are all positive: x s is a point of minimum response {λ i } are all negative: x s is a point of maximum response {λ i } have different signs: x s is a saddle point > yca<-eigen(b) > yca$val [1]

44 > steps.can<-canonical.path(model.rsm);steps.can dist x1 x2 x1.as.is x2.as.is yhat > contour(model.rsm,~x1+x2,image=true, + xlabs=c("x1", "x2"), + xlim=c(-8,1.5),ylim=c(-1.5,6.5)) > lines(steps.can$x1,steps.can$x2, + col="red",type ="b",pch=19)

45 canonical path stationary point

46 y x 2 x 1

47 New Model y = x x 1 2 2x 2 2 2x 1 x 2 > b<-c(-1.381,0) > b<-matrix(b,nrow=2,ncol=1); b [,1] [1,] [2,] > B<-c(-5.14,-2/2,-2/2,-2) > B<-matrix(B,nrow=2,ncol=2); B [,1] [,2] [1,] [2,] > xs=-0.5*solve(b)%*%b; xs [,1] [1,] [2,] > ys<-model.rsm$coefficients[1]+0.5*t(xs)%*%b; ys [,1] [1,] > yca<-eigen(b) > yca$val [1] stationary point coordinates response at the stationary point x s is a point of maximum response

48 y x 1 x 2

49 y x 2 x 1

50 Response Surfaces maximum

51 Saddle point

52 minimum

53

54 Multiple Response Optimization Desirability Objective Function It is one of the most widely used methods in industry for the optimization of multiple response processes For each response y i x, a desirability function d i y i assigns numbers between 0 and 1 to the possible values of y i d i y i = 0 represents a completely undesirable value of y i d i y i = 1 represents a completely desirable or ideal response value

55 The individual desirabilities are then combined using the geometric mean, which gives the overall desirability n D = d i y i i=1 1 n with n denoting the number of responses It determines the best combination of responses The desirability approach consists of the following steps Conduct experiments and fit response models for all n responses Define individual desirability functions for each response Maximize the overall desirability D with respect to the controllable factors

56 Octave online

57 Octave: 4D Plots x1=-1:.1:1; x2=x1; x3=x1; [X1,X2,X3]=meshgrid(x1,x2,x3); Y= *X1+7*X2+8.25*X3-9.25*X1.*X2+9.5*X1.*X3+2.82*X1.*X1-6.18*X2.*X2; slice(x1,x2,x3,y,[-1. 1.],[-1. 1.],[-1. 1.]) colorbar () xlabel("x1"); ylabel("x2"); zlabel("x3"); view(120,35)

58 Experimental Designs for Fitting Response Surfaces Orthogonal First-Order Designs Simplex design y = b 0 + k i=1 b i x i + e k = 2 k = 3

59

60

61 Variable-size

62 Spyridon Konstantinidis, Sunil Chhatre, Ajoy Velayudhan, Eva Heldin, Nigel Titchener-Hooker, Analytica Chimica Acta 743 (2012) 19 32

63

64 4 vertexes x 2 x 1 x 3

65

66 Second-Order Designs Central Composite Design 2 k Factorial (or fractional factorial of resolution V) n f factorial runs 2 k axial or star runs n c center runs K = 2 K = 3

67 Rotability V y x is the same at all points x that are at the same distance from the design center V y x = σ 2 x t X t X 1 x α = n f 1 4, where nf is the number of points used in the factorial portion of the design

68 n f = 4 α = 2 1.4

69

70 circumscribed face centered inscribed

71 Box-Behnken Design Spherical design 2 radius Very efficient in terms of the number of required runs It does not contain any points at the vertices This could be advantageous when the points on the corners are prohibitively expensive or impossible to test

72 X 1 X 2 X 3 X 1 X 2 X

73 Other Designs Equiradial designs hexagon pentagon

74 Other Designs Optimal designs Irregular experimental region (not a cube or a sphere) Constraint on the design variables x 1 + x 2 or condition

75 Nonstandard model y = β 0 + β 1 x 1 + β 2 x 2 + β 11 x β 22 x β 12 x 1 x 2 + β 112 x 1 2 x 2 + β 1112 x 3 2 x 2 Unusual sample size requirements The number of design runs can be extremely expensive or time-consuming Small composite design Fractional factorial design in the cube of resolution III hybrid design Irregular levels

76 Box-Behnken 3 K design

77 Full 3 k 27 run Worker Bottle Shelf Run Order x 1 x 2 x 3 y >library(doe.base) >design<-fac.design(nlevels=3, nfactors=3, factor.names = list(x1=c(-1,0,1), x2=c(-1,0,1), x3=c(-1,0,1)), replications=1, randomize=false) >x1<-as.numeric(levels(design$x1)[design$x1]) >x2<-as.numeric(levels(design$x2)[design$x2]) >x3<-as.numeric(levels(design$x3)[design$x3]) >model<-lm(y~x1*x2*x3+i(x1^2)+i(x2^2)+i(x3^2)) >summary(model)

78 Box-Behnken 14 runs (12 +2 pc) Worker Bottle Shelf Run Order x 1 x 2 x 3 y x 1 >library(rsm) >design.bbd<-bbd(3,n0=2,randomize=false) >model<-lm(y~x1*x2*x3+i(x1^2)+i(x2^2)+i(x3^2),data=design.bbd) >summary(model) x 2 x 3

79 Full 3 k x 3 = 0.66 x 1 x 3 = 0.23 x 1 2 = 0.80 x 3 2 = 0.31 Box-Behnken x 3 = 0.57 x 1 2 = 0.70 x 3 2 = 0.5

DESIGN OF EXPERIMENT ERT 427 Response Surface Methodology (RSM) Miss Hanna Ilyani Zulhaimi

DESIGN OF EXPERIMENT ERT 427 Response Surface Methodology (RSM) Miss Hanna Ilyani Zulhaimi + DESIGN OF EXPERIMENT ERT 427 Response Surface Methodology (RSM) Miss Hanna Ilyani Zulhaimi + Outline n Definition of Response Surface Methodology n Method of Steepest Ascent n Second-Order Response Surface

More information

7. Response Surface Methodology (Ch.10. Regression Modeling Ch. 11. Response Surface Methodology)

7. Response Surface Methodology (Ch.10. Regression Modeling Ch. 11. Response Surface Methodology) 7. Response Surface Methodology (Ch.10. Regression Modeling Ch. 11. Response Surface Methodology) Hae-Jin Choi School of Mechanical Engineering, Chung-Ang University 1 Introduction Response surface methodology,

More information

Response-surface illustration

Response-surface illustration Response-surface illustration Russ Lenth October 23, 2017 Abstract In this vignette, we give an illustration, using simulated data, of a sequential-experimentation process to optimize a response surface.

More information

Response Surface Methodology

Response Surface Methodology Response Surface Methodology Bruce A Craig Department of Statistics Purdue University STAT 514 Topic 27 1 Response Surface Methodology Interested in response y in relation to numeric factors x Relationship

More information

Unit 12: Response Surface Methodology and Optimality Criteria

Unit 12: Response Surface Methodology and Optimality Criteria Unit 12: Response Surface Methodology and Optimality Criteria STA 643: Advanced Experimental Design Derek S. Young 1 Learning Objectives Revisit your knowledge of polynomial regression Know how to use

More information

Design and Analysis of Experiments

Design and Analysis of Experiments Design and Analysis of Experiments Part VIII: Plackett-Burman, 3 k, Mixed Level, Nested, and Split-Plot Designs Prof. Dr. Anselmo E de Oliveira anselmo.quimica.ufg.br anselmo.disciplinas@gmail.com Plackett-Burman

More information

Response Surface Methodology

Response Surface Methodology Response Surface Methodology Process and Product Optimization Using Designed Experiments Second Edition RAYMOND H. MYERS Virginia Polytechnic Institute and State University DOUGLAS C. MONTGOMERY Arizona

More information

Response Surface Methodology:

Response Surface Methodology: Response Surface Methodology: Process and Product Optimization Using Designed Experiments RAYMOND H. MYERS Virginia Polytechnic Institute and State University DOUGLAS C. MONTGOMERY Arizona State University

More information

Contents. 2 2 factorial design 4

Contents. 2 2 factorial design 4 Contents TAMS38 - Lecture 10 Response surface methodology Lecturer: Zhenxia Liu Department of Mathematics - Mathematical Statistics 12 December, 2017 2 2 factorial design Polynomial Regression model First

More information

Response-Surface Methods in R, Using rsm

Response-Surface Methods in R, Using rsm Response-Surface Methods in R, Using rsm Updated to version 2.00, 5 December 2012 Russell V. Lenth The University of Iowa Abstract This introduction to the R package rsm is a modified version of Lenth

More information

Response Surface Methodology: Process and Product Optimization Using Designed Experiments, 3rd Edition

Response Surface Methodology: Process and Product Optimization Using Designed Experiments, 3rd Edition Brochure More information from http://www.researchandmarkets.com/reports/705963/ Response Surface Methodology: Process and Product Optimization Using Designed Experiments, 3rd Edition Description: Identifying

More information

7.3 Ridge Analysis of the Response Surface

7.3 Ridge Analysis of the Response Surface 7.3 Ridge Analysis of the Response Surface When analyzing a fitted response surface, the researcher may find that the stationary point is outside of the experimental design region, but the researcher wants

More information

Addition of Center Points to a 2 k Designs Section 6-6 page 271

Addition of Center Points to a 2 k Designs Section 6-6 page 271 to a 2 k Designs Section 6-6 page 271 Based on the idea of replicating some of the runs in a factorial design 2 level designs assume linearity. If interaction terms are added to model some curvature results

More information

Analysis of Variance and Design of Experiments-II

Analysis of Variance and Design of Experiments-II Analysis of Variance and Design of Experiments-II MODULE VIII LECTURE - 36 RESPONSE SURFACE DESIGNS Dr. Shalabh Department of Mathematics & Statistics Indian Institute of Technology Kanpur 2 Design for

More information

J. Response Surface Methodology

J. Response Surface Methodology J. Response Surface Methodology Response Surface Methodology. Chemical Example (Box, Hunter & Hunter) Objective: Find settings of R, Reaction Time and T, Temperature that produced maximum yield subject

More information

Contents. TAMS38 - Lecture 10 Response surface. Lecturer: Jolanta Pielaszkiewicz. Response surface 3. Response surface, cont. 4

Contents. TAMS38 - Lecture 10 Response surface. Lecturer: Jolanta Pielaszkiewicz. Response surface 3. Response surface, cont. 4 Contents TAMS38 - Lecture 10 Response surface Lecturer: Jolanta Pielaszkiewicz Matematisk statistik - Matematiska institutionen Linköpings universitet Look beneath the surface; let not the several quality

More information

Contents. Response Surface Designs. Contents. References.

Contents. Response Surface Designs. Contents. References. Response Surface Designs Designs for continuous variables Frédéric Bertrand 1 1 IRMA, Université de Strasbourg Strasbourg, France ENSAI 3 e Année 2017-2018 Setting Visualizing the Response First-Order

More information

Chemometrics Unit 4 Response Surface Methodology

Chemometrics Unit 4 Response Surface Methodology Chemometrics Unit 4 Response Surface Methodology Chemometrics Unit 4. Response Surface Methodology In Unit 3 the first two phases of experimental design - definition and screening - were discussed. In

More information

8 RESPONSE SURFACE DESIGNS

8 RESPONSE SURFACE DESIGNS 8 RESPONSE SURFACE DESIGNS Desirable Properties of a Response Surface Design 1. It should generate a satisfactory distribution of information throughout the design region. 2. It should ensure that the

More information

MODELS WITHOUT AN INTERCEPT

MODELS WITHOUT AN INTERCEPT Consider the balanced two factor design MODELS WITHOUT AN INTERCEPT Factor A 3 levels, indexed j 0, 1, 2; Factor B 5 levels, indexed l 0, 1, 2, 3, 4; n jl 4 replicate observations for each factor level

More information

Stat 5031 Quadratic Response Surface Methods (QRSM) Sanford Weisberg November 30, 2015

Stat 5031 Quadratic Response Surface Methods (QRSM) Sanford Weisberg November 30, 2015 Stat 5031 Quadratic Response Surface Methods (QRSM) Sanford Weisberg November 30, 2015 One Variable x = spacing of plants (either 4, 8 12 or 16 inches), and y = plant yield (bushels per acre). Each condition

More information

14.0 RESPONSE SURFACE METHODOLOGY (RSM)

14.0 RESPONSE SURFACE METHODOLOGY (RSM) 4. RESPONSE SURFACE METHODOLOGY (RSM) (Updated Spring ) So far, we ve focused on experiments that: Identify a few important variables from a large set of candidate variables, i.e., a screening experiment.

More information

Response Surface Methodology III

Response Surface Methodology III LECTURE 7 Response Surface Methodology III 1. Canonical Form of Response Surface Models To examine the estimated regression model we have several choices. First, we could plot response contours. Remember

More information

7 The Analysis of Response Surfaces

7 The Analysis of Response Surfaces 7 The Analysis of Response Surfaces Goal: the researcher is seeking the experimental conditions which are most desirable, that is, determine optimum design variable levels. Once the researcher has determined

More information

Appendix IV Experimental Design

Appendix IV Experimental Design Experimental Design The aim of pharmaceutical formulation and development is to develop an acceptable pharmaceutical formulation in the shortest possible time, using minimum number of working hours and

More information

RESPONSE SURFACE MODELLING, RSM

RESPONSE SURFACE MODELLING, RSM CHEM-E3205 BIOPROCESS OPTIMIZATION AND SIMULATION LECTURE 3 RESPONSE SURFACE MODELLING, RSM Tool for process optimization HISTORY Statistical experimental design pioneering work R.A. Fisher in 1925: Statistical

More information

Process/product optimization using design of experiments and response surface methodology

Process/product optimization using design of experiments and response surface methodology Process/product optimization using design of experiments and response surface methodology Mikko Mäkelä Sveriges landbruksuniversitet Swedish University of Agricultural Sciences Department of Forest Biomaterials

More information

Design of Engineering Experiments Part 5 The 2 k Factorial Design

Design of Engineering Experiments Part 5 The 2 k Factorial Design Design of Engineering Experiments Part 5 The 2 k Factorial Design Text reference, Special case of the general factorial design; k factors, all at two levels The two levels are usually called low and high

More information

Biostatistics 380 Multiple Regression 1. Multiple Regression

Biostatistics 380 Multiple Regression 1. Multiple Regression Biostatistics 0 Multiple Regression ORIGIN 0 Multiple Regression Multiple Regression is an extension of the technique of linear regression to describe the relationship between a single dependent (response)

More information

Design and Analysis of Experiments

Design and Analysis of Experiments Design and Analysis of Experiments Part VII: Fractional Factorial Designs Prof. Dr. Anselmo E de Oliveira anselmo.quimica.ufg.br anselmo.disciplinas@gmail.com 2 k : increasing k the number of runs required

More information

The 2 k Factorial Design. Dr. Mohammad Abuhaiba 1

The 2 k Factorial Design. Dr. Mohammad Abuhaiba 1 The 2 k Factorial Design Dr. Mohammad Abuhaiba 1 HoweWork Assignment Due Tuesday 1/6/2010 6.1, 6.2, 6.17, 6.18, 6.19 Dr. Mohammad Abuhaiba 2 Design of Engineering Experiments The 2 k Factorial Design Special

More information

Analysis of variance. Gilles Guillot. September 30, Gilles Guillot September 30, / 29

Analysis of variance. Gilles Guillot. September 30, Gilles Guillot September 30, / 29 Analysis of variance Gilles Guillot gigu@dtu.dk September 30, 2013 Gilles Guillot (gigu@dtu.dk) September 30, 2013 1 / 29 1 Introductory example 2 One-way ANOVA 3 Two-way ANOVA 4 Two-way ANOVA with interactions

More information

Solution to Final Exam

Solution to Final Exam Stat 660 Solution to Final Exam. (5 points) A large pharmaceutical company is interested in testing the uniformity (a continuous measurement that can be taken by a measurement instrument) of their film-coated

More information

Performing response surface analysis using the SAS RSREG procedure

Performing response surface analysis using the SAS RSREG procedure Paper DV02-2012 Performing response surface analysis using the SAS RSREG procedure Zhiwu Li, National Database Nursing Quality Indicator and the Department of Biostatistics, University of Kansas Medical

More information

SMA 6304 / MIT / MIT Manufacturing Systems. Lecture 10: Data and Regression Analysis. Lecturer: Prof. Duane S. Boning

SMA 6304 / MIT / MIT Manufacturing Systems. Lecture 10: Data and Regression Analysis. Lecturer: Prof. Duane S. Boning SMA 6304 / MIT 2.853 / MIT 2.854 Manufacturing Systems Lecture 10: Data and Regression Analysis Lecturer: Prof. Duane S. Boning 1 Agenda 1. Comparison of Treatments (One Variable) Analysis of Variance

More information

Design of Engineering Experiments Chapter 5 Introduction to Factorials

Design of Engineering Experiments Chapter 5 Introduction to Factorials Design of Engineering Experiments Chapter 5 Introduction to Factorials Text reference, Chapter 5 page 170 General principles of factorial experiments The two-factor factorial with fixed effects The ANOVA

More information

Multiple Regression: Example

Multiple Regression: Example Multiple Regression: Example Cobb-Douglas Production Function The Cobb-Douglas production function for observed economic data i = 1,..., n may be expressed as where O i is output l i is labour input c

More information

Regression Analysis. Simple Regression Multivariate Regression Stepwise Regression Replication and Prediction Error EE290H F05

Regression Analysis. Simple Regression Multivariate Regression Stepwise Regression Replication and Prediction Error EE290H F05 Regression Analysis Simple Regression Multivariate Regression Stepwise Regression Replication and Prediction Error 1 Regression Analysis In general, we "fit" a model by minimizing a metric that represents

More information

2 Introduction to Response Surface Methodology

2 Introduction to Response Surface Methodology 2 Introduction to Response Surface Methodology 2.1 Goals of Response Surface Methods The experimenter is often interested in 1. Finding a suitable approximating function for the purpose of predicting a

More information

CHAPTER 6 A STUDY ON DISC BRAKE SQUEAL USING DESIGN OF EXPERIMENTS

CHAPTER 6 A STUDY ON DISC BRAKE SQUEAL USING DESIGN OF EXPERIMENTS 134 CHAPTER 6 A STUDY ON DISC BRAKE SQUEAL USING DESIGN OF EXPERIMENTS 6.1 INTRODUCTION In spite of the large amount of research work that has been carried out to solve the squeal problem during the last

More information

Experimental Design and Optimization

Experimental Design and Optimization . Experimental Design Stages a) Identifying the factors which may affect the results of an experiment; b) Designing the experiment so that the effects of uncontrolled factors are minimized; c) Using statistical

More information

FIVE-FACTOR CENTRAL COMPOSITE DESIGNS ROBUST TO A PAIR OF MISSING OBSERVATIONS. Munir Akhtar Vice-Chanselor, Islamia University Bahawalpur, Pakistan.

FIVE-FACTOR CENTRAL COMPOSITE DESIGNS ROBUST TO A PAIR OF MISSING OBSERVATIONS. Munir Akhtar Vice-Chanselor, Islamia University Bahawalpur, Pakistan. Journal of Research (Science), Bahauddin Zakariya University, Multan, Pakistan. Vol.2, No.2, December 2, pp. 5-5 ISSN 2-2 FIVE-FACTOR CENTRAL COMPOSITE DESIGNS ROBUST TO A PAIR OF MISSING OBSERVATIONS

More information

SIX SIGMA IMPROVE

SIX SIGMA IMPROVE SIX SIGMA IMPROVE 1. For a simplex-lattice design the following formula or equation determines: A. The canonical formula for linear coefficients B. The portion of each polynomial in the experimental model

More information

Stat 5102 Final Exam May 14, 2015

Stat 5102 Final Exam May 14, 2015 Stat 5102 Final Exam May 14, 2015 Name Student ID The exam is closed book and closed notes. You may use three 8 1 11 2 sheets of paper with formulas, etc. You may also use the handouts on brand name distributions

More information

Lecture 10. Factorial experiments (2-way ANOVA etc)

Lecture 10. Factorial experiments (2-way ANOVA etc) Lecture 10. Factorial experiments (2-way ANOVA etc) Jesper Rydén Matematiska institutionen, Uppsala universitet jesper@math.uu.se Regression and Analysis of Variance autumn 2014 A factorial experiment

More information

Response Surface Methods

Response Surface Methods Response Surface Methods 3.12.2014 Goals of Today s Lecture See how a sequence of experiments can be performed to optimize a response variable. Understand the difference between first-order and second-order

More information

MATH 644: Regression Analysis Methods

MATH 644: Regression Analysis Methods MATH 644: Regression Analysis Methods FINAL EXAM Fall, 2012 INSTRUCTIONS TO STUDENTS: 1. This test contains SIX questions. It comprises ELEVEN printed pages. 2. Answer ALL questions for a total of 100

More information

Workshop 7.4a: Single factor ANOVA

Workshop 7.4a: Single factor ANOVA -1- Workshop 7.4a: Single factor ANOVA Murray Logan November 23, 2016 Table of contents 1 Revision 1 2 Anova Parameterization 2 3 Partitioning of variance (ANOVA) 10 4 Worked Examples 13 1. Revision 1.1.

More information

MATH602: APPLIED STATISTICS

MATH602: APPLIED STATISTICS MATH602: APPLIED STATISTICS Dr. Srinivas R. Chakravarthy Department of Science and Mathematics KETTERING UNIVERSITY Flint, MI 48504-4898 Lecture 10 1 FRACTIONAL FACTORIAL DESIGNS Complete factorial designs

More information

CHAPTER 6 MACHINABILITY MODELS WITH THREE INDEPENDENT VARIABLES

CHAPTER 6 MACHINABILITY MODELS WITH THREE INDEPENDENT VARIABLES CHAPTER 6 MACHINABILITY MODELS WITH THREE INDEPENDENT VARIABLES 6.1 Introduction It has been found from the literature review that not much research has taken place in the area of machining of carbon silicon

More information

Examples of fitting various piecewise-continuous functions to data, using basis functions in doing the regressions.

Examples of fitting various piecewise-continuous functions to data, using basis functions in doing the regressions. Examples of fitting various piecewise-continuous functions to data, using basis functions in doing the regressions. David. Boore These examples in this document used R to do the regression. See also Notes_on_piecewise_continuous_regression.doc

More information

OPTIMIZATION OF FIRST ORDER MODELS

OPTIMIZATION OF FIRST ORDER MODELS Chapter 2 OPTIMIZATION OF FIRST ORDER MODELS One should not multiply explanations and causes unless it is strictly necessary William of Bakersville in Umberto Eco s In the Name of the Rose 1 In Response

More information

Response Surface Methodology IV

Response Surface Methodology IV LECTURE 8 Response Surface Methodology IV 1. Bias and Variance If y x is the response of the system at the point x, or in short hand, y x = f (x), then we can write η x = E(y x ). This is the true, and

More information

cor(dataset$measurement1, dataset$measurement2, method= pearson ) cor.test(datavector1, datavector2, method= pearson )

cor(dataset$measurement1, dataset$measurement2, method= pearson ) cor.test(datavector1, datavector2, method= pearson ) Tutorial 7: Correlation and Regression Correlation Used to test whether two variables are linearly associated. A correlation coefficient (r) indicates the strength and direction of the association. A correlation

More information

13 Simple Linear Regression

13 Simple Linear Regression B.Sc./Cert./M.Sc. Qualif. - Statistics: Theory and Practice 3 Simple Linear Regression 3. An industrial example A study was undertaken to determine the effect of stirring rate on the amount of impurity

More information

36-707: Regression Analysis Homework Solutions. Homework 3

36-707: Regression Analysis Homework Solutions. Homework 3 36-707: Regression Analysis Homework Solutions Homework 3 Fall 2012 Problem 1 Y i = βx i + ɛ i, i {1, 2,..., n}. (a) Find the LS estimator of β: RSS = Σ n i=1(y i βx i ) 2 RSS β = Σ n i=1( 2X i )(Y i βx

More information

y i s 2 X 1 n i 1 1. Show that the least squares estimators can be written as n xx i x i 1 ns 2 X i 1 n ` px xqx i x i 1 pδ ij 1 n px i xq x j x

y i s 2 X 1 n i 1 1. Show that the least squares estimators can be written as n xx i x i 1 ns 2 X i 1 n ` px xqx i x i 1 pδ ij 1 n px i xq x j x Question 1 Suppose that we have data Let x 1 n x i px 1, y 1 q,..., px n, y n q. ȳ 1 n y i s 2 X 1 n px i xq 2 Throughout this question, we assume that the simple linear model is correct. We also assume

More information

FACTORIAL DESIGNS and NESTED DESIGNS

FACTORIAL DESIGNS and NESTED DESIGNS Experimental Design and Statistical Methods Workshop FACTORIAL DESIGNS and NESTED DESIGNS Jesús Piedrafita Arilla jesus.piedrafita@uab.cat Departament de Ciència Animal i dels Aliments Items Factorial

More information

Nature vs. nurture? Lecture 18 - Regression: Inference, Outliers, and Intervals. Regression Output. Conditions for inference.

Nature vs. nurture? Lecture 18 - Regression: Inference, Outliers, and Intervals. Regression Output. Conditions for inference. Understanding regression output from software Nature vs. nurture? Lecture 18 - Regression: Inference, Outliers, and Intervals In 1966 Cyril Burt published a paper called The genetic determination of differences

More information

Example of treatment contrasts used by R in estimating ANOVA coefficients

Example of treatment contrasts used by R in estimating ANOVA coefficients Example of treatment contrasts used by R in estimating ANOVA coefficients The first example shows a simple numerical design matrix in R (no factors) for the groups 1, a, b, ab. resp

More information

Applied Regression Analysis

Applied Regression Analysis Applied Regression Analysis Chapter 3 Multiple Linear Regression Hongcheng Li April, 6, 2013 Recall simple linear regression 1 Recall simple linear regression 2 Parameter Estimation 3 Interpretations of

More information

Regression Analysis Chapter 2 Simple Linear Regression

Regression Analysis Chapter 2 Simple Linear Regression Regression Analysis Chapter 2 Simple Linear Regression Dr. Bisher Mamoun Iqelan biqelan@iugaza.edu.ps Department of Mathematics The Islamic University of Gaza 2010-2011, Semester 2 Dr. Bisher M. Iqelan

More information

STAT 571A Advanced Statistical Regression Analysis. Chapter 8 NOTES Quantitative and Qualitative Predictors for MLR

STAT 571A Advanced Statistical Regression Analysis. Chapter 8 NOTES Quantitative and Qualitative Predictors for MLR STAT 571A Advanced Statistical Regression Analysis Chapter 8 NOTES Quantitative and Qualitative Predictors for MLR 2015 University of Arizona Statistics GIDP. All rights reserved, except where previous

More information

Tests of Linear Restrictions

Tests of Linear Restrictions Tests of Linear Restrictions 1. Linear Restricted in Regression Models In this tutorial, we consider tests on general linear restrictions on regression coefficients. In other tutorials, we examine some

More information

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008

2.830J / 6.780J / ESD.63J Control of Manufacturing Processes (SMA 6303) Spring 2008 MIT OpenCourseWare http://ocw.mit.edu 2.830J / 6.780J / ESD.63J Control of Processes (SMA 6303) Spring 2008 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

Design of Experiments SUTD - 21/4/2015 1

Design of Experiments SUTD - 21/4/2015 1 Design of Experiments SUTD - 21/4/2015 1 Outline 1. Introduction 2. 2 k Factorial Design Exercise 3. Choice of Sample Size Exercise 4. 2 k p Fractional Factorial Design Exercise 5. Follow-up experimentation

More information

Exercise I.1 I.2 I.3 I.4 II.1 II.2 III.1 III.2 III.3 IV.1 Question (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Answer

Exercise I.1 I.2 I.3 I.4 II.1 II.2 III.1 III.2 III.3 IV.1 Question (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Answer Solutions to Exam in 02402 December 2012 Exercise I.1 I.2 I.3 I.4 II.1 II.2 III.1 III.2 III.3 IV.1 Question (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Answer 3 1 5 2 5 2 3 5 1 3 Exercise IV.2 IV.3 IV.4 V.1

More information

Comparing Nested Models

Comparing Nested Models Comparing Nested Models ST 370 Two regression models are called nested if one contains all the predictors of the other, and some additional predictors. For example, the first-order model in two independent

More information

Analysis of Variance. Source DF Squares Square F Value Pr > F. Model <.0001 Error Corrected Total

Analysis of Variance. Source DF Squares Square F Value Pr > F. Model <.0001 Error Corrected Total Math 221: Linear Regression and Prediction Intervals S. K. Hyde Chapter 23 (Moore, 5th Ed.) (Neter, Kutner, Nachsheim, and Wasserman) The Toluca Company manufactures refrigeration equipment as well as

More information

Collinearity: Impact and Possible Remedies

Collinearity: Impact and Possible Remedies Collinearity: Impact and Possible Remedies Deepayan Sarkar What is collinearity? Exact dependence between columns of X make coefficients non-estimable Collinearity refers to the situation where some columns

More information

Stat 5303 (Oehlert): Balanced Incomplete Block Designs 1

Stat 5303 (Oehlert): Balanced Incomplete Block Designs 1 Stat 5303 (Oehlert): Balanced Incomplete Block Designs 1 > library(stat5303libs);library(cfcdae);library(lme4) > weardata

More information

Design Moments. Many properties of experimental designs are quantified by design moments. Given a model matrix 1 x 11 x 21 x k1 1 x 12 x 22 x k2 X =

Design Moments. Many properties of experimental designs are quantified by design moments. Given a model matrix 1 x 11 x 21 x k1 1 x 12 x 22 x k2 X = 8.5 Rotatability Recall: Var[ŷ(x)] = σ 2 x (m) () 1 x (m) is the prediction variance and NVar[ŷ(x)]/σ 2 = Nx (m) () 1 x (m) is the scaled prediction variance. A design is rotatable if the prediction variance

More information

Chapter 8 Conclusion

Chapter 8 Conclusion 1 Chapter 8 Conclusion Three questions about test scores (score) and student-teacher ratio (str): a) After controlling for differences in economic characteristics of different districts, does the effect

More information

Diagnostics and Transformations Part 2

Diagnostics and Transformations Part 2 Diagnostics and Transformations Part 2 Bivariate Linear Regression James H. Steiger Department of Psychology and Human Development Vanderbilt University Multilevel Regression Modeling, 2009 Diagnostics

More information

Topic 28: Unequal Replication in Two-Way ANOVA

Topic 28: Unequal Replication in Two-Way ANOVA Topic 28: Unequal Replication in Two-Way ANOVA Outline Two-way ANOVA with unequal numbers of observations in the cells Data and model Regression approach Parameter estimates Previous analyses with constant

More information

Business Statistics. Lecture 10: Course Review

Business Statistics. Lecture 10: Course Review Business Statistics Lecture 10: Course Review 1 Descriptive Statistics for Continuous Data Numerical Summaries Location: mean, median Spread or variability: variance, standard deviation, range, percentiles,

More information

3.4. A computer ANOVA output is shown below. Fill in the blanks. You may give bounds on the P-value.

3.4. A computer ANOVA output is shown below. Fill in the blanks. You may give bounds on the P-value. 3.4. A computer ANOVA output is shown below. Fill in the blanks. You may give bounds on the P-value. One-way ANOVA Source DF SS MS F P Factor 3 36.15??? Error??? Total 19 196.04 Completed table is: One-way

More information

Week 7 Multiple factors. Ch , Some miscellaneous parts

Week 7 Multiple factors. Ch , Some miscellaneous parts Week 7 Multiple factors Ch. 18-19, Some miscellaneous parts Multiple Factors Most experiments will involve multiple factors, some of which will be nuisance variables Dealing with these factors requires

More information

Linear Model Specification in R

Linear Model Specification in R Linear Model Specification in R How to deal with overparameterisation? Paul Janssen 1 Luc Duchateau 2 1 Center for Statistics Hasselt University, Belgium 2 Faculty of Veterinary Medicine Ghent University,

More information

Multiple Predictor Variables: ANOVA

Multiple Predictor Variables: ANOVA Multiple Predictor Variables: ANOVA 1/32 Linear Models with Many Predictors Multiple regression has many predictors BUT - so did 1-way ANOVA if treatments had 2 levels What if there are multiple treatment

More information

The linear model. Our models so far are linear. Change in Y due to change in X? See plots for: o age vs. ahe o carats vs.

The linear model. Our models so far are linear. Change in Y due to change in X? See plots for: o age vs. ahe o carats vs. 8 Nonlinear effects Lots of effects in economics are nonlinear Examples Deal with these in two (sort of three) ways: o Polynomials o Logarithms o Interaction terms (sort of) 1 The linear model Our models

More information

Chapter 6 The 2 k Factorial Design Solutions

Chapter 6 The 2 k Factorial Design Solutions Solutions from Montgomery, D. C. (004) Design and Analysis of Experiments, Wiley, NY Chapter 6 The k Factorial Design Solutions 6.. A router is used to cut locating notches on a printed circuit board.

More information

Increasing precision by partitioning the error sum of squares: Blocking: SSE (CRD) à SSB + SSE (RCBD) Contrasts: SST à (t 1) orthogonal contrasts

Increasing precision by partitioning the error sum of squares: Blocking: SSE (CRD) à SSB + SSE (RCBD) Contrasts: SST à (t 1) orthogonal contrasts Lecture 13 Topic 9: Factorial treatment structures (Part II) Increasing precision by partitioning the error sum of squares: s MST F = = MSE 2 among = s 2 within SST df trt SSE df e Blocking: SSE (CRD)

More information

Inference for Regression

Inference for Regression Inference for Regression Section 9.4 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 13b - 3339 Cathy Poliak, Ph.D. cathy@math.uh.edu

More information

Homework 04. , not a , not a 27 3 III III

Homework 04. , not a , not a 27 3 III III Response Surface Methodology, Stat 579 Fall 2014 Homework 04 Name: Answer Key Prof. Erik B. Erhardt Part I. (130 points) I recommend reading through all the parts of the HW (with my adjustments) before

More information

RESPONSE SURFACE METHODOLOGY

RESPONSE SURFACE METHODOLOGY RESPONSE SURFACE METHODOLOGY WILEY SERIES IN PROBABILITY AND STATISTICS Established by WALTER A. SHEWHART and SAMUEL S. WILKS Editors: David J. Balding, Noel A. C. Cressie, Garrett M. Fitzmaurice, Iain

More information

Unbalanced Data in Factorials Types I, II, III SS Part 1

Unbalanced Data in Factorials Types I, II, III SS Part 1 Unbalanced Data in Factorials Types I, II, III SS Part 1 Chapter 10 in Oehlert STAT:5201 Week 9 - Lecture 2 1 / 14 When we perform an ANOVA, we try to quantify the amount of variability in the data accounted

More information

Simple Linear Regression

Simple Linear Regression Simple Linear Regression MATH 282A Introduction to Computational Statistics University of California, San Diego Instructor: Ery Arias-Castro http://math.ucsd.edu/ eariasca/math282a.html MATH 282A University

More information

A Study on Minimal-point Composite Designs

A Study on Minimal-point Composite Designs A Study on Minimal-point Composite Designs by Yin-Jie Huang Advisor Ray-Bing Chen Institute of Statistics, National University of Kaohsiung Kaohsiung, Taiwan 8 R.O.C. July 007 Contents Introduction Construction

More information

STOR 455 STATISTICAL METHODS I

STOR 455 STATISTICAL METHODS I STOR 455 STATISTICAL METHODS I Jan Hannig Mul9variate Regression Y=X β + ε X is a regression matrix, β is a vector of parameters and ε are independent N(0,σ) Es9mated parameters b=(x X) - 1 X Y Predicted

More information

Homework 9 Sample Solution

Homework 9 Sample Solution Homework 9 Sample Solution # 1 (Ex 9.12, Ex 9.23) Ex 9.12 (a) Let p vitamin denote the probability of having cold when a person had taken vitamin C, and p placebo denote the probability of having cold

More information

Consider fitting a model using ordinary least squares (OLS) regression:

Consider fitting a model using ordinary least squares (OLS) regression: Example 1: Mating Success of African Elephants In this study, 41 male African elephants were followed over a period of 8 years. The age of the elephant at the beginning of the study and the number of successful

More information

Ch 2: Simple Linear Regression

Ch 2: Simple Linear Regression Ch 2: Simple Linear Regression 1. Simple Linear Regression Model A simple regression model with a single regressor x is y = β 0 + β 1 x + ɛ, where we assume that the error ɛ is independent random component

More information

23. Fractional factorials - introduction

23. Fractional factorials - introduction 173 3. Fractional factorials - introduction Consider a 5 factorial. Even without replicates, there are 5 = 3 obs ns required to estimate the effects - 5 main effects, 10 two factor interactions, 10 three

More information

Institutionen för matematik och matematisk statistik Umeå universitet November 7, Inlämningsuppgift 3. Mariam Shirdel

Institutionen för matematik och matematisk statistik Umeå universitet November 7, Inlämningsuppgift 3. Mariam Shirdel Institutionen för matematik och matematisk statistik Umeå universitet November 7, 2011 Inlämningsuppgift 3 Mariam Shirdel (mash0007@student.umu.se) Kvalitetsteknik och försöksplanering, 7.5 hp 1 Uppgift

More information

Statistical Techniques II EXST7015 Simple Linear Regression

Statistical Techniques II EXST7015 Simple Linear Regression Statistical Techniques II EXST7015 Simple Linear Regression 03a_SLR 1 Y - the dependent variable 35 30 25 The objective Given points plotted on two coordinates, Y and X, find the best line to fit the data.

More information

Stat 401B Final Exam Fall 2015

Stat 401B Final Exam Fall 2015 Stat 401B Final Exam Fall 015 I have neither given nor received unauthorized assistance on this exam. Name Signed Date Name Printed ATTENTION! Incorrect numerical answers unaccompanied by supporting reasoning

More information

Pumpkin Example: Flaws in Diagnostics: Correcting Models

Pumpkin Example: Flaws in Diagnostics: Correcting Models Math 3080. Treibergs Pumpkin Example: Flaws in Diagnostics: Correcting Models Name: Example March, 204 From Levine Ramsey & Smidt, Applied Statistics for Engineers and Scientists, Prentice Hall, Upper

More information

Fractional Factorial Designs

Fractional Factorial Designs Fractional Factorial Designs ST 516 Each replicate of a 2 k design requires 2 k runs. E.g. 64 runs for k = 6, or 1024 runs for k = 10. When this is infeasible, we use a fraction of the runs. As a result,

More information

APPENDIX : PARTIAL FRACTIONS

APPENDIX : PARTIAL FRACTIONS APPENDIX : PARTIAL FRACTIONS Appendix : Partial Fractions Given the expression x 2 and asked to find its integral, x + you can use work from Section. to give x 2 =ln( x 2) ln( x + )+c x + = ln k x 2 x+

More information