STAT 5200 Handout #28: Fractional Factorial Design (Ch. 18)

Size: px
Start display at page:

Download "STAT 5200 Handout #28: Fractional Factorial Design (Ch. 18)"

Transcription

1 STAT 5200 Handout #28: Fractional Factorial Design (Ch. 18) For factorial designs where all factors have 2 levels, it is possible to systematically exclude certain factor level combinations and still make meaningful conclusions. However, this must be done in a carefully structured way at the design stage. A 2 k factorial design can be fractioned by introducing confounding (or aliasing) of higherorder interactions. A 2 k q fractional factorial design has k factors (each at two levels) that uses 2 k q experimental units (and factor level combinations). In the example below, k=9 and q=5. Example: (from p. 479 of text; also Taguchi and Wu 1980) In an experiment studying how various factors affect weld strength, nine factors (at two levels each) were identified. The full design would be a design (with possible replicates at each combination); in shorthand, this would be a 2 9 design. There are 512 possible combinations of factor levels, but the researchers couldn t realistically afford so many replicates. Instead, they carefully created a design requiring only 16 experimental units, summarized in the following table (here factors are coded A-J [skipping I]): Factors and levels (+/-) Generators (I) Y A B C D E F G H J ABCDE BCDF ACDG CDH ABDJ base factors (note full Defining relation: I = ABCDE = BCDF = ACDG = CDH = ABDJ = AEF = BEG = ABEH = CEJ = ABFG = factorial BFH = ACFJ = AGH = BCGJ = ABCHJ = CDEFG = structure ACDEFH = BDEFJ = BCDEGH = ADEGJ = DEHJ = embedded ABCDFGH = DFGJ = ADFHJ = BDGHJ = EFGH = ABCEFGJ = BCEFHJ = ACEGHJ = CFGHJ here) 1

2 How this design was constructed (following p. 478 of text): 1. Choose q generators and get the aliases of identity I Generators are the effects that we confound in the design; they are also sometimes called defining contrasts or simply words. Appendix C.5 (p ) in the text gives suggested generators for various values of k and q (in C.5, p=q). These can be used to create a defining relation, or a set of terms such that the product of any two terms in the set is also in the set (reducing exponents mod 2; so treat A 2 = I; think of this as identity or 1). Using two terms from our example s defining relation, BEG BDEFJ = B 2 DE 2 FGJ = DFGJ. Only higher-order interactions (degree three or more) should be in the defining relation because these terms cannot be estimated, and this same set is used to find the aliases for all lower-order terms. For example, the aliases of A can be found by multiplying A by the defining relation (again reducing exponents mod 2): I = ABCDE = BCDF = = AEF = = AGH = A I = A ABCDE = A BCDF = = A AEF = = A AGH = A = BCDE = ABCDF = = EF = = GH = 2. Find a set of k q base factors that has an embedded complete factorial Choose any set of k q factors that does not contain an alias of I as a subset. There are possibly many such sets. In our example (where k=9 and q=5, so we want a set of 4 base factors), there are 126 (9 choose 4) total sets of four factors, and only ten of those sets appear in the defining relation. ABCD includes four factors and does not appear in the defining relation, so we could (and did) let A, B, C, D be our base factors. 3. Write all factor-level combinations (+/-) of the base factors in standard order. 4. Find the aliases of the remaining q factors in terms of interactions of the k q base factors. For example, since I = AEF, then E I = E AEF, or E = AF. 5. Determine the plus/minus pattern for the q remaining factors from their aliased interactions. For example, the E column in our design is the A column times the F column. 2

3 A few notes on 2 k q fractional factorial designs: o Since we usually can t interpret the highest order interactions (and we often can t afford a full factorial design), we might be willing to assume the higherorder interactions are all zero in a fractional factorial design. o The resolution of the fractional design is the number of letters in the shortest alias of I. o The 2 k q fractional factorial design is one block of a confounded 2 k factorial. There are 2 q blocks, defined by the sign combinations (+/-) of the q generators. In our example here, we used the block where all generators have positive signs. Other blocks (and sets of generators) are possible. This confounding (and associated aliasing) means certain terms in the model are completely confounded with each other. See this confounding (with any terms, particularly those involving only the base factors) using the defining relation. For example, to see what is confounded with ABCD, multiply it by the defining relation: I = = ABCDFGH = = ABCDE = ABCD I = = ABCD ABCDFGH = = ABCD ABCDE = ABCD = = FGH = = E = When we analyze a fractional factorial as an unreplicated 2 k q (using only the base factors and the interactions by hand ), there are 0 degrees of freedom for error. Instead of pooling interactions (which we could do, essentially losing any information on even two-way interactions), we can use a graphical approach to identify large effects. data welding; input Y A B C D E F G H J; cards; ; 3

4 /* Define interactions among base factors 'by hand' */ data welding; set welding; AB = A*B; AC = A*C; AD = A*D; BC = B*C; BD = B*D; CD = C*D; ABC = A*B*C; ABD = A*B*D; ACD = A*C*D; BCD = B*C*D; ABCD = A*B*C*D; /* Run 'by hand' full factorial model on base factors */ proc glm data=welding; class A B C D AB AC AD BC BD CD ABC ABD ACD BCD ABCD; model Y = A B C D AB AC AD BC BD CD ABC ABD ACD BCD ABCD; estimate 'A' A 1-1; estimate 'B' B 1-1; estimate 'C' C 1-1; estimate 'D' D 1-1; estimate 'AB' AB 1-1; estimate 'AC' AC 1-1; estimate 'AD' AD 1-1; estimate 'BC' BC 1-1; estimate 'BD' BD 1-1; estimate 'CD' CD 1-1; estimate 'ABC' ABC 1-1; estimate 'ABD' ABD 1-1; estimate 'ACD' ACD 1-1; estimate 'BCD' BCD 1-1; estimate 'ABCD' ABCD 1-1; ods output Estimates=out1; title1 'Full Factorial on Base Factors (by hand)'; Full Factorial on Base Factors (by hand) Source DF Sum of Squares Mean Square F Value Pr > F Model Error Corrected Total

5 Parameter Estimate Standard Error t Value Pr > t A B C D AB AC AD BC BD CD ABC ABD ACD BCD ABCD /* Construct normal probability plot of effect estimates */ proc rank data=out1 normal=blom out=out2; var Estimate; ranks nest; proc sgplot data=out2; scatter x=estimate y=nest / markerchar=parameter markercharattrs=(size=12); xaxis label='effect'; yaxis label='normal Score'; title1 'Normal Probability Plot of the Effects'; Note that only ABCD (confounded with E, among others) and BCD (confounded with F, among others) appear to have large effects. Most likely, we are seeing that main effects E and F are significant. 5

6 /* Compare with additive model approach where all interactions are pooled into error */ proc glm data=welding plots=diagnostics; class A B C D E F G H J; model Y = A B C D E F G H J; title1 'Fractional Factorial Design (with all interactions pooled)'; Fractional Factorial Design (with all interactions pooled) Source DF Type III SS Mean Square F Value Pr > F A B C D E <.0001 F G H J

7 /* Automate this fractional design */ proc factex; factors A B C D E F G H J; size design=16; /* # of experimental units 2**(k-q) */ model resolution=3; /* # letters in shortest alias of I */ examine aliasing confounding design; title1 'Fractional Factorial Design'; Fractional Factorial Design (alternative aliasing) Design Points ExpNumber A B C D E F G H J Factor Confounding Rules E = A*B*C*D F = B*C*D G = A*C*D H = C*D J = A*B*D Aliasing Structure A = E*F = G*H B = E*G = F*H C = D*H = E*J D = C*H E = A*F = B*G = C*J F = A*E = B*H G = A*H = B*E H = A*G = B*F = C*D J = C*E A*B = D*J = E*H = F*G A*C = D*G = F*J A*D = B*J = C*G A*J = B*D = C*F B*C = D*F = G*J D*E = H*J 7

8 /* Check original generators (based on 'Factor Confounding Rules' in FACTEX output) */ data temp; set welding; ABCDE = A*B*C*D * E ; BCDF = B*C*D * F ; ACDG = A*C*D * G ; CDH = C*D * H ; ABDJ = A*B*D * J ; proc print data=temp; var ABCDE BCDF ACDG CDH ABDJ; title1 'Checking Generators'; title2 '(This design uses block where generators all positive)'; Checking Generators (This design uses block where generators all positive) Obs ABCDE BCDF ACDG CDH ABDJ

SETM*-MaxK: An Efficient SET-Based Approach to Find the Largest Itemset

SETM*-MaxK: An Efficient SET-Based Approach to Find the Largest Itemset SETM*-MaxK: An Efficient SET-Based Approach to Find the Largest Itemset Ye-In Chang and Yu-Ming Hsieh Dept. of Computer Science and Engineering National Sun Yat-Sen University Kaohsiung, Taiwan, Republic

More information

Analysis of Two-Level Designs

Analysis of Two-Level Designs Chapter 213 Analysis of Two-Level Designs Introduction Several analysis programs are provided for the analysis of designed experiments. The GLM-ANOVA and the Multiple Regression programs are often used.

More information

omit A ] omit E, + (superlinear) A 1:17 Vs. 17 found only in mss DG 1:25 ] omit BDEFG ABDEFG ] omit D

omit A ] omit E, + (superlinear) A 1:17 Vs. 17 found only in mss DG 1:25 ] omit BDEFG ABDEFG ] omit D 1:1 ] omit C 1:2 ] DEFG ] BEF 1:3 ] BDEFG 2 ] EF 1:4 ] ABDG ] ABDG ] ABDG ] omit A 1:5 ] omit A ] omit ABDEFG ] ABCDEFG 1:6 1,2 ] + A ] ABCDG ] F 1:8 1,2 ] B 2 ] EF ] EF 1:9 1 ] + ADG 1:10 1 ] omit EF

More information

SPAREPARTSCATALOG: CONNECTORS SPARE CONNECTORS KTM ART.-NR.: 3CM EN

SPAREPARTSCATALOG: CONNECTORS SPARE CONNECTORS KTM ART.-NR.: 3CM EN SPAREPARTSCATALOG: CONNECTORS ART.-NR.: 3CM3208201EN CONTENT SPARE CONNECTORS AA-AN SPARE CONNECTORS AO-BC SPARE CONNECTORS BD-BQ SPARE CONNECTORS BR-CD 3 4 5 6 SPARE CONNECTORS CE-CR SPARE CONNECTORS

More information

SPARE CONNECTORS KTM 2014

SPARE CONNECTORS KTM 2014 SPAREPARTSCATALOG: // ENGINE ART.-NR.: 3208201EN CONTENT CONNECTORS FOR WIRING HARNESS AA-AN CONNECTORS FOR WIRING HARNESS AO-BC CONNECTORS FOR WIRING HARNESS BD-BQ CONNECTORS FOR WIRING HARNESS BR-CD

More information

Stat 5303 (Oehlert): Unreplicated 2-Series Factorials 1

Stat 5303 (Oehlert): Unreplicated 2-Series Factorials 1 Stat 5303 (Oehlert): Unreplicated 2-Series Factorials 1 Cmd> a

More information

b The orders of the vertices are 29, 21, 17 and 3 The graph is neither Eulerian not semi-eulerian since it has more than 2 odd vertices.

b The orders of the vertices are 29, 21, 17 and 3 The graph is neither Eulerian not semi-eulerian since it has more than 2 odd vertices. Route inspection Mied eercise 1 a The graph is Eulerian as all vertices are even. b The graph is neither as there are more than 2 odd nodes. 2 Any not connected graph with 6 even nodes, e.g. If the graph

More information

13 th Annual Johns Hopkins Math Tournament Saturday, February 19, 2011 Automata Theory EUR solutions

13 th Annual Johns Hopkins Math Tournament Saturday, February 19, 2011 Automata Theory EUR solutions 13 th Annual Johns Hopkins Math Tournament Saturday, February 19, 011 Automata Theory EUR solutions Problem 1 (5 points). Prove that any surjective map between finite sets of the same cardinality is a

More information

Regular polytopes Notes for talks given at LSBU, November & December 2014 Tony Forbes

Regular polytopes Notes for talks given at LSBU, November & December 2014 Tony Forbes Regular polytopes Notes for talks given at LSBU, November & December 2014 Tony Forbes Flags A flag is a sequence (f 1, f 0,..., f n ) of faces f i of a polytope f n, each incident with the next, with precisely

More information

Chapter 8 Two-Level Fractional Factorial Designs Solutions

Chapter 8 Two-Level Fractional Factorial Designs Solutions Chapter 8 Two-Level Fractional Factorial Designs Solutions 8.1. Suppose that in the chemical process development experiment in Problem 6.7, it was only possible to run a one-half fraction of the 4 design.

More information

Stat 602 The Design of Experiments

Stat 602 The Design of Experiments Stat 602 The Design of Experiments Yuqing Xu Department of Statistics University of Wisconsin Madison, WI 53706, USA April 28, 2016 Yuqing Xu (UW-Madison) Stat 602 Week 14 April 28, 2016 1 / 10 Blocking

More information

TEKS (Adopted 2012) Correlations to Titles. Title Grade Level Process K Alg 1 Alg 2 Geometry PreCalculus 4DFHIJ, 5A, 5D 4BCDFH 3AH

TEKS (Adopted 2012) Correlations to Titles. Title Grade Level Process K Alg 1 Alg 2 Geometry PreCalculus 4DFHIJ, 5A, 5D 4BCDFH 3AH Account Attributes 6 1ABCDEFG 14AB Adding Algebra Tiles *E-activity Alg 1-Alg 2 1BCDEFG 10A 7B Additive vs Multiplicative 5-6 1CDEF 4CD 4A, 6BC Algebra Tic-Tac-Toe Alg 1 1CDEFG 2, 4, 12 Algebraic Reasoning

More information

Polygon Interior Angles

Polygon Interior Angles Polygons can be named by the number of sides. A regular polygon has All other polygons are irregular. A concave polygon has All other polygons are convex, with all vertices facing outwards. Name each polygon

More information

Building Roads. Page 2. I = {;, a, b, c, d, e, ab, ac, ad, ae, bc, bd, be, cd, ce, de, abd, abe, acd, ace, bcd, bce, bde}

Building Roads. Page 2. I = {;, a, b, c, d, e, ab, ac, ad, ae, bc, bd, be, cd, ce, de, abd, abe, acd, ace, bcd, bce, bde} Page Building Roads Page 2 2 3 4 I = {;, a, b, c, d, e, ab, ac, ad, ae, bc, bd, be, cd, ce, de, abd, abe, acd, ace, bcd, bce, bde} Building Roads Page 3 2 a d 3 c b e I = {;, a, b, c, d, e, ab, ac, ad,

More information

FTA1000 Cameras, Optics and Illuminators

FTA1000 Cameras, Optics and Illuminators FTA1000 Cameras, Optics and Illuminators November 2, 2006 1. Introduction This note will show you how to choose the optical path, the camera, microscope, and backlight illuminator, for your FTA1000 system.

More information

SAS data statements and data: /*Factor A: angle Factor B: geometry Factor C: speed*/

SAS data statements and data: /*Factor A: angle Factor B: geometry Factor C: speed*/ STAT:5201 Applied Statistic II (Factorial with 3 factors as 2 3 design) Three-way ANOVA (Factorial with three factors) with replication Factor A: angle (low=0/high=1) Factor B: geometry (shape A=0/shape

More information

Hartmann HONORS Geometry Chapter 3 Formative Assessment * Required

Hartmann HONORS Geometry Chapter 3 Formative Assessment * Required Hartmann HONORS Geometry Chapter 3 Formative Assessment * Required 1. First Name * 2. Last Name * Vocabulary Match the definition to the vocabulary word. 3. Non coplanar lines that do not intersect. *

More information

Name Date Class. Vertical angles are opposite angles formed by the intersection of two lines. Vertical angles are congruent.

Name Date Class. Vertical angles are opposite angles formed by the intersection of two lines. Vertical angles are congruent. SKILL 43 Angle Relationships Example 1 Adjacent angles are pairs of angles that share a common vertex and a common side. Vertical angles are opposite angles formed by the intersection of two lines. Vertical

More information

How to find a minimum spanning tree

How to find a minimum spanning tree Print How to find a minimum spanning tree Definitions Kruskal s algorithm Spanning tree example Definitions Trees A tree is a connected graph without any cycles. It can also be defined as a connected graph

More information

2-Type Series Pressurized Closures

2-Type Series Pressurized Closures 2-Type Series Pressurized Closures A complete pressure tight reenterable closure system for enclosing spliced connections of communications cables in a wide variety of applications. The 2-type Closure

More information

PRINCIPLES FROM PATTERNS Geometry - Algebra II - Trigonometry

PRINCIPLES FROM PATTERNS Geometry - Algebra II - Trigonometry Integrating Geometry - Algebra II - Trigonometry 1 PRINCIPLES FROM PATTERNS Geometry - Algebra II - Trigonometry by David Quine Final Draft October 2010 Chapter 1 2 Principles from Patterns CHAPTER Section

More information

Appendix 5-1: Attachment J.1 Pricing Table -1: IMS Ceiling Loaded Rates at Contractor Site

Appendix 5-1: Attachment J.1 Pricing Table -1: IMS Ceiling Loaded Rates at Contractor Site Appendix 5-1: Attachment J.1 Pricing Table -1: IMS Ceiling Loaded Rates at Contractor Site Escalation rate 4.6% 4.6% 4.6% 4.6% 4.6% 4.6% 4.6% 4.6% 4.6% 0001 AA01 Administrative Assistant Level I $51.00

More information

Review (pages )

Review (pages ) Review (pages 124 126) 2.1 1. a) In right CDE, CE is D and CD is adjacent to D. Use the tangent ratio in right CDE. tan D adjacent CE tan D CD 7 tan D 10 D 34.9920 D is approximately 35. b) In right FGH,

More information

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview

D-Optimal Designs. Chapter 888. Introduction. D-Optimal Design Overview Chapter 888 Introduction This procedure generates D-optimal designs for multi-factor experiments with both quantitative and qualitative factors. The factors can have a mixed number of levels. For example,

More information

Grade 9 Quadrilaterals

Grade 9 Quadrilaterals ID : pk-9-quadrilaterals [1] Grade 9 Quadrilaterals For more such worksheets visit www.edugain.com Answer t he quest ions (1) In a quadrilateral ABCD, O is a point inside the quadrilateral such that AO

More information

Regularities in the Augmentation of Fractional Factorial Designs

Regularities in the Augmentation of Fractional Factorial Designs Virginia Commonwealth University VCU Scholars Compass Theses and Dissertations Graduate School 2013 Regularities in the Augmentation of Fractional Factorial Designs Lisa Kessel Virginia Commonwealth University

More information

22ND CENTURY_J1.xls Government Site Hourly Rate

22ND CENTURY_J1.xls Government Site Hourly Rate Escalation rate 000 AA0 Administrative Assistant Level I 000 AA0 Administrative Assistant Level II 000 AB0 Application Engineer Level I 000 AB0 Application Engineer Level II 000 AC0 Application Programmer

More information

Jason Manley. Internal presentation: Operation overview and drill-down October 2007

Jason Manley. Internal presentation: Operation overview and drill-down October 2007 Jason Manley Internal presentation: Operation overview and drill-down October 2007 System overview Achievements to date ibob F Engine in detail BEE2 X Engine in detail Backend System in detail Future developments

More information

Squares and Rectangles

Squares and Rectangles 11 CHAPTER Squares and Rectangles Lesson 11.1 Squares and Rectangles Study the figure. Then fill in the blanks. 1. There are right angles. 2. There are equal sides. 3. There are pairs of parallel sides.

More information

!"#$%&'()&'"(*&+$*,--$.&*/-*0'1$*/"*&+$*23)%1/34%'%*/-*2/&)&/$%

!#$%&'()&'(*&+$*,--$.&*/-*0'1$*/*&+$*23)%1/34%'%*/-*2/&)&/$% !"#$%&'()&'"(*&+$*,--$.&*/-*0'1$*/"*&+$*23)%1/34%'%*/-*2/&)&/$% 5$%$)6.+ 78$%&'/"!"#$ %#&'(' )*$#$*(' $* +* '*,$ #,$(-.(/0+ '$*-(12,*- # 3*0+ $/4(5 Question: How could the research question have been more

More information

Unit 1 Packet Honors Common Core Math 2 22

Unit 1 Packet Honors Common Core Math 2 22 Unit 1 Packet Honors Common Core Math 2 22 Day 8 Homework Part 1 HW Directions: The following problems deal with congruency and rigid motion. The term rigid motion is also known as isometry or congruence

More information

Performance Evaluation of NFS over a Wide-Area Network

Performance Evaluation of NFS over a Wide-Area Network Performance Evaluation of NFS over a Wide-Area Network Using Design of Experiments methods Abdulqawi Saif abdulqawi.saif@loria.fr Lucas Nussbaum lucas.nussbaum@loria.fr July 6, 2016 COMPAS 2016 - Lorient,

More information

1.4 Euler Diagram Layout Techniques

1.4 Euler Diagram Layout Techniques 1.4 Euler Diagram Layout Techniques Euler Diagram Layout Techniques: Overview Dual graph based methods Inductive methods Drawing with circles Including software demos. How is the drawing problem stated?

More information

Similar Figures and Proportions

Similar Figures and Proportions Practice A Similar Figures and Proportions Identify the corresponding sides. 1. AB corresponds to. 2. BC corresponds to. 3. AC corresponds to. Identify the corresponding sides. Then use ratios to determine

More information

1.3. Similar Triangles. Investigate Properties of Similar Triangles

1.3. Similar Triangles. Investigate Properties of Similar Triangles 1.3 Similar Triangles The Great Hall of the National Gallery of Canada in Ottawa has an impressive glass ceiling. The design of the Great Hall is intended to mimic the design of the nearby Library of Parliament.

More information

Calculus With Analytic Geometry by SM. Yusaf & Prof.Muhammad Amin CHAPTER # 08 ANALYTIC GEOMETRY OF THREE DIMENSONS. Exercise #8.1

Calculus With Analytic Geometry by SM. Yusaf & Prof.Muhammad Amin CHAPTER # 08 ANALYTIC GEOMETRY OF THREE DIMENSONS. Exercise #8.1 CHAPTER # 08 ANALYTIC GEOMETRY OF THREE DIMENSONS Exercise #8.1 Show that the three given points are the vertices of a right triangle, or the vertices of an isosceles triangle, or both. Q#: A 1, 5, 0,

More information

Happy Endings for Flip Graphs. David Eppstein Univ. of California, Irvine Computer Science Department

Happy Endings for Flip Graphs. David Eppstein Univ. of California, Irvine Computer Science Department Happy Endings for Flip Graphs David Eppstein Univ. of California, Irvine Computer Science Department Rotation in binary trees Rearrange links in and out of two adjacent nodes while preserving in-order

More information

Geometry Agenda. Week 4.6 Objective Stamp Grade. Similar Polygons. Practice. Proving Triangles Similar. Practice. Practice

Geometry Agenda. Week 4.6 Objective Stamp Grade. Similar Polygons. Practice. Proving Triangles Similar. Practice. Practice Name Period Geometry Agenda Week.6 Objective Stamp Grade Monday February 8, 2016 Tuesday February 9, 2016 Wednesday February 10, 2016 Thursday February 11, 2016 Friday February 12, 2016 Similar Polygons

More information

Apriori Algorithm. 1 Bread, Milk 2 Bread, Diaper, Beer, Eggs 3 Milk, Diaper, Beer, Coke 4 Bread, Milk, Diaper, Beer 5 Bread, Milk, Diaper, Coke

Apriori Algorithm. 1 Bread, Milk 2 Bread, Diaper, Beer, Eggs 3 Milk, Diaper, Beer, Coke 4 Bread, Milk, Diaper, Beer 5 Bread, Milk, Diaper, Coke Apriori Algorithm For a given set of transactions, the main aim of Association Rule Mining is to find rules that will predict the occurrence of an item based on the occurrences of the other items in the

More information

Class 9 Full Year 9th Grade Review

Class 9 Full Year 9th Grade Review ID : in-9-full-year-9th-grade-review [1] Class 9 Full Year 9th Grade Review For more such worksheets visit www.edugain.com Answer the questions (1) In the graph of the linear equation 5x + 2y = 110, there

More information

CPSC 203 Extra review and solutions

CPSC 203 Extra review and solutions CPSC 203 Extra review and solutions Multiple choice questions: For Questions 1 6 determine the output of the MsgBox 1) x = 12 If (x > 0) Then s = s & "a" s = s & "b" a. a b. b c. s d. ab e. None of the

More information

ANALYZING MULTIPLE RESPONSE QUESTIONS: FACILITATING AN EXISTING METHOD AND PRESENTING AN ALTERNATIVE

ANALYZING MULTIPLE RESPONSE QUESTIONS: FACILITATING AN EXISTING METHOD AND PRESENTING AN ALTERNATIVE ANALYZING MULTIPLE RESPONSE QUESTIONS: FACILITATING AN EXISTING METHOD AND PRESENTING AN ALTERNATIVE Paul Pope, Texas Agricultural Extension Service, Texas A&M University System Darrell Fannin, Department

More information

FURTHER ORTHOGONAL ARRAYS

FURTHER ORTHOGONAL ARRAYS FURTHER ORTHOGONAL ARRAYS The Taguchi approach to experimental design Create matrices from factors and factor levels -either an inner array or design matrix (controllable factors) -or an outer array or

More information

Chapter 1 Preliminaries

Chapter 1 Preliminaries Chapter 1 Preliminaries This chapter discusses the major classes of programming languages and the relationship among them. It also discusses the binary and the hexadecimal number systems which are used

More information

Design and Analysis of Experiments Prof. Jhareswar Maiti Department of Industrial and Systems Engineering Indian Institute of Technology, Kharagpur

Design and Analysis of Experiments Prof. Jhareswar Maiti Department of Industrial and Systems Engineering Indian Institute of Technology, Kharagpur Design and Analysis of Experiments Prof. Jhareswar Maiti Department of Industrial and Systems Engineering Indian Institute of Technology, Kharagpur Lecture 59 Fractional Factorial Design using MINITAB

More information

Stat 5100 Handout #6 SAS: Linear Regression Remedial Measures

Stat 5100 Handout #6 SAS: Linear Regression Remedial Measures Stat 5100 Handout #6 SAS: Linear Regression Remedial Measures Example: Age and plasma level for 25 healthy children in a study are reported. Of interest is how plasma level depends on age. (Text Table

More information

FINDING SEMI-TRANSITIVE ORIENTATIONS OF GRAPHS

FINDING SEMI-TRANSITIVE ORIENTATIONS OF GRAPHS FINDING SEMI-TRANSITIVE ORIENTATIONS OF GRAPHS MEGAN GALLANT Abstract. Given any graph, how do we determine whether it is semi-transitive or not. In this paper, I give a method to determine the semi-transitive

More information

DATA MINING II - 1DL460

DATA MINING II - 1DL460 DATA MINING II - 1DL460 Spring 2013 " An second class in data mining http://www.it.uu.se/edu/course/homepage/infoutv2/vt13 Kjell Orsborn Uppsala Database Laboratory Department of Information Technology,

More information

DETAIL SPECIFICATION SHEET

DETAIL SPECIFICATION SHEET INCH-POUND MIL-DTL-55302/128D 18 April 2013 SUPERSEDING MIL-DTL-55302/128D 4 June 2004 DETAIL SPECIFICATION SHEET CONNECTORS, PRINTED CIRCUIT SUBASSEMBLY AND ACCESSORIES: RECEPTACLE, DOUBLE ROW, 4 THROUGH

More information

Park Forest Math Team. Meet #3. Self-study Packet

Park Forest Math Team. Meet #3. Self-study Packet Park Forest Math Team Meet #3 Self-study Packet Problem Categories for this Meet (in addition to topics of earlier meets): 1. Mystery: Problem solving 2. : Properties of Polygons, Pythagorean Theorem 3.

More information

Package conf.design. R topics documented: February 19, 2015

Package conf.design. R topics documented: February 19, 2015 Type Package Title Construction of factorial designs Version 2.0.0 Date 2013-02-22 Suggests stats, utils Author Bill Venables Package conf.design February 19, 2015 Maintainer Bill Venables

More information

Fractional. Design of Experiments. Overview. Scenario

Fractional. Design of Experiments. Overview. Scenario Design of Experiments Overview We are going to learn about DOEs. Specifically, you ll learn what a DOE is, as well as, what a key concept known as Confounding is all about. Finally, you ll learn what the

More information

Term: Definition: Picture:

Term: Definition: Picture: 10R Unit 7 Triangle Relationships CW 7.8 HW: Finish this CW 7.8 Review for Test Answers: See Teacher s Website Theorem/Definition Study Sheet! Term: Definition: Picture: Exterior Angle Theorem: Triangle

More information

Section 4 General Factorial Tutorials

Section 4 General Factorial Tutorials Section 4 General Factorial Tutorials General Factorial Part One: Categorical Introduction Design-Ease software version 6 offers a General Factorial option on the Factorial tab. If you completed the One

More information

Tools of Geometry 1. X + 9 = 24 2. 25 X = 15 3. X + 3 = -2X -10 4. 3X + 4Y = 2 Place in slope intercept form. 5. Y = ½ X 2 What is the slope? What is the Y- Intercept? Inductive Reasoning is reasoning

More information

Design of Experiments

Design of Experiments Design of Experiments Table Of Contents Table Of Contents Designing Experiments... 5 Design of Experiments (DOE) Overview... 5 Planning... 5 Screening... 5 Optimization... 6 Verification... 6 Modifying

More information

AAS Triangle Congruence

AAS Triangle Congruence Name Date Class 6-2 AAS Triangle Congruence Practice and Problem Solving: A/B 1. Students in Mrs. Marquez s class are watching a film on the uses of geometry in architecture. The film projector casts the

More information

BCNF. Yufei Tao. Department of Computer Science and Engineering Chinese University of Hong Kong BCNF

BCNF. Yufei Tao. Department of Computer Science and Engineering Chinese University of Hong Kong BCNF Yufei Tao Department of Computer Science and Engineering Chinese University of Hong Kong Recall A primary goal of database design is to decide what tables to create. Usually, there are two principles:

More information

rm(list=ls(all=true)) # number of factors. # number of replicates.

rm(list=ls(all=true)) # number of factors. # number of replicates. # We have developed simple formulas that allow us to compute effects and the corresponding SS values (and, therefore F) from the contrast of each effect: effect = (1/(n*2^(k-1))) * contrast SS = ( 1/(n*2^k)

More information

W52P1J-15-D-0060 [ ] Honeywell CN70GQ5KN00G1A40

W52P1J-15-D-0060 [   ] Honeywell CN70GQ5KN00G1A40 AMIS AIT-V Contract Products Snapshot This AIT-V Contract Products Snapshot is an abbreviated presentation of the product offerings by the three contractors providing their products and services. All CLINS

More information

not to be republishe NCERT CHAPTER 8 QUADRILATERALS 8.1 Introduction

not to be republishe NCERT CHAPTER 8 QUADRILATERALS 8.1 Introduction QUADRILATERALS 8.1 Introduction CHAPTER 8 You have studied many properties of a triangle in Chapters 6 and 7 and you know that on joining three non-collinear points in pairs, the figure so obtained is

More information

Midpoint and Distance Formulas

Midpoint and Distance Formulas CP1 Math Unit 5: Coordinate Geometry: Day Name Midpoint Formula: Midpoint and Distance Formulas The midpoint of the line segment between any two points (x!, y! ) to (x!, y! ) is given by: In your groups,

More information

UNIT 1 SIMILARITY, CONGRUENCE, AND PROOFS Lesson 5: Congruent Triangles Instruction

UNIT 1 SIMILARITY, CONGRUENCE, AND PROOFS Lesson 5: Congruent Triangles Instruction Prerequisite Skills This lesson requires the use of the following skills: recognizing transformations performed as a combination of translations, reflections, rotations, dilations, contractions, or stretches

More information

ANALYZING MULTIPLE RESPONSE QUESTIONS: FACIUTATING AN EXISTING METHOD AND PRESENTING AN ALTERNATIVE

ANALYZING MULTIPLE RESPONSE QUESTIONS: FACIUTATING AN EXISTING METHOD AND PRESENTING AN ALTERNATIVE ANALYZING MULTIPLE RESPONSE QUESTIONS: FACIUTATING AN EXISTING METHOD AND PRESENTING AN ALTERNATIVE Paul Pope, Texas Agricultural Extension Service Darrell Fannin, Texas A&M University, Department of Rural

More information

How Computers Work. Processor and Main Memory. Roger Young

How Computers Work. Processor and Main Memory. Roger Young How Computers Work Processor and Main Memory Roger Young Copyright 2001, Roger Stephen Young All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted by

More information

12/15/2015. Directions

12/15/2015. Directions Directions You will have 4 minutes to answer each question. The scoring will be 16 points for a correct response in the 1 st minute, 12 points for a correct response in the 2 nd minute, 8 points for a

More information

BIOMETRICS INFORMATION

BIOMETRICS INFORMATION BIOMETRICS INFORMATION (You re 95% likely to need this information) PAMPHLET NO. # 57 DATE: September 5, 1997 SUBJECT: Interpreting Main Effects when a Two-way Interaction is Present Interpreting the analysis

More information

Sy m met ry. Draw some patterns of your own, using centimetre squared paper and use the mirror to complete the reflected patterns.

Sy m met ry. Draw some patterns of your own, using centimetre squared paper and use the mirror to complete the reflected patterns. Sy m met ry Smile Worksheet 0251 You will need colour pencils, a mirror and centimetre squared paper. Put the mirror on the dotted line and look at the reflection. Remove the mirror and draw in the reflected

More information

Assignment (3-6) Boolean Algebra and Logic Simplification - General Questions

Assignment (3-6) Boolean Algebra and Logic Simplification - General Questions Assignment (3-6) Boolean Algebra and Logic Simplification - General Questions 1. Convert the following SOP expression to an equivalent POS expression. 2. Determine the values of A, B, C, and D that make

More information

FRACTIONAL FACTORIAL (

FRACTIONAL FACTORIAL ( FRACTIONAL FACTORIAL ( # : ; ) STUDIES Page 1 Motivation: For : factors, even # : gets big fast : for : œ"! # œ"!#% Example Hendrix 1979 Chemtech A Coating Roll Temp 115 vs 125 B Solvent Recycled vs Refined

More information

NCSS Statistical Software. Design Generator

NCSS Statistical Software. Design Generator Chapter 268 Introduction This program generates factorial, repeated measures, and split-plots designs with up to ten factors. The design is placed in the current database. Crossed Factors Two factors are

More information

Areas of Difficulty Requiring Help or Assistance in the Ejs User Interface

Areas of Difficulty Requiring Help or Assistance in the Ejs User Interface Areas of Difficulty Requiring Help or Assistance in the Ejs User Interface The following describes the basic Ejs UI behavior and areas needing help. It is necessary to understand a bit about the Ejs UI

More information

Parts List, Charging Chart, Wiring Diagrams

Parts List, Charging Chart, Wiring Diagrams Parts List, Charging Chart, Wiring Diagrams PHH150, PHH180 3 Phase PACKAGE HEAT PUMP UNITS TABLE OF CONTENTS PARTS LIST------------ 2-5 PARTS DRAWING - - - - - - -6-16 CHARGING CHARTS - - - - - - - 17

More information

Switching Circuits & Logic Design

Switching Circuits & Logic Design Switching Circuits & Logic Design Jie-Hong Roland Jiang 江介宏 Department of Electrical Engineering National Taiwan University Fall 23 5 Karnaugh Maps K-map Walks and Gray Codes http://asicdigitaldesign.wordpress.com/28/9/26/k-maps-walks-and-gray-codes/

More information

Trigonometric formulae

Trigonometric formulae 63 Topic 3 Trigonometric formulae Contents 3.1 Revision exercise................................... 64 3.2 Solving trigonometric equations graphically.................... 65 3.3 Solving trigonometric equations

More information

5.6notes November 13, Based on work from pages , complete In an isosceles triangle, the &

5.6notes November 13, Based on work from pages , complete In an isosceles triangle, the & chapter 5 Based on work from pages 178-179, complete In an isosceles triangle, the & & & drawn from the vertex angle of an isosceles triangle are the! 5.1 Indirect proof. G: DB AC F is the midpt. of AC

More information

pd 3notes 5.4 November 09, 2016 Based on work from pages , complete In an isosceles triangle, the &

pd 3notes 5.4 November 09, 2016 Based on work from pages , complete In an isosceles triangle, the & chapter 5 Based on work from pages 178-179, complete In an isosceles triangle, the & & & drawn from the vertex angle of an isosceles triangle are the! 5.1 Indirect proof. G: DB AC F is the midpt. of AC

More information

Skills Practice Skills Practice for Lesson 6.1

Skills Practice Skills Practice for Lesson 6.1 Skills Practice Skills Practice for Lesson.1 Name Date Quilting and Tessellations Introduction to Quadrilaterals Vocabulary Write the term that best completes each statement. 1. A quadrilateral with all

More information

Name Class Date. Find corresponding parts using the order of the letters in the names.

Name Class Date. Find corresponding parts using the order of the letters in the names. 4-1 Reteaching Congruent Figures Given ABCD QRST, find corresponding parts using the names. Order matters. For example, This shows that A corresponds to Q. Therefore, A Q. For example, This shows that

More information

CSC 328/428 Summer Session I 2002 Data Analysis for the Experimenter FINAL EXAM

CSC 328/428 Summer Session I 2002 Data Analysis for the Experimenter FINAL EXAM options pagesize=53 linesize=76 pageno=1 nodate; proc format; value $stcktyp "1"="Growth" "2"="Combined" "3"="Income"; data invstmnt; input stcktyp $ perform; label stkctyp="type of Stock" perform="overall

More information

Segments Proofs Reference

Segments Proofs Reference Segments Proofs Reference Properties of Equality Addition Property Subtraction Property Multiplication Property Division Property Distributive Property Reflexive Property The properties above may only

More information

Coordinate Graphing/Geometry Project

Coordinate Graphing/Geometry Project Coordinate Graphing/Geometry Project Purpose: The following activities allow students to demonstrate their understanding of the coordinate system as well as learn various geometry projects. Goals: This

More information

UYM-UOM-UOY-UOD- UOS-UOB-UOR

UYM-UOM-UOY-UOD- UOS-UOB-UOR UY-UO-UOY-UOD- UOS-UOB-UOR Indexable date stamps at.: Acier inoxydable 5-55 HRC :15 Remove inner insert from the outer insert using a screwdriver REF* REF REF REF REF REF REF D F 1 UY 4/2* UO 4 UOY 4/2*

More information

Chapter 3. Proving Statements in Geometry

Chapter 3. Proving Statements in Geometry 3- Inductive Reasoning (pages 95 97). No; triangles may contain a right or obtuse 2. Answers will vary. Example: 3 5 2 3. a. Answers will vary. b. 90 c. The sum of the measures of the acute angles of a

More information

Effectiveness of Freq Pat Mining

Effectiveness of Freq Pat Mining Effectiveness of Freq Pat Mining Too many patterns! A pattern a 1 a 2 a n contains 2 n -1 subpatterns Understanding many patterns is difficult or even impossible for human users Non-focused mining A manager

More information

Chapter 2 Diagnostic Test

Chapter 2 Diagnostic Test Chapter Diagnostic Test STUDENT BOOK PAGES 68 7. Calculate each unknown side length. Round to two decimal places, if necessary. a) b). Solve each equation. Round to one decimal place, if necessary. a)

More information

IT 201 Digital System Design Module II Notes

IT 201 Digital System Design Module II Notes IT 201 Digital System Design Module II Notes BOOLEAN OPERATIONS AND EXPRESSIONS Variable, complement, and literal are terms used in Boolean algebra. A variable is a symbol used to represent a logical quantity.

More information

CPSC 230 Extra review and solutions

CPSC 230 Extra review and solutions Extra review questions: the following questions are meant to provide you with some extra practice so you need to actually try them on your own to get anything out of it. For that reason, solutions won't

More information

Subset Selection in Multiple Regression

Subset Selection in Multiple Regression Chapter 307 Subset Selection in Multiple Regression Introduction Multiple regression analysis is documented in Chapter 305 Multiple Regression, so that information will not be repeated here. Refer to that

More information

4-1 Classifying Triangles

4-1 Classifying Triangles 4-1 Classifying Triangles Warm Up Lesson Presentation Lesson Quiz Warm Up Classify each angle as acute, obtuse, or right. 1. right 2. acute 3. obtuse 4. If the perimeter is 47, find x and the lengths of

More information

EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY

EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY EXAMINATIONS OF THE ROYAL STATISTICAL SOCIETY GRADUATE DIPLOMA, 2015 MODULE 4 : Modelling experimental data Time allowed: Three hours Candidates should answer FIVE questions. All questions carry equal

More information

Building Blocks of Geometry

Building Blocks of Geometry Practice A Building Blocks of Geometry Name each geometric figure. 1. 2. 3. 4. 5. 6. Use the diagram to choose the correct answer. 7. Which of the following does not name a line on the diagram? A Line

More information

A B AB CD Objectives:

A B AB CD Objectives: Objectives:. Four variables maps. 2. Simplification using prime implicants. 3. "on t care" conditions. 4. Summary.. Four variables Karnaugh maps Minterms A A m m m3 m2 A B C m4 C A B C m2 m8 C C m5 C m3

More information

STAT 5200 Handout #25. R-Square & Design Matrix in Mixed Models

STAT 5200 Handout #25. R-Square & Design Matrix in Mixed Models STAT 5200 Handout #25 R-Square & Design Matrix in Mixed Models I. R-Square in Mixed Models (with Example from Handout #20): For mixed models, the concept of R 2 is a little complicated (and neither PROC

More information

4 KARNAUGH MAP MINIMIZATION

4 KARNAUGH MAP MINIMIZATION 4 KARNAUGH MAP MINIMIZATION A Karnaugh map provides a systematic method for simplifying Boolean expressions and, if properly used, will produce the simplest SOP or POS expression possible, known as the

More information

Area. Lesson 6.1 Finding the Area of a Rectangle with Fractional Side Lengths = = 9 20 in.2 The area of the rectangle is 9 square inches.

Area. Lesson 6.1 Finding the Area of a Rectangle with Fractional Side Lengths = = 9 20 in.2 The area of the rectangle is 9 square inches. Nae: Date: Chapter Area Practice 1 Finding the Area of a Rectangle with Fractional Side Lengths Find the area of each rectangle. Exaple A = length width 1. _ 3 in. _ 3 4 _ 3 in. A = 3 4 3 = 9 20 in.2 The

More information

CUTTING EXPERIMENTAL DESIGNS INTO BLOCKS. Nam-Ky Nguyen 1. Design Computing. Summary

CUTTING EXPERIMENTAL DESIGNS INTO BLOCKS. Nam-Ky Nguyen 1. Design Computing. Summary Aust. N. Z. J. Stat. 43(3), 2001, 367 374 CUTTING EXPERIMENTAL DESIGNS INTO BLOCKS Nam-Ky Nguyen 1 Design Computing Summary Most experimental material in agriculture and industry is heterogeneous in nature

More information

Reteach. Understanding Points, Lines, and Planes. P point P

Reteach. Understanding Points, Lines, and Planes. P point P Name Date Class 1-1 Understanding Points, Lines, and Planes A point has no size. It is named using a capital letter. All the figures below contain points. line Figure Characteristics Diagram Words and

More information

Transactions in Euclidean Geometry

Transactions in Euclidean Geometry Transactions in Euclidean Geometry Volume 207F Issue # 8 Table of Contents Title Author Regular Triangles Cameron Hertzler Regular Pentagon Cameron Hertzler Hemispheres and Right Angles Cameron Hertzler

More information

Understanding Elementary Shapes

Understanding Elementary Shapes .I Understanding Elementary Shapes Learn and Remember. A line segment is a portion of a line. If A and B are two points in a plane, the partab of the line through A and B is called a line segment AB. The

More information