Constructing SAS Contrast/Estimate Statements S. R. Bowley, University of Guelph 2013

Size: px
Start display at page:

Download "Constructing SAS Contrast/Estimate Statements S. R. Bowley, University of Guelph 2013"

Transcription

1 onstructing SS ontrast/estimate Statements S. R. owley, University of Guelph 2013 The coefficients for contrast/estimate statements for single factors are easily created. oefficients for contrasts involving interaction means of two or three factors are more complex to construct. The following will guide you through the process of designing statements suitable for interaction means. Step 1. Identify the order of levels within each factor. This will either be alphanumeric or in order of first occurrence in the datafile if order=data is specified. Either review the order of levels given in the first page of the Proc Mixed/GLM output or request the lsmeans the order listed is the order of levels within each factor. Step 2. Identify the order of factors. This is specified by the order they are listed in the class statement. If you have three factors,,, and, and the class statement is: class ; then for interactions, the ** interaction means will be arranged as. If instead you have them listed as class, then the ** means will be arranged as. Step 3. Identify the specific means, or group of means, you want to contrast. ssume you have an experiment with Factor with two levels (a1 & a2), Factor with three levels (b1, b2, & b3) and Factor with four levels (c1, c2, c3, & c4). Factors a1 a2 b1 b2 b3 c1 c2 c3 c4 The following examples assume the class statement specifies the order of factors to be --: class ; I. EXMPLE 1. ontrast of two means. ontrast of the mean of b1 vs the mean of b2 (averaged over all levels of & ). estimate ' b1 vs b2' 1-1 0; The sum of the coefficients must be zero. If more means are involved, decimal coefficients, or use the /divisor=n option to use whole numbers and avoid messy decimals. Recommended practice: dd the option e to the estimate statement. This will list the model effects & their levels, and the coefficients applied to each level (called the L matrix). You can use this matrix to double-check you have the coefficients correctly specified. estimate ' b1 vs b2' / e ; Page 1 of 10

2 II. EXMPLE 2. ontrast of two means at a set value of another factor. ontrast of the mean of b1 vs the mean of b2 when the level of is a1. i) reate a table with the levels of as rows and the levels of as columns. eside/below these, enter the coefficients associated with the omparison of interest. In this case it is b1 vs b2 (1-1 0), and for when the level of is a1 (1 0). a1 1 a2 0 b1 b2 b ii) Multiply the coefficients in each row-column combination and enter the value in the respective cell in the centre of the table. b1 b2 b a a iii) ompute the total across each rows and within each column of the cells computed in step ii). lso compute the grand total. b1 b2 b a a The coefficients can be obtained from the above table. 1. The intercept value is the grand total. In this case it is 0, so the intercept drops out of the computation. 2. The row totals (shaded) give the coefficients for the factor. In this case they are all 0 so the factor drops out of the computation. 3. The column totals (shaded) give the coefficients for the factor. In this case they are The computed cells are the coefficients for the x factor; these are in bold. Note that you collate the coefficients by reading across each row. In this case, the x interaction coefficients are The estimate (or contrast) statement for comparing the mean of b1 vs mean of b2 when the level of is a1 would be specified as: estimate ' b1 vs b2 when =a1' * ; Page 2 of 10

3 III. EXMPLE 3. ontrast of two means at a set value of two other factors. ontrast of the mean of b1 vs the mean of b2 when the level of is a1 and the level of is c1. With three factors, there are eight possible terms that may be involved in specifying an estimate/contrast statement; namely, the intercept,,,, x, x, x, and xx interactions. i) With three factors, this will involve main, two-factor, and three-factor interaction coefficients. egin by creating a table with the levels of as rows and the levels of as columns. ontinue as for Example 2 to obtain the coefficients for the x interaction. However, don t bother summing the rows and columns in this step. b1 b2 b a a ii) Now create a table of the x interaction coefficients against (x against ). a1 b1 1 b2-1 b3 0 a2 b1 0 b2 0 b iii) Multiply the coefficients in each row-column combination and enter the value in the respective cell in the centre of the table a1 b b b a2 b b b iv) dd across the rows and along the columns of the cells computed in step iii). lso compute the grand total. Page 3 of 10

4 a1 b b b a2 b b b This table gives the coefficients for the xx interaction, the x interaction (last column), the factor (last row), and the intercept (grand total). For this example, the xx interaction coefficients are the x interaction coefficients are and the factor and the intercept drop out. However, for a three-factor, there are two additional tables to compute: x against and x against. x against. i) Obtain the x coefficients: a a ii) Obtain the x against coefficients: b1 b2 b a1 c c c c a2 c c c c This table gives the coefficients for the x interaction (last column) and the factor. In this example, the x interaction drops out, the factor remains with coefficients Page 4 of 10

5 x against. i) Obtain the x coefficients: b b b ii) Obtain the x against coefficients: a1 a2 1 0 b1 c c c c b2 c c c c b3 c c c c This table gives the coefficients for the x interaction (last column) and the factor. In this example, the factor drops out, the x interaction remains with coefficients ombining the information from the xx, and the x against, and x against tables, the intercept,,, & x terms drop out. The estimate statement requires coefficients for, x, x, and xx. The estimate (or contrast) statement for comparing the mean of b1 vs mean of b2 when the level of is a1 and the level of is c1 would be specified as: estimate ' b1 vs b2 when =a1 & =c1' * * ** ; [Note: The trailing zeros can be dropped in the above coefficients.] Similar estimates statements for other levels can also be generated by shifting the 1 & -1 to the appropriate location within the sequence. For example, if factor was time, the comparison at at time=4 (the endpoint) would be: estimate ' b1 vs b2 when =a1 & =c4' * * ** ; Page 5 of 10

6 IV. EXMPLE 4. ontrast of means involving nested factors. ssume you have an experiment with Factor with three levels (a1, a2 & a3), Factor is nested within and has two levels (b1, b2) in level a1 of, three levels (b3, b4, b5) in level a2 of, and two levels (b6, b7) in level a3 of. The model statement would be: model y= (); Factors a1 b1, b2, a2 a3 b3, b4, b5 b6, b7 Example 4a: ontrast of the mean of b1 within a1 vs the mean of b2 within a1. i) egin by creating an x matrix and cross out the factor combinations that do not exist. a1 a2 a3 () ii) Enter the factor combinations you wish to contrast. () a1 1-1 a a3 0 0 iii) Total the rows and columns. () a a a The total of the rows are the coefficients for the factor, the total of the columns are the coefficients for the () factor. In this example, the coefficients for are zero so it does not need to be specified. The estimate (or contrast) statement for comparing the mean of b1 vs mean of b2 when the level of is a1 would be specified as: estimate ' b1(a1) vs b2(a1)' () ; Page 6 of 10

7 Example 4b: ontrast of the mean of b1 within a1 vs the mean of b6 and b7 within a3. i) egin by creating an x matrix and cross out the factor combinations that do not exist. a1 a2 a3 () ii) Enter the factor combinations you wish to contrast. () a1 2 0 a a iii) Total the rows and columns. () a a a The total of the rows are the coefficients for the factor, the total of the columns are the coefficients for the () factor. The estimate statement for comparing the mean of b1 within a1 vs the mean of b6 & b7 within a3 would be specified as: estimate ' b1(a1) vs b6 & b7(a3)' () / divisor=2 ; The contrast statement would be specified as : contrast ' b1(a1) vs b6 & b7(a3)' () ; Page 7 of 10

8 Similarly, if you wanted to calculate the best linear unbiased estimate (LUE) of the mean of factors b6 & b7 within a3, the completed matrix and totals would be: () a a a The estimate statement for computing the mean of b6 & b7 within a3 would be specified as: estimate ' mean of b6 & b7(a3)' intercept () / divisor=2 ; V. EXMPLE 5. Subdividing factors and interactions into regression forms. ssume you have an experiment with Factor with three levels (b1, b2 & b3) and Factor with four levels (c1, c2, c3, & c4). Factor is a quantitative variable such as a time or a chemical application rate. Hence, Factor and interactions with Factor can be subpartitioned into regression forms. Example 5a) omparison of regression responses for Factor. Since Factor is quantitative and has four levels, it can be divided into three orthogonal regression forms: linear, quadratic, and cubic. If the levels of are equally spaced, the coefficients in Table 6.1 in the text (owley 2008) can be used. If they were unequally spaced, then a Proc IML method (see Example 6.1 in owley 2008) would need to be used. For this example, we will assume the levels of c1, c2, c3, & c4 are equally spaced. The linear coefficients for would be and the quadratic coefficients for would be The contrast statements for the partition of Factor - linear and of -quadratic would be specified as : contrast ' Factor linear' ; contrast ' Factor quadratic' ; Example 5b) omparison of two levels of Factor for their difference in regression response. Factor has three levels, assume level b1 is a control and we wish to determine if level b3 has a different response (slope) over levels of compared to the control. gain, construct the x interaction matrix to compare b1 & b3 for their regression response over levels of. Here is the matrix to compare their linear response: b b b Page 8 of 10

9 nd sum across rows and columns: b b b The contrast statement for comparing the mean of b1 vs b3 for their linear response over levels of would be specified as: estimate ' b1 vs b3 x linear' * ; This contrast is a comparison of the slope of b1 to the slope of b3 for the linear regression over levels of. similar method can be used to compare their quadratic response. Example 5c) omparison of all levels of Factor for their difference in regression response. Factor has three levels and we wish to determine if the group has differences in response (slope) over levels of. In this case, we need to combine all possible pairs of the levels of Factor for their response. (b1 vs b2, b1 vs b3, and b2 vs b3). Obtain the coefficients for each of the possible pairs of the Factor levels. b1 vs b2 x Factor linear b b b b1 vs b3 x Factor linear b b b vs b2 x Factor linear b b b The contrast statement for comparing all Factor levels for their linear response over levels of would be specified as: estimate ' among x linear' * , * , * ; ommas are used to combine the sets into one pooled value. This contrast is a comparison of the slope of all levels of Factor for the linear regression over levels of. If this was significant, that would indicate that there were differences among the levels for their linear response (slope). One would need to apply the method in Example 5b to determine which pairs differed. similar method can be used to compare their quadratic form. Page 9 of 10

10 VI. LUP & Group option If you have specified a model with heterogeneity among groups using the group= option in a random statement and you are wanting to generate a LUP estimate involving the grouping variable, you will need to add the group option and the coefficients for it. Example, there are three treatments (trt) and two experiments (expt) and heterogeneity among the random experiments has been specified by group=expt. To compute the mean of the second treatment level, within the second experiment, the following statement could be used: estimate 'Mean trt 2 ' intercept 1 trt expt 0 1 trt*expt /e group 0 1; Page 10 of 10

Research Design - - Topic 13a Split Plot Design with Either a Continuous or Categorical Between Subjects Factor 2008 R.C. Gardner, Ph.D.

Research Design - - Topic 13a Split Plot Design with Either a Continuous or Categorical Between Subjects Factor 2008 R.C. Gardner, Ph.D. esearch Design - - Topic 3a Split Plot Design with Either a ontinuous or ategorical etween Subjects Factor 8.. Gardner Ph.D. General Description Example Purpose Two ategorical Factors Using Multiple egression

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

Polynomial and Synthetic Division

Polynomial and Synthetic Division Polynomial and Synthetic Division Polynomial Division Polynomial Division is very similar to long division. Example: 3x 3 5x 3x 10x 1 3 Polynomial Division 3x 1 x 3x 3 3 x 5x 3x x 6x 4 10x 10x 7 3 x 1

More information

Three Factor Completely Randomized Design with One Continuous Factor: Using SPSS GLM UNIVARIATE R. C. Gardner Department of Psychology

Three Factor Completely Randomized Design with One Continuous Factor: Using SPSS GLM UNIVARIATE R. C. Gardner Department of Psychology Data_Analysis.calm Three Factor Completely Randomized Design with One Continuous Factor: Using SPSS GLM UNIVARIATE R. C. Gardner Department of Psychology This article considers a three factor completely

More information

SOL Warm-Up Graphing Calculator Active

SOL Warm-Up Graphing Calculator Active A.2c (a) Factoring polynomials SOL Warm-Up 1. Which of the following represents 12x 2 + 6x + 3 in simplified form after factoring out the greatest common factor? A 12(x 2 + 2x + 4) B x(12x 2 + 6x + 3)

More information

3.3 Dividing Polynomials. Copyright Cengage Learning. All rights reserved.

3.3 Dividing Polynomials. Copyright Cengage Learning. All rights reserved. 3.3 Dividing Polynomials Copyright Cengage Learning. All rights reserved. Objectives Long Division of Polynomials Synthetic Division The Remainder and Factor Theorems 2 Dividing Polynomials In this section

More information

ALGEBRA 2 SUMMER WORK. June Dear Algebra 2 Students,

ALGEBRA 2 SUMMER WORK. June Dear Algebra 2 Students, ALGEBRA SUMMER WORK June 016 Dear Algebra Students, Below you will find the Summer Math Packet for Algebra. The purpose of this packet is to review and sharpen your Algebra 1 skills so that when we return

More information

Warm Up Lesson Presentation Lesson Quiz. Holt Algebra 2 2

Warm Up Lesson Presentation Lesson Quiz. Holt Algebra 2 2 6-5 Warm Up Lesson Presentation Lesson Quiz 2 Warm Up Factor completely. 1. 2y 3 + 4y 2 30y 2y(y 3)(y + 5) 2. 3x 4 6x 2 24 Solve each equation. 3(x 2)(x + 2)(x 2 + 2) 3. x 2 9 = 0 x = 3, 3 4. x 3 + 3x

More information

Describing the Relationship between Two Variables

Describing the Relationship between Two Variables 1 Describing the Relationship between Two Variables Key Definitions Scatter : A graph made to show the relationship between two different variables (each pair of x s and y s) measured from the same equation.

More information

Polynomial Form. Factored Form. Perfect Squares

Polynomial Form. Factored Form. Perfect Squares We ve seen how to solve quadratic equations (ax 2 + bx + c = 0) by factoring and by extracting square roots, but what if neither of those methods are an option? What do we do with a quadratic equation

More information

Mixed-effects Polynomial Regression Models chapter 5

Mixed-effects Polynomial Regression Models chapter 5 Mixed-effects Polynomial Regression Models chapter 5 1 Figure 5.1 Various curvilinear models: (a) decelerating positive slope; (b) accelerating positive slope; (c) decelerating negative slope; (d) accelerating

More information

Worksheet Topic 1 Order of operations, combining like terms 2 Solving linear equations 3 Finding slope between two points 4 Solving linear equations

Worksheet Topic 1 Order of operations, combining like terms 2 Solving linear equations 3 Finding slope between two points 4 Solving linear equations Worksheet Topic 1 Order of operations, combining like terms 2 Solving linear equations 3 Finding slope between two points 4 Solving linear equations 5 Multiplying binomials 6 Practice with exponents 7

More information

Passing-Bablok Regression for Method Comparison

Passing-Bablok Regression for Method Comparison Chapter 313 Passing-Bablok Regression for Method Comparison Introduction Passing-Bablok regression for method comparison is a robust, nonparametric method for fitting a straight line to two-dimensional

More information

(x + 1)(x 2) = 4. x

(x + 1)(x 2) = 4. x dvanced Integration Techniques: Partial Fractions The method of partial fractions can occasionally make it possible to find the integral of a quotient of rational functions. Partial fractions gives us

More information

Basic Business Statistics 6 th Edition

Basic Business Statistics 6 th Edition Basic Business Statistics 6 th Edition Chapter 12 Simple Linear Regression Learning Objectives In this chapter, you learn: How to use regression analysis to predict the value of a dependent variable based

More information

One-way between-subjects ANOVA. Comparing three or more independent means

One-way between-subjects ANOVA. Comparing three or more independent means One-way between-subjects ANOVA Comparing three or more independent means Data files SpiderBG.sav Attractiveness.sav Homework: sourcesofself-esteem.sav ANOVA: A Framework Understand the basic principles

More information

MIXED MODELS FOR REPEATED (LONGITUDINAL) DATA PART 2 DAVID C. HOWELL 4/1/2010

MIXED MODELS FOR REPEATED (LONGITUDINAL) DATA PART 2 DAVID C. HOWELL 4/1/2010 MIXED MODELS FOR REPEATED (LONGITUDINAL) DATA PART 2 DAVID C. HOWELL 4/1/2010 Part 1 of this document can be found at http://www.uvm.edu/~dhowell/methods/supplements/mixed Models for Repeated Measures1.pdf

More information

F-tests and Nested Models

F-tests and Nested Models F-tests and Nested Models Nested Models: A core concept in statistics is comparing nested s. Consider the Y = β 0 + β 1 x 1 + β 2 x 2 + ǫ. (1) The following reduced s are special cases (nested within)

More information

Econ 620. Matrix Differentiation. Let a and x are (k 1) vectors and A is an (k k) matrix. ) x. (a x) = a. x = a (x Ax) =(A + A (x Ax) x x =(A + A )

Econ 620. Matrix Differentiation. Let a and x are (k 1) vectors and A is an (k k) matrix. ) x. (a x) = a. x = a (x Ax) =(A + A (x Ax) x x =(A + A ) Econ 60 Matrix Differentiation Let a and x are k vectors and A is an k k matrix. a x a x = a = a x Ax =A + A x Ax x =A + A x Ax = xx A We don t want to prove the claim rigorously. But a x = k a i x i i=

More information

SOLUTIONS FOR PROBLEMS 1-30

SOLUTIONS FOR PROBLEMS 1-30 . Answer: 5 Evaluate x x + 9 for x SOLUTIONS FOR PROBLEMS - 0 When substituting x in x be sure to do the exponent before the multiplication by to get (). + 9 5 + When multiplying ( ) so that ( 7) ( ).

More information

Implementing contrasts using SAS Proc GLM is a relatively straightforward process. A SAS Proc GLM contrast statement has the following form:

Implementing contrasts using SAS Proc GLM is a relatively straightforward process. A SAS Proc GLM contrast statement has the following form: Contrasts for Comparison of Means If the analysis of variance produces a significant F-statistic, this signals the need for further analyses. The most common post ANOVA analysis is the comparison of means.

More information

Int Math 3 Midterm Review Handout (Modules 5-7)

Int Math 3 Midterm Review Handout (Modules 5-7) Int Math 3 Midterm Review Handout (Modules 5-7) 1 Graph f(x) = x and g(x) = 1 x 4. Then describe the transformation from the graph of f(x) = x to the graph 2 of g(x) = 1 2 x 4. The transformations are

More information

CHAPTER 1. FUNCTIONS 7

CHAPTER 1. FUNCTIONS 7 CHAPTER 1. FUNCTIONS 7 1.3.2 Polynomials A polynomial is a function P with a general form P (x) a 0 + a 1 x + a 2 x 2 + + a n x n, (1.4) where the coe cients a i (i 0, 1,...,n) are numbers and n is a non-negative

More information

A monomial is measured by its degree To find its degree, we add up the exponents of all the variables of the monomial.

A monomial is measured by its degree To find its degree, we add up the exponents of all the variables of the monomial. UNIT 6 POLYNOMIALS Polynomial (Definition) A monomial or a sum of monomials. A monomial is measured by its degree To find its degree, we add up the exponents of all the variables of the monomial. Ex. 2

More information

Chapter 5 Contrasts for one-way ANOVA

Chapter 5 Contrasts for one-way ANOVA Chapter Contrasts for one-way NOV Page. What is a contrast? -. Types of contrasts -. Significance tests of a single contrast -0. Brand name contrasts -. Relationships between the omnibus F and contrasts

More information

Grade 11/12 Math Circles Elliptic Curves Dr. Carmen Bruni November 4, 2015

Grade 11/12 Math Circles Elliptic Curves Dr. Carmen Bruni November 4, 2015 Faculty of Mathematics Waterloo, Ontario N2L 3G1 Centre for Education in Mathematics and Computing Grade 11/12 Math Circles Elliptic Curves Dr. Carmen Bruni November 4, 2015 Revisit the Congruent Number

More information

In a previous lesson, we solved certain quadratic equations by taking the square root of both sides of the equation.

In a previous lesson, we solved certain quadratic equations by taking the square root of both sides of the equation. In a previous lesson, we solved certain quadratic equations by taking the square root of both sides of the equation. x = 36 (x 3) = 8 x = ± 36 x 3 = ± 8 x = ±6 x = 3 ± Taking the square root of both sides

More information

MESSY EXPERIMENTAL DESIGNS

MESSY EXPERIMENTAL DESIGNS nsas State University Libraries tistics in Agriculture 99 - rd Annual Conference roceedings MESSY EXERIMENTAL DESIGNS Dallas E. Johnson ollow this and additional works at: http://newprairiepress.org/agstatconference

More information

ALLEN PARK HIGH SCHOOL S u m m er A s s e s s m e n t

ALLEN PARK HIGH SCHOOL S u m m er A s s e s s m e n t ALLEN PARK HIGH SCHOOL S u m m er A s s e s s m e n t F o r S t u d e n t s E n t e r i n g A l g e b r a Allen Park High School Summer Assignment Algebra Show all work for all problems on a separate sheet

More information

Polynomial Form. Factored Form. Perfect Squares

Polynomial Form. Factored Form. Perfect Squares We ve seen how to solve quadratic equations (ax 2 + bx + c = 0) by factoring and by extracting square roots, but what if neither of those methods are an option? What do we do with a quadratic equation

More information

Chapter 5: Systems of Equations and Inequalities. Section 5.4. Check Point Exercises

Chapter 5: Systems of Equations and Inequalities. Section 5.4. Check Point Exercises Chapter : Systems of Equations and Inequalities Section. Check Point Eercises. = y y = Solve the first equation for y. y = + Substitute the epression + for y in the second equation and solve for. ( + )

More information

12/31/2010. Overview. 05-Boolean Algebra Part 3 Text: Unit 3, 7. DeMorgan s Law. Example. Example. DeMorgan s Law

12/31/2010. Overview. 05-Boolean Algebra Part 3 Text: Unit 3, 7. DeMorgan s Law. Example. Example. DeMorgan s Law Overview 05-oolean lgebra Part 3 Text: Unit 3, 7 EEGR/ISS 201 Digital Operations and omputations Winter 2011 DeMorgan s Laws lgebraic Simplifications Exclusive-OR and Equivalence Functionally omplete NND-NOR

More information

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120

Course Number 432/433 Title Algebra II (A & B) H Grade # of Days 120 Whitman-Hanson Regional High School provides all students with a high- quality education in order to develop reflective, concerned citizens and contributing members of the global community. Course Number

More information

Algebra I Review **You may use a calculator throughout the review with the exception of Part A and Part B.

Algebra I Review **You may use a calculator throughout the review with the exception of Part A and Part B. Algebra I Review **You may use a calculator throughout the review with the exception of Part A and Part B. Part A Find the value of each expression below No calculator! 1) ( 7) ) 7 3) 4 1 8 6 3 4 4) 459

More information

California Subject Examinations for Teachers

California Subject Examinations for Teachers California Subject Examinations for Teachers TEST GUIDE MATHEMATICS SUBTEST I Sample Questions and Responses and Scoring Information Copyright 204 Pearson Education, Inc. or its affiliate(s). All rights

More information

Elliptic Curves. Dr. Carmen Bruni. November 4th, University of Waterloo

Elliptic Curves. Dr. Carmen Bruni. November 4th, University of Waterloo University of Waterloo November 4th, 2015 Revisit the Congruent Number Problem Congruent Number Problem Determine which positive integers N can be expressed as the area of a right angled triangle with

More information

Intermediate Algebra Summary - Part I

Intermediate Algebra Summary - Part I Intermediate Algebra Summary - Part I This is an overview of the key ideas we have discussed during the first part of this course. You may find this summary useful as a study aid, but remember that the

More information

Answers to Sample Exam Problems

Answers to Sample Exam Problems Math Answers to Sample Exam Problems () Find the absolute value, reciprocal, opposite of a if a = 9; a = ; Absolute value: 9 = 9; = ; Reciprocal: 9 ; ; Opposite: 9; () Commutative law; Associative law;

More information

MATHEMATICS SCHOOL-BASED ASSESSMENT EXEMPLARS CAPS GRADE 12 LEARNER GUIDE

MATHEMATICS SCHOOL-BASED ASSESSMENT EXEMPLARS CAPS GRADE 12 LEARNER GUIDE MATHEMATICS SCHOOL-BASED ASSESSMENT EXEMPLARS CAPS GRADE 12 LEARNER GUIDE MATHEMATICS SCHOOL-BASED ASSESSMENT EXEMPLARS CAPS GRADE 12 LEARNER GUIDE 1 Contents 1. ASSIGNMENT 4 Sequences and series 2. INVESTIGATION

More information

Basic Fraction and Integer Operations (No calculators please!)

Basic Fraction and Integer Operations (No calculators please!) P1 Summer Math Review Packet For Students entering Geometry The problems in this packet are designed to help you review topics from previous mathematics courses that are important to your success in Geometry.

More information

More Polynomial Equations Section 6.4

More Polynomial Equations Section 6.4 MATH 11009: More Polynomial Equations Section 6.4 Dividend: The number or expression you are dividing into. Divisor: The number or expression you are dividing by. Synthetic division: Synthetic division

More information

MHF4U Unit 2 Polynomial Equation and Inequalities

MHF4U Unit 2 Polynomial Equation and Inequalities MHF4U Unit 2 Polynomial Equation and Inequalities Section Pages Questions Prereq Skills 82-83 # 1ac, 2ace, 3adf, 4, 5, 6ace, 7ac, 8ace, 9ac 2.1 91 93 #1, 2, 3bdf, 4ac, 5, 6, 7ab, 8c, 9ad, 10, 12, 15a,

More information

Mean Comparisons PLANNED F TESTS

Mean Comparisons PLANNED F TESTS Mean Comparisons F-tests provide information on significance of treatment effects, but no information on what the treatment effects are. Comparisons of treatment means provide information on what the treatment

More information

Topic 17 - Single Factor Analysis of Variance. Outline. One-way ANOVA. The Data / Notation. One way ANOVA Cell means model Factor effects model

Topic 17 - Single Factor Analysis of Variance. Outline. One-way ANOVA. The Data / Notation. One way ANOVA Cell means model Factor effects model Topic 17 - Single Factor Analysis of Variance - Fall 2013 One way ANOVA Cell means model Factor effects model Outline Topic 17 2 One-way ANOVA Response variable Y is continuous Explanatory variable is

More information

Statistics Univariate Linear Models Gary W. Oehlert School of Statistics 313B Ford Hall

Statistics Univariate Linear Models Gary W. Oehlert School of Statistics 313B Ford Hall Statistics 5401 14. Univariate Linear Models Gary W. Oehlert School of Statistics 313B ord Hall 612-625-1557 gary@stat.umn.edu Linear models relate a target or response or dependent variable to known predictor

More information

Math 1 Unit 1 EOC Review

Math 1 Unit 1 EOC Review Math 1 Unit 1 EOC Review Solving Equations (including Literal Equations) - Get the variable to show what it equals to satisfy the equation or inequality - Steps (each step only where necessary): 1. Distribute

More information

Appendix A. Common Mathematical Operations in Chemistry

Appendix A. Common Mathematical Operations in Chemistry Appendix A Common Mathematical Operations in Chemistry In addition to basic arithmetic and algebra, four mathematical operations are used frequently in general chemistry: manipulating logarithms, using

More information

PRACTICE TEST ANSWER KEY & SCORING GUIDELINES GRADE 8 MATHEMATICS

PRACTICE TEST ANSWER KEY & SCORING GUIDELINES GRADE 8 MATHEMATICS Ohio s State Tests PRACTICE TEST ANSWER KEY & SCORING GUIDELINES GRADE 8 MATHEMATICS Table of Contents Questions 1 25: Content Summary and Answer Key... iii Question 1: Question and Scoring Guidelines...

More information

Quadratic Formula: - another method for solving quadratic equations (ax 2 + bx + c = 0)

Quadratic Formula: - another method for solving quadratic equations (ax 2 + bx + c = 0) In the previous lesson we showed how to solve quadratic equations that were not factorable and were not perfect squares by making perfect square trinomials using a process called completing the square.

More information

T-test: means of Spock's judge versus all other judges 1 12:10 Wednesday, January 5, judge1 N Mean Std Dev Std Err Minimum Maximum

T-test: means of Spock's judge versus all other judges 1 12:10 Wednesday, January 5, judge1 N Mean Std Dev Std Err Minimum Maximum T-test: means of Spock's judge versus all other judges 1 The TTEST Procedure Variable: pcwomen judge1 N Mean Std Dev Std Err Minimum Maximum OTHER 37 29.4919 7.4308 1.2216 16.5000 48.9000 SPOCKS 9 14.6222

More information

Polynomial Functions and Models

Polynomial Functions and Models 1 CA-Fall 2011-Jordan College Algebra, 4 th edition, Beecher/Penna/Bittinger, Pearson/Addison Wesley, 2012 Chapter 4: Polynomial Functions and Rational Functions Section 4.1 Polynomial Functions and Models

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

Statistics for Managers using Microsoft Excel 6 th Edition

Statistics for Managers using Microsoft Excel 6 th Edition Statistics for Managers using Microsoft Excel 6 th Edition Chapter 13 Simple Linear Regression 13-1 Learning Objectives In this chapter, you learn: How to use regression analysis to predict the value of

More information

Lesson 7.1 Polynomial Degree and Finite Differences

Lesson 7.1 Polynomial Degree and Finite Differences Lesson 7.1 Polynomial Degree and Finite Differences 1. Identify the degree of each polynomial. a. 3x 4 2x 3 3x 2 x 7 b. x 1 c. 0.2x 1.x 2 3.2x 3 d. 20 16x 2 20x e. x x 2 x 3 x 4 x f. x 2 6x 2x 6 3x 4 8

More information

SEQUENCES M.K. HOME TUITION. Mathematics Revision Guides Level: GCSE Higher Tier

SEQUENCES M.K. HOME TUITION. Mathematics Revision Guides Level: GCSE Higher Tier Mathematics Revision Guides Sequences Page 1 of 12 M.K. HOME TUITION Mathematics Revision Guides Level: GCSE Higher Tier SEQUENCES Version: 3.1 Date: 11-02-2019 Mathematics Revision Guides Sequences Page

More information

Math 0409 Practice Test 2. Name. SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question.

Math 0409 Practice Test 2. Name. SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Math 0409 Practice Test 2 Name SHORT ANSWER. Write the word or phrase that best completes each statement or answers the question. Evaluate the polynomial. 1) x 2 + 3y 2 + 2xy for x = 6 and y = 2 1) Determine

More information

Algebra Review. Finding Zeros (Roots) of Quadratics, Cubics, and Quartics. Kasten, Algebra 2. Algebra Review

Algebra Review. Finding Zeros (Roots) of Quadratics, Cubics, and Quartics. Kasten, Algebra 2. Algebra Review Kasten, Algebra 2 Finding Zeros (Roots) of Quadratics, Cubics, and Quartics A zero of a polynomial equation is the value of the independent variable (typically x) that, when plugged-in to the equation,

More information

1. (Problem 3.4 in OLRT)

1. (Problem 3.4 in OLRT) STAT:5201 Homework 5 Solutions 1. (Problem 3.4 in OLRT) The relationship of the untransformed data is shown below. There does appear to be a decrease in adenine with increased caffeine intake. This is

More information

Q 1 Find the square root of 729. 6. Squares and Square Roots Q 2 Fill in the blank using the given pattern. 7 2 = 49 67 2 = 4489 667 2 = 444889 6667 2 = Q 3 Without adding find the sum of 1 + 3 + 5 + 7

More information

SNAP Centre Workshop. Solving Systems of Equations

SNAP Centre Workshop. Solving Systems of Equations SNAP Centre Workshop Solving Systems of Equations 35 Introduction When presented with an equation containing one variable, finding a solution is usually done using basic algebraic manipulation. Example

More information

Investigation Find the area of the triangle. (See student text.)

Investigation Find the area of the triangle. (See student text.) Selected ACE: Looking For Pythagoras Investigation 1: #20, #32. Investigation 2: #18, #38, #42. Investigation 3: #8, #14, #18. Investigation 4: #12, #15, #23. ACE Problem Investigation 1 20. Find the area

More information

Multiplying a Polynomial by a Monomial

Multiplying a Polynomial by a Monomial Lesson -3 Multiplying a Polynomial by a Monomial Lesson -3 BIG IDEA To multiply a polynomial by a monomial, multiply each term of the polynomial by the monomial and add the products. In earlier chapters,

More information

N-Q.2. Define appropriate quantities for the purpose of descriptive modeling.

N-Q.2. Define appropriate quantities for the purpose of descriptive modeling. Radnor High School Course Syllabus Revised 9/1/2011 Algebra 1 0416 Credits: 1.0 Grades: 9 Weighted: no Prerequisite: teacher recommendation Length: full year Format meets daily Overall Description of Course

More information

South Brunswick Schools

South Brunswick Schools South Brunswick Schools Summer Packet For Rising Honors Algebra students Directions: All students entering Honors Algebra are expected to be proficient in all their previously-learned algebra and geometry

More information

Algebra 1 Seamless Curriculum Guide

Algebra 1 Seamless Curriculum Guide QUALITY STANDARD #1: REAL NUMBERS AND THEIR PROPERTIES 1.1 The student will understand the properties of real numbers. o Identify the subsets of real numbers o Addition- commutative, associative, identity,

More information

GUIDED NOTES 2.2 LINEAR EQUATIONS IN ONE VARIABLE

GUIDED NOTES 2.2 LINEAR EQUATIONS IN ONE VARIABLE GUIDED NOTES 2.2 LINEAR EQUATIONS IN ONE VARIABLE LEARNING OBJECTIVES In this section, you will: Solve equations in one variable algebraically. Solve a rational equation. Find a linear equation. Given

More information

Math 096--Quadratic Formula page 1

Math 096--Quadratic Formula page 1 Math 096--Quadratic Formula page 1 A Quadratic Formula. Use the quadratic formula to solve quadratic equations ax + bx + c = 0 when the equations can t be factored. To use the quadratic formula, the equation

More information

OHS Algebra 2 Summer Packet

OHS Algebra 2 Summer Packet OHS Algebra 2 Summer Packet Good Luck to: Date Started: (please print student name here) Geometry Teacher s Name: Complete each of the following exercises in this formative assessment. To receive full

More information

CHAPTER 7 - FACTORIAL ANOVA

CHAPTER 7 - FACTORIAL ANOVA Between-S Designs Factorial 7-1 CHAPTER 7 - FACTORIAL ANOVA Introduction to Factorial Designs................................................. 2 A 2 x 2 Factorial Example.......................................................

More information

SAS/STAT 13.1 User s Guide. The Four Types of Estimable Functions

SAS/STAT 13.1 User s Guide. The Four Types of Estimable Functions SAS/STAT 13.1 User s Guide The Four Types of Estimable Functions This document is an individual chapter from SAS/STAT 13.1 User s Guide. The correct bibliographic citation for the complete manual is as

More information

Section 0.2 & 0.3 Worksheet. Types of Functions

Section 0.2 & 0.3 Worksheet. Types of Functions MATH 1142 NAME Section 0.2 & 0.3 Worksheet Types of Functions Now that we have discussed what functions are and some of their characteristics, we will explore different types of functions. Section 0.2

More information

Geometry of Transformations of Random Variables

Geometry of Transformations of Random Variables Geometry of Transformations of Random Variables Univariate distributions We are interested in the problem of finding the distribution of Y = h(x) when the transformation h is one-to-one so that there is

More information

Linear Combinations. Comparison of treatment means. Bruce A Craig. Department of Statistics Purdue University. STAT 514 Topic 6 1

Linear Combinations. Comparison of treatment means. Bruce A Craig. Department of Statistics Purdue University. STAT 514 Topic 6 1 Linear Combinations Comparison of treatment means Bruce A Craig Department of Statistics Purdue University STAT 514 Topic 6 1 Linear Combinations of Means y ij = µ + τ i + ǫ ij = µ i + ǫ ij Often study

More information

Polynomial Functions and Their Graphs

Polynomial Functions and Their Graphs Polynomial Functions and Their Graphs Definition of a Polynomial Function Let n be a nonnegative integer and let a n, a n- 1,, a 2, a 1, a 0, be real numbers with a n 0. The function defined by f (x) a

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

VIII. ANCOVA. A. Introduction

VIII. ANCOVA. A. Introduction VIII. ANCOVA A. Introduction In most experiments and observational studies, additional information on each experimental unit is available, information besides the factors under direct control or of interest.

More information

You try: What is the equation of the line on the graph below? What is the equation of the line on the graph below?

You try: What is the equation of the line on the graph below? What is the equation of the line on the graph below? 1 What is the equation of the line on the graph below? 2 3 1a What is the equation of the line on the graph below? y-intercept Solution: To write an equation in slope-intercept form, identify the slope

More information

Separate sum (may be implied) ( 1)(2 1) ( 1) 6 n n n n n A1,A1 1 mark for each part oe

Separate sum (may be implied) ( 1)(2 1) ( 1) 6 n n n n n A1,A1 1 mark for each part oe 4755 Mark Scheme June 04 n n n (i) (ii) 0 0 (iii) r( r ) r r Separate sum (may be implied) ( )( ) ( ) 6 n n n n n A,A mark for each part oe ( )[( ) 6] 6 n n n nn ( )(linear factor) ( )( 5) 6 n n n A Or

More information

Appendix. Using Your Calculator. Squares, Square Roots, Reciprocals, and Logs. Addition, Subtraction, Multiplication, and Division

Appendix. Using Your Calculator. Squares, Square Roots, Reciprocals, and Logs. Addition, Subtraction, Multiplication, and Division 370770_app.qxd 1/9/03 7:2 PM Page A1 mac114 Mac 114:2nd shift:4_rst: Using Your Calculator In this section we will review how to use your calculator to perform common mathematical operations. This discussion

More information

Polynomial and Rational Functions. Copyright Cengage Learning. All rights reserved.

Polynomial and Rational Functions. Copyright Cengage Learning. All rights reserved. 2 Polynomial and Rational Functions Copyright Cengage Learning. All rights reserved. 2.3 Real Zeros of Polynomial Functions Copyright Cengage Learning. All rights reserved. What You Should Learn Use long

More information

Algebra 2 Summer Work Packet

Algebra 2 Summer Work Packet Algebra Summer Work Packet Covering Prerequisite Concepts for Incoming Algebra 1 Students This workbook contains problems designed to ensure the student's readiness for Algebra. The nine topics covered

More information

Math 70 and 95 Master Syllabus Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS.

Math 70 and 95 Master Syllabus Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS. Math 70 and 95 Master Syllabus 2017-2018 Course Coordinator: Tammy Nezol (tnezol@uoregon.edu) Textbook and ALEKS: Beginning and Intermediate Algebra, 5th ed., Miller, O Neill, Hyde with ALEKS. We have

More information

As always, show your work and follow the HW format. You may use Excel, but must show sample calculations.

As always, show your work and follow the HW format. You may use Excel, but must show sample calculations. As always, show your work and follow the HW format. You may use Excel, but must show sample calculations. 1. Single Mean. A new roof truss is designed to hold more than 5000 pounds of snow load. You test

More information

Algebra 2 Segment 1 Lesson Summary Notes

Algebra 2 Segment 1 Lesson Summary Notes Algebra 2 Segment 1 Lesson Summary Notes For each lesson: Read through the LESSON SUMMARY which is located. Read and work through every page in the LESSON. Try each PRACTICE problem and write down the

More information

Sample questions for Fundamentals of Machine Learning 2018

Sample questions for Fundamentals of Machine Learning 2018 Sample questions for Fundamentals of Machine Learning 2018 Teacher: Mohammad Emtiyaz Khan A few important informations: In the final exam, no electronic devices are allowed except a calculator. Make sure

More information

Chapter 7: Exponents

Chapter 7: Exponents Chapter : Exponents Algebra Chapter Notes Name: Notes #: Sections.. Section.: Review Simplify; leave all answers in positive exponents:.) m -.) y -.) m 0.) -.) -.) - -.) (m ) 0.) 0 x y Evaluate if a =

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

Consistent and Dependent

Consistent and Dependent Graphing a System of Equations System of Equations: Consists of two equations. The solution to the system is an ordered pair that satisfies both equations. There are three methods to solving a system;

More information

Chapter One. Quadratics 20 HOURS. Introduction

Chapter One. Quadratics 20 HOURS. Introduction Chapter One Quadratics 0 HOURS Introduction Students will be introduced to the properties of arithmetic and power sequences. They will use common differences between successive terms in a sequence to identify

More information

Lecture 13 Extra Sums of Squares

Lecture 13 Extra Sums of Squares Lecture 13 Extra Sums of Squares STAT 512 Spring 2011 Background Reading KNNL: 7.1-7.4 13-1 Topic Overview Extra Sums of Squares (Defined) Using and Interpreting R 2 and Partial-R 2 Getting ESS and Partial-R

More information

USING THE QUADRATIC FORMULA and 9.1.3

USING THE QUADRATIC FORMULA and 9.1.3 Chapter 9 USING THE QUADRATIC FORMULA 9.1.2 and 9.1.3 When a quadratic equation is not factorable, another method is needed to solve for x. The Quadratic Formula can be used to calculate the roots of a

More information

Using Properties of Exponents

Using Properties of Exponents 6.1 Using Properties of Exponents Goals p Use properties of exponents to evaluate and simplify expressions involving powers. p Use exponents and scientific notation to solve real-life problems. VOCABULARY

More information

STAT 350: Geometry of Least Squares

STAT 350: Geometry of Least Squares The Geometry of Least Squares Mathematical Basics Inner / dot product: a and b column vectors a b = a T b = a i b i a b a T b = 0 Matrix Product: A is r s B is s t (AB) rt = s A rs B st Partitioned Matrices

More information

COUNCIL ROCK HIGH SCHOOL MATHEMATICS. A Note Guideline of Algebraic Concepts. Designed to assist students in A Summer Review of Algebra

COUNCIL ROCK HIGH SCHOOL MATHEMATICS. A Note Guideline of Algebraic Concepts. Designed to assist students in A Summer Review of Algebra COUNCIL ROCK HIGH SCHOOL MATHEMATICS A Note Guideline of Algebraic Concepts Designed to assist students in A Summer Review of Algebra [A teacher prepared compilation of the 7 Algebraic concepts deemed

More information

NORTH CAROLINA STATE UNIVERSITY Department of Chemistry. Physical Chemistry CH437 Problem Set #4 Due Date: September 22, 2015

NORTH CAROLINA STATE UNIVERSITY Department of Chemistry. Physical Chemistry CH437 Problem Set #4 Due Date: September 22, 2015 NORTH CAROLINA STATE UNIVERSITY Department of Chemistry Name Physical Chemistry CH437 Problem Set #4 Due Date: September 22, 2015 Using a Fourier Transform Infra-red (FTIR) spectrometer we can obtain sufficiently

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

Factorial ANOVA. STA305 Spring More than one categorical explanatory variable

Factorial ANOVA. STA305 Spring More than one categorical explanatory variable Factorial ANOVA STA305 Spring 2014 More than one categorical explanatory variable Optional Background Reading Chapter 7 of Data analysis with SAS 2 Factorial ANOVA More than one categorical explanatory

More information

Stats fest Analysis of variance. Single factor ANOVA. Aims. Single factor ANOVA. Data

Stats fest Analysis of variance. Single factor ANOVA. Aims. Single factor ANOVA. Data 1 Stats fest 2007 Analysis of variance murray.logan@sci.monash.edu.au Single factor ANOVA 2 Aims Description Investigate differences between population means Explanation How much of the variation in response

More information

Quantitative Techniques (Finance) 203. Polynomial Functions

Quantitative Techniques (Finance) 203. Polynomial Functions Quantitative Techniques (Finance) 03 Polynomial Functions Felix Chan October 006 Introduction This topic discusses the properties and the applications of polynomial functions, specifically, linear and

More information

Dose-Response Analysis Report

Dose-Response Analysis Report Contents Introduction... 1 Step 1 - Treatment Selection... 2 Step 2 - Data Column Selection... 2 Step 3 - Chemical Selection... 2 Step 4 - Rate Verification... 3 Step 5 - Sample Verification... 4 Step

More information