The One-Quarter Fraction

Size: px
Start display at page:

Download "The One-Quarter Fraction"

Transcription

1 The One-Quarter Fraction ST 516 Need two generating relations. E.g. a design, with generating relations I = ABCE and I = BCDF. Product of these is ADEF. Complete defining relation is I = ABCE = BCDF = ADEF. 1 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

2 This is a resolution-iv design. Why? There is no resolution-v design. Why not? To set up runs, either: create the full 2 6 design with ABCE and BCDF confounded with blocks, and choose the block with both positive; or set up a basic design in 4 factors, then add the other 2. For example, basic design is 2 4 in A, B, C, D, and defining relations show that E = ABC and F = BCD. 2 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

3 Basic Design Run A B C D E = ABC F = BCD / Two-level + Fractional + + Factorial Designs + The One-Quarter + Fraction

4 Projections This IV design projects into: a single complete replicate of a 2 4 design in A, B, C, and D, and any other of the 12 subsets of 4 factors that is not a word in the defining relation; a replicated one-half fraction of a 2 4 design in A, B, C, and E, and in the other two subsets of 4 factors that are a word in the defining relation; two replicates of a 2 3 design in any three factors; four replicates of a 2 2 design in any two factors. 4 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

5 Example with this design Response is shrinkage in injection molding, and factors are: A, mold temperature; B, screw speed; C, holding time; D, cycle time; E, gate size; F, hold pressure. 5 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

6 Data file injection.txt: A B C D E F Shrinkage / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

7 R commands injection <- read.table("data/injection.txt", header = TRUE) for (j in 1:(ncol(injection) - 1)) injection[, j] <- coded(injection[, j]) summary(lm(shrinkage ~ A * B * C * D * E * F, injection)) Output Call: lm(formula = Shrinkage ~ A * B * C * D * E * F, data = injection) Residuals: ALL 16 residuals are 0: no residual degrees of freedom! Coefficients: (48 not defined because of singularities) Estimate Std. Error t value Pr(> t ) (Intercept) NA NA NA A NA NA NA B NA NA NA C NA NA NA D NA NA NA 7 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

8 Output, continued E NA NA NA F NA NA NA A:B NA NA NA A:C NA NA NA B:C NA NA NA A:D NA NA NA B:D NA NA NA C:D NA NA NA D:E NA NA NA A:B:D NA NA NA A:C:D NA NA NA Residual standard error: NaN on 0 degrees of freedom Multiple R-Squared: 1, Adjusted R-squared: NaN F-statistic: NaN on 15 and 0 DF, p-value: NA Note that all 2-factor interactions are aliased with one or two other 2-factor interactions, and all but two 3-factor interactions are aliased with main effects or other 3-factor interactions. 8 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

9 Main effect alias chains A = BCE = DEF = ABCDF B = ACE = CDF = ABDEF C = ABE = BDF = ACDEF D = BCF = AEF = ABCDE E = ABC = ADF = BCDEF F = BCD = ADE = ABCEF 9 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

10 Other alias chains AB = CE = ACDF = BDEF AC = BE = ABDF = CDEF AD = EF = BCDE = ABCF AE = BC = DF = ABCDEF AF = DE = ABCD = BCEF BD = CF = ACDE = ABEF BF = CD = ACEF = ABDE ABD = CDE = ACF = BEF ACD = BDE = ABF = CEF 10 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

11 Effects A:B A B Half Normal plot 11 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

12 The half-normal plot suggests that A and B are the important effects. Interaction plot with(injection, interaction.plot(a, B, Shrinkage)) Residual plots suggest that C is a dispersion effect. Analyze absolute residuals r <- residuals(aov(shrinkage ~ A * B, injection)) summary(aov(abs(r) ~ A * B * C * D * E * F, injection)) 12 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

13 Output Df Sum Sq Mean Sq A B C D E F A:B A:C B:C A:D B:D C:D D:E A:B:D A:C:D / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

14 Montgomery suggests calculating, for each effect, F = log sum of squares of residuals at high level sum of squares of residuals at low level In R, not easy to calculate F, but we can look at the half-normal plot for abs(r) or r 2 : qqnorm(aov(abs(r) ~ A * B * C * D * E * F, injection), label = TRUE) qqnorm(aov(r^2 ~ A * B * C * D * E * F, injection), label = TRUE) The effects shown in the second of these, for r^2, are essentially sum of squares of residuals at high level sum of squares of residuals at low level 14 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

15 In the spirit of R s Scale-Location residual plot, we could use residual : qqnorm(aov(sqrt(abs(r)) ~ A * B * C * D * E * F, injection)) All three half-normal plots (r 2, r, and r ) give the same indication as F : C appears to be a dispersion factor. 15 / 15 Two-level Fractional Factorial Designs The One-Quarter Fraction

Fractional Replications

Fractional Replications Chapter 11 Fractional Replications Consider the set up of complete factorial experiment, say k. If there are four factors, then the total number of plots needed to conduct the experiment is 4 = 1. When

More information

Construction of Mixed-Level Orthogonal Arrays for Testing in Digital Marketing

Construction of Mixed-Level Orthogonal Arrays for Testing in Digital Marketing Construction of Mixed-Level Orthogonal Arrays for Testing in Digital Marketing Vladimir Brayman Webtrends October 19, 2012 Advantages of Conducting Designed Experiments in Digital Marketing Availability

More information

FRACTIONAL REPLICATION

FRACTIONAL REPLICATION FRACTIONAL REPLICATION M.L.Agarwal Department of Statistics, University of Delhi, Delhi -. In a factorial experiment, when the number of treatment combinations is very large, it will be beyond the resources

More information

Lecture 12: 2 k p Fractional Factorial Design

Lecture 12: 2 k p Fractional Factorial Design Lecture 12: 2 k p Fractional Factorial Design Montgomery: Chapter 8 Page 1 Fundamental Principles Regarding Factorial Effects Suppose there are k factors (A,B,...,J,K) in an experiment. All possible factorial

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

On the Compounds of Hat Matrix for Six-Factor Central Composite Design with Fractional Replicates of the Factorial Portion

On the Compounds of Hat Matrix for Six-Factor Central Composite Design with Fractional Replicates of the Factorial Portion American Journal of Computational and Applied Mathematics 017, 7(4): 95-114 DOI: 10.593/j.ajcam.0170704.0 On the Compounds of Hat Matrix for Six-Factor Central Composite Design with Fractional Replicates

More information

FRACTIONAL FACTORIAL

FRACTIONAL FACTORIAL FRACTIONAL FACTORIAL NURNABI MEHERUL ALAM M.Sc. (Agricultural Statistics), Roll No. 443 I.A.S.R.I, Library Avenue, New Delhi- Chairperson: Dr. P.K. Batra Abstract: Fractional replication can be defined

More information

Reference: Chapter 8 of Montgomery (8e)

Reference: Chapter 8 of Montgomery (8e) Reference: Chapter 8 of Montgomery (8e) 69 Maghsoodloo Fractional Factorials (or Replicates) For Base 2 Designs As the number of factors in a 2 k factorial experiment increases, the number of runs (or

More information

Lecture 14: 2 k p Fractional Factorial Design

Lecture 14: 2 k p Fractional Factorial Design Lecture 14: 2 k p Fractional Factorial Design Montgomery: Chapter 8 1 Lecture 14 Page 1 Fundamental Principles Regarding Factorial Effects Suppose there arek factors (A,B,...,J,K) in an experiment. All

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

A Survey of Rational Diophantine Sextuples of Low Height

A Survey of Rational Diophantine Sextuples of Low Height A Survey of Rational Diophantine Sextuples of Low Height Philip E Gibbs philegibbs@gmail.com A rational Diophantine m-tuple is a set of m distinct positive rational numbers such that the product of any

More information

Probability Distribution

Probability Distribution Probability Distribution 1. In scenario 2, the particle size distribution from the mill is: Counts 81

More information

TWO-LEVEL FACTORIAL EXPERIMENTS: REGULAR FRACTIONAL FACTORIALS

TWO-LEVEL FACTORIAL EXPERIMENTS: REGULAR FRACTIONAL FACTORIALS STAT 512 2-Level Factorial Experiments: Regular Fractions 1 TWO-LEVEL FACTORIAL EXPERIMENTS: REGULAR FRACTIONAL FACTORIALS Bottom Line: A regular fractional factorial design consists of the treatments

More information

Minimum Aberration and Related Criteria for Fractional Factorial Designs

Minimum Aberration and Related Criteria for Fractional Factorial Designs Minimum Aberration and Related Criteria for Fractional Factorial Designs Hegang Chen Division of Biostatistics and Bioinformatics 660 West Redwood Street University of Maryland School of Medicine Baltimore,

More information

Fractional Replication of The 2 k Design

Fractional Replication of The 2 k Design Fractional Replication of The 2 k Design Experiments with many factors involve a large number of possible treatments, even when all factors are used at only two levels. Often the available resources are

More information

A UNIFIED APPROACH TO FACTORIAL DESIGNS WITH RANDOMIZATION RESTRICTIONS

A UNIFIED APPROACH TO FACTORIAL DESIGNS WITH RANDOMIZATION RESTRICTIONS Calcutta Statistical Association Bulletin Vol. 65 (Special 8th Triennial Symposium Proceedings Volume) 2013, Nos. 257-260 A UNIFIED APPROACH TO FACTORIAL DESIGNS WITH RANDOMIZATION RESTRICTIONS PRITAM

More information

Design of Experiments (DOE) A Valuable Multi-Purpose Methodology

Design of Experiments (DOE) A Valuable Multi-Purpose Methodology Applied Mathematics, 2014, 5, 2120-2129 Published Online July 2014 in SciRes. http://www.scirp.org/journal/am http://dx.doi.org/10.4236/am.2014.514206 Design of Experiments (DOE) A Valuable Multi-Purpose

More information

ST3232: Design and Analysis of Experiments

ST3232: Design and Analysis of Experiments Department of Statistics & Applied Probability 2:00-4:00 pm, Monday, April 8, 2013 Lecture 21: Fractional 2 p factorial designs The general principles A full 2 p factorial experiment might not be efficient

More information

Solutions to Exercises

Solutions to Exercises 1 c Atkinson et al 2007, Optimum Experimental Designs, with SAS Solutions to Exercises 1. and 2. Certainly, the solutions to these questions will be different for every reader. Examples of the techniques

More information

STAT451/551 Homework#11 Due: April 22, 2014

STAT451/551 Homework#11 Due: April 22, 2014 STAT451/551 Homework#11 Due: April 22, 2014 1. Read Chapter 8.3 8.9. 2. 8.4. SAS code is provided. 3. 8.18. 4. 8.24. 5. 8.45. 376 Chapter 8 Two-Level Fractional Factorial Designs more detail. Sequential

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

Chapter 11: Factorial Designs

Chapter 11: Factorial Designs Chapter : Factorial Designs. Two factor factorial designs ( levels factors ) This situation is similar to the randomized block design from the previous chapter. However, in addition to the effects within

More information

Homework Assignments Sheet. 4) Symbol * beside a question means that a calculator may be used for that question. Chapter 1 Number 9 days

Homework Assignments Sheet. 4) Symbol * beside a question means that a calculator may be used for that question. Chapter 1 Number 9 days Riverside Secondary School Math 10: Foundations and Precalculus Homework Assignments Sheet Note: 1) WS stands for worksheet that will be handed out in class 2) Page numbers refer to the pages in the Workbook

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

by Christopher Bingham

by Christopher Bingham a D D E!"! #%$&')( $* '$&$,+.-&$0/!12"!"!2 4657 85&$9 ;:=

More information

Session 3 Fractional Factorial Designs 4

Session 3 Fractional Factorial Designs 4 Session 3 Fractional Factorial Designs 3 a Modification of a Bearing Example 3. Fractional Factorial Designs Two-level fractional factorial designs Confounding Blocking Two-Level Eight Run Orthogonal Array

More information

Statistica Sinica Preprint No: SS R1

Statistica Sinica Preprint No: SS R1 Statistica Sinica Preprint No: SS-2015-0161R1 Title Generators for Nonregular $2^{k-p}$ Designs Manuscript ID SS-2015-0161R1 URL http://www.stat.sinica.edu.tw/statistica/ DOI 10.5705/ss.202015.0161 Complete

More information

Statistical Design and Analysis of Experiments Part Two

Statistical Design and Analysis of Experiments Part Two 0.1 Statistical Design and Analysis of Experiments Part Two Lecture notes Fall semester 2007 Henrik Spliid nformatics and Mathematical Modelling Technical University of Denmark List of contents, cont.

More information

CSCI 688 Homework 6. Megan Rose Bryant Department of Mathematics William and Mary

CSCI 688 Homework 6. Megan Rose Bryant Department of Mathematics William and Mary CSCI 688 Homework 6 Megan Rose Bryant Department of Mathematics William and Mary November 12, 2014 7.1 Consider the experiment described in Problem 6.1. Analyze this experiment assuming that each replicate

More information

Optimal Minimax Controller for Plants with Four Oscillatory Modes Using Gröbner Basis

Optimal Minimax Controller for Plants with Four Oscillatory Modes Using Gröbner Basis 52 ECTI TRANSACTIONS ON ELECTRICAL ENG., ELECTRONICS, AND COMMUNICATIONS VOL.7, NO.1 February 2009 Optimal Minimax Controller for Plants with Four Oscillatory Modes Using Gröbner Basis Chalie Charoenlarpnopparut

More information

TWO-LEVEL FACTORIAL EXPERIMENTS: BLOCKING. Upper-case letters are associated with factors, or regressors of factorial effects, e.g.

TWO-LEVEL FACTORIAL EXPERIMENTS: BLOCKING. Upper-case letters are associated with factors, or regressors of factorial effects, e.g. STAT 512 2-Level Factorial Experiments: Blocking 1 TWO-LEVEL FACTORIAL EXPERIMENTS: BLOCKING Some Traditional Notation: Upper-case letters are associated with factors, or regressors of factorial effects,

More information

Design of Engineering Experiments Chapter 8 The 2 k-p Fractional Factorial Design

Design of Engineering Experiments Chapter 8 The 2 k-p Fractional Factorial Design Design of Engineering Experiments Chapter 8 The 2 k-p Fractional Factorial Design Text reference, Chapter 8 Motivation for fractional factorials is obvious; as the number of factors becomes large enough

More information

choosedef2(7,4,all:t) K

choosedef2(7,4,all:t) K i!"! a ` a c a ``` `aaa ``` aaa ``` `!ccc j'$k$ 1 C l ; B-?hm 4noqsr $h t=;2 4nXu ED4+* J D98 B v-,/. = $-r

More information

Experimental design (DOE) - Design

Experimental design (DOE) - Design Experimental design (DOE) - Design Menu: QCExpert Experimental Design Design Full Factorial Fract Factorial This module designs a two-level multifactorial orthogonal plan 2 n k and perform its analysis.

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

1. Introduction. Pharmazie 71 (2016) 683 ORIGINAL ARTICLES

1. Introduction. Pharmazie 71 (2016) 683 ORIGINAL ARTICLES Pharmaceutical Chemistry Department 1, The Center for Drug Research and Development (CDRD) 2, Faculty of Pharmacy, British University in Egypt, El-Sherouk City; Analytical Chemistry Department 3, Faculty

More information

THE ROYAL STATISTICAL SOCIETY 2015 EXAMINATIONS SOLUTIONS GRADUATE DIPLOMA MODULE 4

THE ROYAL STATISTICAL SOCIETY 2015 EXAMINATIONS SOLUTIONS GRADUATE DIPLOMA MODULE 4 THE ROYAL STATISTICAL SOCIETY 2015 EXAMINATIONS SOLUTIONS GRADUATE DIPLOMA MODULE 4 The Society is providing these solutions to assist candidates preparing for the examinations in 2017. The solutions are

More information

Soo King Lim Figure 1: Figure 2: Figure 3: Figure 4: Figure 5: Figure 6: Figure 7: Figure 8: Figure 9: Figure 10: Figure 11: Figure 12: Figure 13:

Soo King Lim Figure 1: Figure 2: Figure 3: Figure 4: Figure 5: Figure 6: Figure 7: Figure 8: Figure 9: Figure 10: Figure 11: Figure 12: Figure 13: 1.0 ial Experiment Design by Block... 3 1.1 ial Experiment in Incomplete Block... 3 1. ial Experiment with Two Blocks... 3 1.3 ial Experiment with Four Blocks... 5 Example 1... 6.0 Fractional ial Experiment....1

More information

Suppose we needed four batches of formaldehyde, and coulddoonly4runsperbatch. Thisisthena2 4 factorial in 2 2 blocks.

Suppose we needed four batches of formaldehyde, and coulddoonly4runsperbatch. Thisisthena2 4 factorial in 2 2 blocks. 58 2. 2 factorials in 2 blocks Suppose we needed four batches of formaldehyde, and coulddoonly4runsperbatch. Thisisthena2 4 factorial in 2 2 blocks. Some more algebra: If two effects are confounded with

More information

A Fast Algorithm for Protein Structural Comparison

A Fast Algorithm for Protein Structural Comparison A Fast Algorithm for Protein Structural Comparison Sheng-Lung Peng and Yu-Wei Tsay Department of Computer Science and Information Engineering, National Dong Hwa University, Hualien 974, Taiwan Abstract

More information

19. Blocking & confounding

19. Blocking & confounding 146 19. Blocking & confounding Importance of blocking to control nuisance factors - day of week, batch of raw material, etc. Complete Blocks. This is the easy case. Suppose we run a 2 2 factorial experiment,

More information

STA 260: Statistics and Probability II

STA 260: Statistics and Probability II Al Nosedal. University of Toronto. Winter 2017 1 Chapter 7. Sampling Distributions and the Central Limit Theorem If you can t explain it simply, you don t understand it well enough Albert Einstein. Theorem

More information

COM111 Introduction to Computer Engineering (Fall ) NOTES 6 -- page 1 of 12

COM111 Introduction to Computer Engineering (Fall ) NOTES 6 -- page 1 of 12 COM111 Introduction to Computer Engineering (Fall 2006-2007) NOTES 6 -- page 1 of 12 Karnaugh Maps In this lecture, we will discuss Karnaugh maps (K-maps) more formally than last time and discuss a more

More information

APPLICATION OF DISCRETE DISTRIBUTIONS IN QUALITY CONTROL A THESIS. Presented to. The Faculty of the Division of Graduate. Studies and Research

APPLICATION OF DISCRETE DISTRIBUTIONS IN QUALITY CONTROL A THESIS. Presented to. The Faculty of the Division of Graduate. Studies and Research APPLICATION OF DISCRETE DISTRIBUTIONS IN QUALITY CONTROL A THESIS Presented to The Faculty of the Division of Graduate Studies and Research By Milton Richard Scheffler In Partial Fulfillment of the Requirements

More information

Power Order with Differing Numbers of Symbols. This paper represents a contribution to the statistical

Power Order with Differing Numbers of Symbols. This paper represents a contribution to the statistical 8V -558'-f-1 Complete Sets of Orthogonal F-Squares of Prime Power Order with Differing Numbers of Symbols by John P. Mandeli Virginia Commonwealth University Walter T. Federer Cornell University This paper

More information

TWO-LEVEL FACTORIAL EXPERIMENTS: IRREGULAR FRACTIONS

TWO-LEVEL FACTORIAL EXPERIMENTS: IRREGULAR FRACTIONS STAT 512 2-Level Factorial Experiments: Irregular Fractions 1 TWO-LEVEL FACTORIAL EXPERIMENTS: IRREGULAR FRACTIONS A major practical weakness of regular fractional factorial designs is that N must be a

More information

Great South Channel Habitat Management Area Analysis. Committee tasking

Great South Channel Habitat Management Area Analysis. Committee tasking Great South Channel Habitat Management Area Analysis NEFMC Habitat Committee Meeting March 19, 2013 Salem, MA Committee tasking MOTION 5, (McKenzie, Alexander) from 12 4 12 meeting Move that the Committee

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

Strategy of Experimentation III

Strategy of Experimentation III LECTURE 3 Strategy of Experimentation III Comments: Homework 1. Design Resolution A design is of resolution R if no p factor effect is confounded with any other effect containing less than R p factors.

More information

Fractional Factorials

Fractional Factorials Fractional Factorials Bruce A Craig Department of Statistics Purdue University STAT 514 Topic 26 1 Fractional Factorials Number of runs required for full factorial grows quickly A 2 7 design requires 128

More information

EXISTENCE AND CONSTRUCTION OF RANDOMIZATION DEFINING CONTRAST SUBSPACES FOR REGULAR FACTORIAL DESIGNS

EXISTENCE AND CONSTRUCTION OF RANDOMIZATION DEFINING CONTRAST SUBSPACES FOR REGULAR FACTORIAL DESIGNS Submitted to the Annals of Statistics EXISTENCE AND CONSTRUCTION OF RANDOMIZATION DEFINING CONTRAST SUBSPACES FOR REGULAR FACTORIAL DESIGNS By Pritam Ranjan, Derek R. Bingham and Angela M. Dean, Acadia

More information

Lec 10: Fractions of 2 k Factorial Design

Lec 10: Fractions of 2 k Factorial Design December 5, 2011 Fraction of 2 k experiments Screening: Some of the factors may influence the results. We want to figure out which. The number of combinations, 2 k, is too large for a complete investigation.

More information

Great South Channel Habitat Management Area Analysis

Great South Channel Habitat Management Area Analysis Great South Channel Habitat Management Area Analysis NEFMC Habitat Committee Meeting March 19, 2013 Salem, MA Note that this is the version presented at the meeting modified from version previously posted

More information

Use of DOE methodology for Investigating Conditions that Influence the Tension in Marine Risers for FPSO Ships

Use of DOE methodology for Investigating Conditions that Influence the Tension in Marine Risers for FPSO Ships 1 st International Structural Specialty Conference 1ère Conférence internationale sur le spécialisée sur le génie des structures Calgary, Alberta, Canada May 23-26, 2006 / 23-26 Mai 2006 Use of DOE methodology

More information

A Comparison of Factor Based Methods for Analysing Some Non-regular Designs

A Comparison of Factor Based Methods for Analysing Some Non-regular Designs A Comparison of Factor Based Methods for Analysing Some Non-regular Designs Ebenezer Afrifa-Yamoah Master of Science in Mathematics (for international students) Submission date: June 2016 Supervisor: John

More information

Confounding and fractional replication in 2 n factorial systems

Confounding and fractional replication in 2 n factorial systems Chapter 20 Confounding and fractional replication in 2 n factorial systems Confounding is a method of designing a factorial experiment that allows incomplete blocks, i.e., blocks of smaller size than the

More information

Design of experiment ERT k-p fractional factorial. Miss Hanna Ilyani Zulhaimi

Design of experiment ERT k-p fractional factorial. Miss Hanna Ilyani Zulhaimi + Design of experiment ERT 427 2 k-p fractional factorial Miss Hanna Ilyani Zulhaimi + OUTLINE n Limitation of full factorial design n The concept of fractional factorial, 2 k-p n One-half fraction factorial

More information

Design and Analysis of Multi-Factored Experiments

Design and Analysis of Multi-Factored Experiments Design and Analysis of Multi-Factored Experiments Fractional Factorial Designs L. M. Lye DOE Course 1 Design of Engineering Experiments The 2 k-p Fractional Factorial Design Motivation for fractional factorials

More information

a) Prepare a normal probability plot of the effects. Which effects seem active?

a) Prepare a normal probability plot of the effects. Which effects seem active? Problema 8.6: R.D. Snee ( Experimenting with a large number of variables, in experiments in Industry: Design, Analysis and Interpretation of Results, by R. D. Snee, L.B. Hare, and J. B. Trout, Editors,

More information

Homework 02 Solution updated

Homework 02 Solution updated CS3-Automata and Complexity Theory Homework 2 Solution updated Due On: 5hrs Wednesday, December 2, 25 Max Points: 25 Problem [5+5+5+ points] Give DFA for the following languages, over the alphabet {,}

More information

Multilevel Logic Synthesis Algebraic Methods

Multilevel Logic Synthesis Algebraic Methods Multilevel Logic Synthesis Algebraic Methods Logic Circuits Design Seminars WS2010/2011, Lecture 6 Ing. Petr Fišer, Ph.D. Department of Digital Design Faculty of Information Technology Czech Technical

More information

MATHEMATICAL ENGINEERING TECHNICAL REPORTS. Markov chain Monte Carlo tests for designed experiments

MATHEMATICAL ENGINEERING TECHNICAL REPORTS. Markov chain Monte Carlo tests for designed experiments MATHEMATICAL ENGINEERING TECHNICAL REPORTS Markov chain Monte Carlo tests for designed experiments Satoshi AOKI and Akimichi TAKEMURA METR 2006 56 November 2006 DEPARTMENT OF MATHEMATICAL INFORMATICS GRADUATE

More information

Contents. TAMS38 - Lecture 8 2 k p fractional factorial design. Lecturer: Zhenxia Liu. Example 0 - continued 4. Example 0 - Glazing ceramic 3

Contents. TAMS38 - Lecture 8 2 k p fractional factorial design. Lecturer: Zhenxia Liu. Example 0 - continued 4. Example 0 - Glazing ceramic 3 Contents TAMS38 - Lecture 8 2 k p fractional factorial design Lecturer: Zhenxia Liu Department of Mathematics - Mathematical Statistics Example 0 2 k factorial design with blocking Example 1 2 k p fractional

More information

CS 147: Computer Systems Performance Analysis

CS 147: Computer Systems Performance Analysis CS 147: Computer Systems Performance Analysis Fractional Factorial Designs CS 147: Computer Systems Performance Analysis Fractional Factorial Designs 1 / 26 Overview Overview Overview Example Preparing

More information

20g g g Analyze the residuals from this experiment and comment on the model adequacy.

20g g g Analyze the residuals from this experiment and comment on the model adequacy. 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 3.11. A pharmaceutical

More information

Without making assumptions about irrelevance, reasoning in a knowledge-based system

Without making assumptions about irrelevance, reasoning in a knowledge-based system The concept of irrelevance is one of the key concepts in knowledge-based systems. Without making assumptions about irrelevance, reasoning in a knowledge-based system would be intractable. Irrelevance is

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

Sensitivity Analysis of Parameters Governing the Recovery of Methane from Natural Gas Hydrate Reservoirs

Sensitivity Analysis of Parameters Governing the Recovery of Methane from Natural Gas Hydrate Reservoirs Energies 2014, 7, 2148-2176; doi:10.3390/en7042148 Article OPEN ACCESS energies ISSN 1996-1073 www.mdpi.com/journal/energies Sensitivity Analysis of Parameters Governing the Recovery of Methane from Natural

More information

APPENDIX 1. Binodal Curve calculations

APPENDIX 1. Binodal Curve calculations APPENDIX 1 Binodal Curve calculations The weight of salt solution necessary for the mixture to cloud and the final concentrations of the phase components were calculated based on the method given by Hatti-Kaul,

More information

ECE 697B (667) Spring 2003

ECE 697B (667) Spring 2003 ECE 697B (667) Spring 2003 Synthesis and Verification of Digital Systems Multi-level Minimization - Algebraic division Outline Division and factorization Definitions Algebraic vs Boolean Algebraic division

More information

Answer Keys to Homework#10

Answer Keys to Homework#10 Answer Keys to Homework#10 Problem 1 Use either restricted or unrestricted mixed models. Problem 2 (a) First, the respective means for the 8 level combinations are listed in the following table A B C Mean

More information

Assignment 9 Answer Keys

Assignment 9 Answer Keys Assignment 9 Answer Keys Problem 1 (a) First, the respective means for the 8 level combinations are listed in the following table A B C Mean 26.00 + 34.67 + 39.67 + + 49.33 + 42.33 + + 37.67 + + 54.67

More information

CS 5014: Research Methods in Computer Science

CS 5014: Research Methods in Computer Science Computer Science Clifford A. Shaffer Department of Computer Science Virginia Tech Blacksburg, Virginia Fall 2010 Copyright c 2010 by Clifford A. Shaffer Computer Science Fall 2010 1 / 254 Experimental

More information

A General Criterion for Factorial Designs Under Model Uncertainty

A General Criterion for Factorial Designs Under Model Uncertainty A General Criterion for Factorial Designs Under Model Uncertainty Steven Gilmour Queen Mary University of London http://www.maths.qmul.ac.uk/ sgg and Pi-Wen Tsai National Taiwan Normal University Fall

More information

Marginal log-linear parameterization of conditional independence models

Marginal log-linear parameterization of conditional independence models Marginal log-linear parameterization of conditional independence models Tamás Rudas Department of Statistics, Faculty of Social Sciences ötvös Loránd University, Budapest rudas@tarki.hu Wicher Bergsma

More information

IE 361 Exam 1 October 2004 Prof. Vardeman

IE 361 Exam 1 October 2004 Prof. Vardeman October 5, 004 IE 6 Exam Prof. Vardeman. IE 6 students Demerath, Gottschalk, Rodgers and Watson worked with a manufacturer on improving the consistency of several critical dimensions of a part. One of

More information

USE OF COMPUTER EXPERIMENTS TO STUDY THE QUALITATIVE BEHAVIOR OF SOLUTIONS OF SECOND ORDER NEUTRAL DIFFERENTIAL EQUATIONS

USE OF COMPUTER EXPERIMENTS TO STUDY THE QUALITATIVE BEHAVIOR OF SOLUTIONS OF SECOND ORDER NEUTRAL DIFFERENTIAL EQUATIONS USE OF COMPUTER EXPERIMENTS TO STUDY THE QUALITATIVE BEHAVIOR OF SOLUTIONS OF SECOND ORDER NEUTRAL DIFFERENTIAL EQUATIONS Seshadev Padhi, Manish Trivedi and Soubhik Chakraborty* Department of Applied Mathematics

More information

SUM-OF-SQUARES ORTHOGONALITY AND COMPLETE SETS

SUM-OF-SQUARES ORTHOGONALITY AND COMPLETE SETS 3«- )h37-frl 1 SUM-OF-SQUARES ORTHOGONALITY AND COMPLETE SETS by Walter T. Federer ABSTRACT The concept of sum-of-squares orthogonality is explained in terms of what is known about factorial treatment

More information

ESTIMATION METHODS FOR MISSING DATA IN UN-REPLICATED 2 FACTORIAL AND 2 FRACTIONAL FACTORIAL DESIGNS

ESTIMATION METHODS FOR MISSING DATA IN UN-REPLICATED 2 FACTORIAL AND 2 FRACTIONAL FACTORIAL DESIGNS Journal of Statistics: Advances in Theory and Applications Volume 5, Number 2, 2011, Pages 131-147 ESTIMATION METHODS FOR MISSING DATA IN k k p UN-REPLICATED 2 FACTORIAL AND 2 FRACTIONAL FACTORIAL DESIGNS

More information

Math Treibergs. Peanut Oil Data: 2 5 Factorial design with 1/2 Replication. Name: Example April 22, Data File Used in this Analysis:

Math Treibergs. Peanut Oil Data: 2 5 Factorial design with 1/2 Replication. Name: Example April 22, Data File Used in this Analysis: Math 3080 1. Treibergs Peanut Oil Data: 2 5 Factorial design with 1/2 Replication. Name: Example April 22, 2010 Data File Used in this Analysis: # Math 3080-1 Peanut Oil Data April 22, 2010 # Treibergs

More information

UNCLASSIFIED AD f/h ARMED SERVICES TECHNICAL INFORMATION AGENCY ARLINGTON HALL STATION ARLINGTON 12, VIRGINIA UNCLASSIFIED

UNCLASSIFIED AD f/h ARMED SERVICES TECHNICAL INFORMATION AGENCY ARLINGTON HALL STATION ARLINGTON 12, VIRGINIA UNCLASSIFIED UNCLASSIFIED AD 271 600 4f/h ARMED SERVICES TECHNICAL INFORMATION AGENCY ARLINGTON HALL STATION ARLINGTON 12, VIRGINIA UNCLASSIFIED PAGES ARE MISSING IN ORIGINAL DOCUMENT NOTICE: When government or other

More information

PURPLE COMET MATH MEET April 2012 MIDDLE SCHOOL - SOLUTIONS

PURPLE COMET MATH MEET April 2012 MIDDLE SCHOOL - SOLUTIONS PURPLE COMET MATH MEET April 2012 MIDDLE SCHOOL - SOLUTIONS Copyright c Titu Andreescu and Jonathan Kane Problem 1 Evaluate 5 4 4 3 3 2 2 1 1 0. Answer: 549 The expression equals 625 64 9 2 1 = 549. Problem

More information

Stat 5303 (Oehlert): Fractional Factorials 1

Stat 5303 (Oehlert): Fractional Factorials 1 Stat 5303 (Oehlert): Fractional Factorials 1 Cmd> gen

More information

A B CDE F B FD D A C AF DC A F

A B CDE F B FD D A C AF DC A F International Journal of Arts & Sciences, CD-ROM. ISSN: 1944-6934 :: 4(20):121 131 (2011) Copyright c 2011 by InternationalJournal.org A B CDE F B FD D A C A BC D EF C CE C A D ABC DEF B B C A E E C A

More information

9. Areas of Parallelograms and Triangles

9. Areas of Parallelograms and Triangles 9. Areas of Parallelograms and Triangles Q 1 State true or false : A diagonal of a parallelogram divides it into two parts of equal areas. Mark (1) Q 2 State true or false: Parallelograms on the same base

More information

Computer Organization I. Lecture 13: Design of Combinational Logic Circuits

Computer Organization I. Lecture 13: Design of Combinational Logic Circuits Computer Organization I Lecture 13: Design of Combinational Logic Circuits Overview The optimization of multiple-level circuits Mapping Technology Verification Objectives To know how to optimize the multiple-level

More information

Unit 6: Fractional Factorial Experiments at Three Levels

Unit 6: Fractional Factorial Experiments at Three Levels Unit 6: Fractional Factorial Experiments at Three Levels Larger-the-better and smaller-the-better problems. Basic concepts for 3 k full factorial designs. Analysis of 3 k designs using orthogonal components

More information

Computer Aided Construction of Fractional Replicates from Large Factorials. Walter T. Federer Charles E. McCulloch. and. Steve C.

Computer Aided Construction of Fractional Replicates from Large Factorials. Walter T. Federer Charles E. McCulloch. and. Steve C. Computer Aided Construction of Fractional Replicates from Large Factorials by Walter T. Federer Charles E. McCulloch and Steve C. Wang Biometrics Unit and Statistics Center Cornell University Ithaca, NY

More information

0113ge. Geometry Regents Exam In the diagram below, under which transformation is A B C the image of ABC?

0113ge. Geometry Regents Exam In the diagram below, under which transformation is A B C the image of ABC? 0113ge 1 If MNP VWX and PM is the shortest side of MNP, what is the shortest side of VWX? 1) XV ) WX 3) VW 4) NP 4 In the diagram below, under which transformation is A B C the image of ABC? In circle

More information

D EFB B E B EAB ABC DEF C A F C D C DEF C AD C AEC D D E C D EF B ABC AB CD A EFD AD D E

D EFB B E B EAB ABC DEF C A F C D C DEF C AD C AEC D D E C D EF B ABC AB CD A EFD AD D E D EFB B E BEAB ABC DEF C A F C D C DEF C AD C AEC D D E A B C D EF B ABC AB CD A EFD AD D E FFF A B FBC AE BC D AD A D F D F D F D D B D A D A ED D D DD F D D D D A A DA ADD D F AD AD C A DD D D F D A

More information

Geometry Problem Solving Drill 08: Congruent Triangles

Geometry Problem Solving Drill 08: Congruent Triangles Geometry Problem Solving Drill 08: Congruent Triangles Question No. 1 of 10 Question 1. The following triangles are congruent. What is the value of x? Question #01 (A) 13.33 (B) 10 (C) 31 (D) 18 You set

More information

CS 484 Data Mining. Association Rule Mining 2

CS 484 Data Mining. Association Rule Mining 2 CS 484 Data Mining Association Rule Mining 2 Review: Reducing Number of Candidates Apriori principle: If an itemset is frequent, then all of its subsets must also be frequent Apriori principle holds due

More information

Unreplicated 2 k Factorial Designs

Unreplicated 2 k Factorial Designs Unreplicated 2 k Factorial Designs These are 2 k factorial designs with one observation at each corner of the cube An unreplicated 2 k factorial design is also sometimes called a single replicate of the

More information

Design of Experiments

Design of Experiments 6s ANALYZE 6s IMPROVE Chapter 2-4 Design of Experiments 2-4-1 Definition Design of Experiments (DOE) DOE is a systematic approach to investigation of a system or process. A series of structured tests are

More information

Design and Analysis of

Design and Analysis of Design and Analysis of Multi-Factored Experiments Module Engineering 7928-2 Two-level Factorial Designs L. M. Lye DOE Course 1 The 2 k Factorial Design Special case of the general factorial design; k factors,

More information

Circle and Cyclic Quadrilaterals. MARIUS GHERGU School of Mathematics and Statistics University College Dublin

Circle and Cyclic Quadrilaterals. MARIUS GHERGU School of Mathematics and Statistics University College Dublin Circle and Cyclic Quadrilaterals MARIUS GHERGU School of Mathematics and Statistics University College Dublin 3 Basic Facts About Circles A central angle is an angle whose vertex is at the center of the

More information

Resampling and the Bootstrap

Resampling and the Bootstrap Resampling and the Bootstrap Axel Benner Biostatistics, German Cancer Research Center INF 280, D-69120 Heidelberg benner@dkfz.de Resampling and the Bootstrap 2 Topics Estimation and Statistical Testing

More information

Collinearity/Concurrence

Collinearity/Concurrence Collinearity/Concurrence Ray Li (rayyli@stanford.edu) June 29, 2017 1 Introduction/Facts you should know 1. (Cevian Triangle) Let ABC be a triangle and P be a point. Let lines AP, BP, CP meet lines BC,

More information

LECTURE 10: LINEAR MODEL SELECTION PT. 1. October 16, 2017 SDS 293: Machine Learning

LECTURE 10: LINEAR MODEL SELECTION PT. 1. October 16, 2017 SDS 293: Machine Learning LECTURE 10: LINEAR MODEL SELECTION PT. 1 October 16, 2017 SDS 293: Machine Learning Outline Model selection: alternatives to least-squares Subset selection - Best subset - Stepwise selection (forward and

More information

UNIT-8 SIMILAR TRIANGLES Geometry is the right foundation of all painting, I have decided to teach its rudiments and principles to all youngsters eager for art. 1. ABC is a right-angled triangle, right-angled

More information