Chapter 7. Linear Regression (Pt. 1) 7.1 Introduction. 7.2 The Least-Squares Regression Line

Size: px
Start display at page:

Download "Chapter 7. Linear Regression (Pt. 1) 7.1 Introduction. 7.2 The Least-Squares Regression Line"

Transcription

1 Chapter 7 Linear Regression (Pt. 1) 7.1 Introduction Recall that r, the correlation coefficient, measures the linear association between two quantitative variables. Linear regression is the method of fitting a linear model to a scatterplot. As you already learned, r is closely related to this model, as it tells us both its strength and direction. 7.2 The Least-Squares Regression Line When given a scatterplot, there are many different lines you can draw through the data points. However, instead of using an arbitrary line to model our data, a more principled approach might be better. In many applications, people use the least-squares regression line (hereafter, regression line ) to model linear relationships in scatterplots. To find the regression line, we do some calculations (which we will go over later) and end up with a line of the form ŷ = f (x) = b 1 x + b 0 Recall from high school math that this equation is in slope-intercept form, where 1

2 b 1 is the slope of the line and b 0 is the y-intercept. Taken together, b 0 and b 1 are the parameters of our linear model. The following list is a summary of the properties of the regression line: 1. The regression line minimizes the sum of squared residuals between the line and the actual data. 2. The slope (b 1 ) of the line describes how the response (Y) variable changes with the predictor (X) variable. 3. For a given value of x (whether or not it appears in our data), we can get a prediction ŷ = f (x) for the response variable. Below is a scatterplot with its regression line drawn over the data. Stopping Distance of Cars Stopping Distance (feet) Speed (mph) 2

3 7.2.1 Residuals Suppose we have data {(x 1, y 1 ),..., (x N, y N )}, from which we derive the following regression model: ŷ = f (x) = b 1 x + b 0 The ith residual is the difference between the actual value of y i and the predicted value ŷ i = f (x i ). That is, res i = y i ŷ i = Real y Predicted y Sometimes, residuals are called errors as they represent the degree to which the model deviates from the data. As mentioned before, the least-squares line is intended to reduce the sum of the squared residuals between data and model. That is, we choose b 0 and b 1 so that the line f (x) = ŷ = b 1 x + b 0 minimizes Sum of squared residuals = N i=1 (y i ŷ i ) 2 Example (Looking at Residual Plots) The graphic below is the residual plot of the previous car example. The horizontal line represents points where the model s prediction is exactly the same as the data. Points below the line represent cases where the model overestimates the data. Points above the line represent cases where the model underestimates the data. The parameters of the model are b 1 = and b 0 = (think about these for a minute). The correlation coefficient is r =

4 Residual Plot of Cars Data Real Distance - Predicted Distance Speed 1. Suppose we have a car driving 33 mph. What is the model s prediction for its stopping distance? 2. Suppose we know that a car driving at 15 mph takes 45 feet to stop. Calculate the residual. 3. Suppose a car driving at 22 mph has residual of 11 feet. How long did it take to stop? 4

5 7.2.2 Interpreting Slope and Intercept Again, suppose we have the linear regression model ŷ = b 1 x + b 0 In general terms, we might interpret the model as follows: 1. For every 1 unit increase in x, y increases (or decreases) by b When x = 0, then y = b 0. This is a template for how you want to give your own interpretation. Remember to include the proper units when writing this interpretation. Note that sometimes, especially for the intercept, you will arrive at some absurd conclusions. Let us take a look at the next example. Example (Interpreting Slope and Intercept) New snowboarders (those who have snowboarded a year or less) often suffer from minor injuries. A random sample of seven new snowboarders produced the data on number of months snowboarding and number of minor injuries in the last month that they snowboarded. The linear regression equation: Minor Injuries = Months Snowboarding (r = ) 1. Identify the slope and write a one-sentence interpretation. 2. Identify the y-intercept and write a one-sentence interpretation. 5

6 3. If a new snowboarder has snowboarded for five (5) months, how many injuries would you predict s/he had in the last month snowboarding? 4. If a new snowboarder had 4 minor injuries having snowboarded for only 5 months, what is the residual for this amount of time? 7.3 Determining the Regression Line In this class, you will not be asked to compute the parameters of the regression line by hand. However, we give the formulas here to make some observation. ( ) sy b 1 = r b 0 = y b 1 x s x where, if you don t remember, r is the correlation coefficient, s x and s y are the sample standard deviations of x and y, respectively. Note that the correlation plays a role in creating the line. Also note that since the mean and standard deviation appear, the regression line is influenced by outliers, as those statistics are influenced by outliers. Also, note that, for most calculators, the coefficients of the regression line are also calculated when finding the correlation coefficient. 7.4 Preparation for the Quiz Practice Problems Chapter 8: 1, 5, 27, 33, 34, 38, 40 6

AMS 7 Correlation and Regression Lecture 8

AMS 7 Correlation and Regression Lecture 8 AMS 7 Correlation and Regression Lecture 8 Department of Applied Mathematics and Statistics, University of California, Santa Cruz Suumer 2014 1 / 18 Correlation pairs of continuous observations. Correlation

More information

Chapter 6: Exploring Data: Relationships Lesson Plan

Chapter 6: Exploring Data: Relationships Lesson Plan Chapter 6: Exploring Data: Relationships Lesson Plan For All Practical Purposes Displaying Relationships: Scatterplots Mathematical Literacy in Today s World, 9th ed. Making Predictions: Regression Line

More information

Chapter 8. Linear Regression. Copyright 2010 Pearson Education, Inc.

Chapter 8. Linear Regression. Copyright 2010 Pearson Education, Inc. Chapter 8 Linear Regression Copyright 2010 Pearson Education, Inc. Fat Versus Protein: An Example The following is a scatterplot of total fat versus protein for 30 items on the Burger King menu: Copyright

More information

HOLLOMAN S AP STATISTICS BVD CHAPTER 08, PAGE 1 OF 11. Figure 1 - Variation in the Response Variable

HOLLOMAN S AP STATISTICS BVD CHAPTER 08, PAGE 1 OF 11. Figure 1 - Variation in the Response Variable Chapter 08: Linear Regression There are lots of ways to model the relationships between variables. It is important that you not think that what we do is the way. There are many paths to the summit We are

More information

7.0 Lesson Plan. Regression. Residuals

7.0 Lesson Plan. Regression. Residuals 7.0 Lesson Plan Regression Residuals 1 7.1 More About Regression Recall the regression assumptions: 1. Each point (X i, Y i ) in the scatterplot satisfies: Y i = ax i + b + ɛ i where the ɛ i have a normal

More information

Statistical View of Least Squares

Statistical View of Least Squares May 23, 2006 Purpose of Regression Some Examples Least Squares Purpose of Regression Purpose of Regression Some Examples Least Squares Suppose we have two variables x and y Purpose of Regression Some Examples

More information

Chapter 12 Summarizing Bivariate Data Linear Regression and Correlation

Chapter 12 Summarizing Bivariate Data Linear Regression and Correlation Chapter 1 Summarizing Bivariate Data Linear Regression and Correlation This chapter introduces an important method for making inferences about a linear correlation (or relationship) between two variables,

More information

Chapter 27 Summary Inferences for Regression

Chapter 27 Summary Inferences for Regression Chapter 7 Summary Inferences for Regression What have we learned? We have now applied inference to regression models. Like in all inference situations, there are conditions that we must check. We can test

More information

1. Create a scatterplot of this data. 2. Find the correlation coefficient.

1. Create a scatterplot of this data. 2. Find the correlation coefficient. How Fast Foods Compare Company Entree Total Calories Fat (grams) McDonald s Big Mac 540 29 Filet o Fish 380 18 Burger King Whopper 670 40 Big Fish Sandwich 640 32 Wendy s Single Burger 470 21 1. Create

More information

appstats8.notebook October 11, 2016

appstats8.notebook October 11, 2016 Chapter 8 Linear Regression Objective: Students will construct and analyze a linear model for a given set of data. Fat Versus Protein: An Example pg 168 The following is a scatterplot of total fat versus

More information

Determine is the equation of the LSRL. Determine is the equation of the LSRL of Customers in line and seconds to check out.. Chapter 3, Section 2

Determine is the equation of the LSRL. Determine is the equation of the LSRL of Customers in line and seconds to check out.. Chapter 3, Section 2 3.2c Computer Output, Regression to the Mean, & AP Formulas Be sure you can locate: the slope, the y intercept and determine the equation of the LSRL. Slope is always in context and context is x value.

More information

Chapter 3: Describing Relationships

Chapter 3: Describing Relationships Chapter 3: Describing Relationships Section 3.2 The Practice of Statistics, 4 th edition For AP* STARNES, YATES, MOORE Chapter 3 Describing Relationships 3.1 Scatterplots and Correlation 3.2 Section 3.2

More information

Linear Regression. Linear Regression. Linear Regression. Did You Mean Association Or Correlation?

Linear Regression. Linear Regression. Linear Regression. Did You Mean Association Or Correlation? Did You Mean Association Or Correlation? AP Statistics Chapter 8 Be careful not to use the word correlation when you really mean association. Often times people will incorrectly use the word correlation

More information

appstats27.notebook April 06, 2017

appstats27.notebook April 06, 2017 Chapter 27 Objective Students will conduct inference on regression and analyze data to write a conclusion. Inferences for Regression An Example: Body Fat and Waist Size pg 634 Our chapter example revolves

More information

AP Statistics Bivariate Data Analysis Test Review. Multiple-Choice

AP Statistics Bivariate Data Analysis Test Review. Multiple-Choice Name Period AP Statistics Bivariate Data Analysis Test Review Multiple-Choice 1. The correlation coefficient measures: (a) Whether there is a relationship between two variables (b) The strength of the

More information

Chapter 8. Linear Regression. The Linear Model. Fat Versus Protein: An Example. The Linear Model (cont.) Residuals

Chapter 8. Linear Regression. The Linear Model. Fat Versus Protein: An Example. The Linear Model (cont.) Residuals Chapter 8 Linear Regression Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Slide 8-1 Copyright 2007 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Fat Versus

More information

Test 3A AP Statistics Name:

Test 3A AP Statistics Name: Test 3A AP Statistics Name: Part 1: Multiple Choice. Circle the letter corresponding to the best answer. 1. Other things being equal, larger automobile engines consume more fuel. You are planning an experiment

More information

AP Statistics Unit 6 Note Packet Linear Regression. Scatterplots and Correlation

AP Statistics Unit 6 Note Packet Linear Regression. Scatterplots and Correlation Scatterplots and Correlation Name Hr A scatterplot shows the relationship between two quantitative variables measured on the same individuals. variable (y) measures an outcome of a study variable (x) may

More information

Business Statistics. Lecture 9: Simple Regression

Business Statistics. Lecture 9: Simple Regression Business Statistics Lecture 9: Simple Regression 1 On to Model Building! Up to now, class was about descriptive and inferential statistics Numerical and graphical summaries of data Confidence intervals

More information

Inferences for Regression

Inferences for Regression Inferences for Regression An Example: Body Fat and Waist Size Looking at the relationship between % body fat and waist size (in inches). Here is a scatterplot of our data set: Remembering Regression In

More information

Chapter 3: Describing Relationships

Chapter 3: Describing Relationships Chapter 3: Describing Relationships Section 3.2 The Practice of Statistics, 4 th edition For AP* STARNES, YATES, MOORE Chapter 3 Describing Relationships 3.1 Scatterplots and Correlation 3.2 Section 3.2

More information

Math 243 OpenStax Chapter 12 Scatterplots and Linear Regression OpenIntro Section and

Math 243 OpenStax Chapter 12 Scatterplots and Linear Regression OpenIntro Section and Math 243 OpenStax Chapter 12 Scatterplots and Linear Regression OpenIntro Section 2.1.1 and 8.1-8.2.6 Overview Scatterplots Explanatory and Response Variables Describing Association The Regression Equation

More information

Data Analysis and Statistical Methods Statistics 651

Data Analysis and Statistical Methods Statistics 651 Data Analysis and Statistical Methods Statistics 651 http://www.stat.tamu.edu/~suhasini/teaching.html Lecture 31 (MWF) Review of test for independence and starting with linear regression Suhasini Subba

More information

6.2b Homework: Fit a Linear Model to Bivariate Data

6.2b Homework: Fit a Linear Model to Bivariate Data 6.2b Homework: Fit a Linear Model to Bivariate Data Directions: For the following problems, draw a line of best fit, write a prediction function, and use your function to make predictions. Prior to drawing

More information

INFERENCE FOR REGRESSION

INFERENCE FOR REGRESSION CHAPTER 3 INFERENCE FOR REGRESSION OVERVIEW In Chapter 5 of the textbook, we first encountered regression. The assumptions that describe the regression model we use in this chapter are the following. We

More information

Data Analysis and Statistical Methods Statistics 651

Data Analysis and Statistical Methods Statistics 651 y 1 2 3 4 5 6 7 x Data Analysis and Statistical Methods Statistics 651 http://www.stat.tamu.edu/~suhasini/teaching.html Lecture 32 Suhasini Subba Rao Previous lecture We are interested in whether a dependent

More information

GUIDED NOTES 4.1 LINEAR FUNCTIONS

GUIDED NOTES 4.1 LINEAR FUNCTIONS GUIDED NOTES 4.1 LINEAR FUNCTIONS LEARNING OBJECTIVES In this section, you will: Represent a linear function. Determine whether a linear function is increasing, decreasing, or constant. Interpret slope

More information

Outline. Lesson 3: Linear Functions. Objectives:

Outline. Lesson 3: Linear Functions. Objectives: Lesson 3: Linear Functions Objectives: Outline I can determine the dependent and independent variables in a linear function. I can read and interpret characteristics of linear functions including x- and

More information

Mrs. Poyner/Mr. Page Chapter 3 page 1

Mrs. Poyner/Mr. Page Chapter 3 page 1 Name: Date: Period: Chapter 2: Take Home TEST Bivariate Data Part 1: Multiple Choice. (2.5 points each) Hand write the letter corresponding to the best answer in space provided on page 6. 1. In a statistics

More information

Linear Regression Communication, skills, and understanding Calculator Use

Linear Regression Communication, skills, and understanding Calculator Use Linear Regression Communication, skills, and understanding Title, scale and label the horizontal and vertical axes Comment on the direction, shape (form), and strength of the relationship and unusual features

More information

Business Statistics. Lecture 10: Correlation and Linear Regression

Business Statistics. Lecture 10: Correlation and Linear Regression Business Statistics Lecture 10: Correlation and Linear Regression Scatterplot A scatterplot shows the relationship between two quantitative variables measured on the same individuals. It displays the Form

More information

********************************************************************************************************

******************************************************************************************************** QUESTION # 1 1. Let the random variable X represent the number of telephone lines in use by the technical support center of a software manufacturer at noon each day. The probability distribution of X is

More information

Math 122 Fall Handout 11: Summary of Euler s Method, Slope Fields and Symbolic Solutions of Differential Equations

Math 122 Fall Handout 11: Summary of Euler s Method, Slope Fields and Symbolic Solutions of Differential Equations 1 Math 122 Fall 2008 Handout 11: Summary of Euler s Method, Slope Fields and Symbolic Solutions of Differential Equations The purpose of this handout is to review the techniques that you will learn for

More information

MODELING. Simple Linear Regression. Want More Stats??? Crickets and Temperature. Crickets and Temperature 4/16/2015. Linear Model

MODELING. Simple Linear Regression. Want More Stats??? Crickets and Temperature. Crickets and Temperature 4/16/2015. Linear Model STAT 250 Dr. Kari Lock Morgan Simple Linear Regression SECTION 2.6 Least squares line Interpreting coefficients Cautions Want More Stats??? If you have enjoyed learning how to analyze data, and want to

More information

Scatterplots and Correlation

Scatterplots and Correlation Bivariate Data Page 1 Scatterplots and Correlation Essential Question: What is the correlation coefficient and what does it tell you? Most statistical studies examine data on more than one variable. Fortunately,

More information

Nonlinear Regression Section 3 Quadratic Modeling

Nonlinear Regression Section 3 Quadratic Modeling Nonlinear Regression Section 3 Quadratic Modeling Another type of non-linear function seen in scatterplots is the Quadratic function. Quadratic functions have a distinctive shape. Whereas the exponential

More information

Least Squares Regression

Least Squares Regression Least Squares Regression Sections 5.3 & 5.4 Cathy Poliak, Ph.D. cathy@math.uh.edu Office in Fleming 11c Department of Mathematics University of Houston Lecture 14-2311 Cathy Poliak, Ph.D. cathy@math.uh.edu

More information

CHAPTER 4 DESCRIPTIVE MEASURES IN REGRESSION AND CORRELATION

CHAPTER 4 DESCRIPTIVE MEASURES IN REGRESSION AND CORRELATION STP 226 ELEMENTARY STATISTICS CHAPTER 4 DESCRIPTIVE MEASURES IN REGRESSION AND CORRELATION Linear Regression and correlation allows us to examine the relationship between two or more quantitative variables.

More information

MATH 80S Residuals and LSR Models October 3, 2011

MATH 80S Residuals and LSR Models October 3, 2011 Ya A Pathway Through College Statistics- Open Source 2011 MATH 80S Residuals and LSR Models October 3, 2011 Statistical Vocabulary: A variable that is used to predict the value of another variable is called

More information

MATH 1150 Chapter 2 Notation and Terminology

MATH 1150 Chapter 2 Notation and Terminology MATH 1150 Chapter 2 Notation and Terminology Categorical Data The following is a dataset for 30 randomly selected adults in the U.S., showing the values of two categorical variables: whether or not the

More information

Chapter Goals. To understand the methods for displaying and describing relationship among variables. Formulate Theories.

Chapter Goals. To understand the methods for displaying and describing relationship among variables. Formulate Theories. Chapter Goals To understand the methods for displaying and describing relationship among variables. Formulate Theories Interpret Results/Make Decisions Collect Data Summarize Results Chapter 7: Is There

More information

Vocabulary. Fitting a Line to Data. Lesson 2-2 Linear Models

Vocabulary. Fitting a Line to Data. Lesson 2-2 Linear Models Lesson 2-2 Linear Models BIG IDEA The sum of squared deviations is a statistic for determining which of two lines fi ts the data better. A linear function is a set of ordered pairs (, ) satisfing an equation

More information

Exam 3 Practice Questions Psych , Fall 9

Exam 3 Practice Questions Psych , Fall 9 Vocabular Eam 3 Practice Questions Psch 3101-100, Fall 9 Rather than choosing some practice terms at random, I suggest ou go through all the terms in the vocabular lists. The real eam will ask for definitions

More information

Graphical Diagnosis. Paul E. Johnson 1 2. (Mostly QQ and Leverage Plots) 1 / Department of Political Science

Graphical Diagnosis. Paul E. Johnson 1 2. (Mostly QQ and Leverage Plots) 1 / Department of Political Science (Mostly QQ and Leverage Plots) 1 / 63 Graphical Diagnosis Paul E. Johnson 1 2 1 Department of Political Science 2 Center for Research Methods and Data Analysis, University of Kansas. (Mostly QQ and Leverage

More information

AP CALCULUS AB SUMMER ASSIGNMNET NAME: READ THE FOLLOWING DIRECTIONS CAREFULLY

AP CALCULUS AB SUMMER ASSIGNMNET NAME: READ THE FOLLOWING DIRECTIONS CAREFULLY AP CALCULUS AB SUMMER ASSIGNMNET NAME: READ THE FOLLOWING DIRECTIONS CAREFULLY 1. This packet is to be handed in on the first day of school. 2. All work must be shown in the space provided in the packet.

More information

Lecture 4 Scatterplots, Association, and Correlation

Lecture 4 Scatterplots, Association, and Correlation Lecture 4 Scatterplots, Association, and Correlation Previously, we looked at Single variables on their own One or more categorical variable In this lecture: We shall look at two quantitative variables.

More information

Lecture 4 Scatterplots, Association, and Correlation

Lecture 4 Scatterplots, Association, and Correlation Lecture 4 Scatterplots, Association, and Correlation Previously, we looked at Single variables on their own One or more categorical variables In this lecture: We shall look at two quantitative variables.

More information

11 Regression. Introduction. The Correlation Coefficient. The Least-Squares Regression Line

11 Regression. Introduction. The Correlation Coefficient. The Least-Squares Regression Line 11 Regression The Correlation Coefficient The Least-Squares Regression Line The Correlation Coefficient Introduction A bivariate data set consists of n, (x 1, y 1 ),, (x n, y n ). A scatterplot is a of

More information

The following formulas related to this topic are provided on the formula sheet:

The following formulas related to this topic are provided on the formula sheet: Student Notes Prep Session Topic: Exploring Content The AP Statistics topic outline contains a long list of items in the category titled Exploring Data. Section D topics will be reviewed in this session.

More information

Inference for Regression Inference about the Regression Model and Using the Regression Line, with Details. Section 10.1, 2, 3

Inference for Regression Inference about the Regression Model and Using the Regression Line, with Details. Section 10.1, 2, 3 Inference for Regression Inference about the Regression Model and Using the Regression Line, with Details Section 10.1, 2, 3 Basic components of regression setup Target of inference: linear dependency

More information

Mathematics Level D: Lesson 2 Representations of a Line

Mathematics Level D: Lesson 2 Representations of a Line Mathematics Level D: Lesson 2 Representations of a Line Targeted Student Outcomes Students graph a line specified by a linear function. Students graph a line specified by an initial value and rate of change

More information

UNIT 8: LINEAR FUNCTIONS WEEK 31: Student Packet

UNIT 8: LINEAR FUNCTIONS WEEK 31: Student Packet Name Period Date UNIT 8: LINEAR FUNCTIONS WEEK 31: Student Packet 31.1 Introduction to Systems of Equations Use variables to write equations and systems of equations. Solve problems involving rate, distance,

More information

Section 3: Simple Linear Regression

Section 3: Simple Linear Regression Section 3: Simple Linear Regression Carlos M. Carvalho The University of Texas at Austin McCombs School of Business http://faculty.mccombs.utexas.edu/carlos.carvalho/teaching/ 1 Regression: General Introduction

More information

Lecture 18: Simple Linear Regression

Lecture 18: Simple Linear Regression Lecture 18: Simple Linear Regression BIOS 553 Department of Biostatistics University of Michigan Fall 2004 The Correlation Coefficient: r The correlation coefficient (r) is a number that measures the strength

More information

Unit 3 NOTES Honors Math 2 21

Unit 3 NOTES Honors Math 2 21 Unit 3 NOTES Honors Math 2 21 Warm Up: Exponential Regression Day 8: Point Ratio Form When handed to you at the drive-thru window, a cup of coffee was 200 o F. Some data has been collected about how the

More information

STAT Regression Methods

STAT Regression Methods STAT 501 - Regression Methods Unit 9 Examples Example 1: Quake Data Let y t = the annual number of worldwide earthquakes with magnitude greater than 7 on the Richter scale for n = 99 years. Figure 1 gives

More information

AP Statistics L I N E A R R E G R E S S I O N C H A P 7

AP Statistics L I N E A R R E G R E S S I O N C H A P 7 AP Statistics 1 L I N E A R R E G R E S S I O N C H A P 7 The object [of statistics] is to discover methods of condensing information concerning large groups of allied facts into brief and compendious

More information

Chapter 3. Measuring data

Chapter 3. Measuring data Chapter 3 Measuring data 1 Measuring data versus presenting data We present data to help us draw meaning from it But pictures of data are subjective They re also not susceptible to rigorous inference Measuring

More information

We will now find the one line that best fits the data on a scatter plot.

We will now find the one line that best fits the data on a scatter plot. General Education Statistics Class Notes Least-Squares Regression (Section 4.2) We will now find the one line that best fits the data on a scatter plot. We have seen how two variables can be correlated

More information

Unit D Homework Helper Answer Key

Unit D Homework Helper Answer Key Lesson -1 Recognizing a Function 1. D 2. 1. a.. a. No 4. No. a. 1 19 11 2 1 29 1 2 4 9 1 16 6 1 9 10 10 2 Yes 6. No. No 8. a. {(49, 1), (61, 6), (10, 2), (6, 2), (2, 2)} 9. Yes; answers will vary. 10.

More information

Math 2311 Written Homework 6 (Sections )

Math 2311 Written Homework 6 (Sections ) Math 2311 Written Homework 6 (Sections 5.4 5.6) Name: PeopleSoft ID: Instructions: Homework will NOT be accepted through email or in person. Homework must be submitted through CourseWare BEFORE the deadline.

More information

3.2: Least Squares Regressions

3.2: Least Squares Regressions 3.2: Least Squares Regressions Section 3.2 Least-Squares Regression After this section, you should be able to INTERPRET a regression line CALCULATE the equation of the least-squares regression line CALCULATE

More information

Chapter 7. Scatterplots, Association, and Correlation

Chapter 7. Scatterplots, Association, and Correlation Chapter 7 Scatterplots, Association, and Correlation Bin Zou (bzou@ualberta.ca) STAT 141 University of Alberta Winter 2015 1 / 29 Objective In this chapter, we study relationships! Instead, we investigate

More information

Algebra 1 Midterm Review

Algebra 1 Midterm Review Name Block Algebra 1 Midterm Review MULTIPLE CHOICE Write the letter for the correct answer at the left of each question. 1. Solve: A. 8 C. 2. Solve: A. 43 C. 42 3. Solve the compound inequality and graph

More information

STA Module 5 Regression and Correlation. Learning Objectives. Learning Objectives (Cont.) Upon completing this module, you should be able to:

STA Module 5 Regression and Correlation. Learning Objectives. Learning Objectives (Cont.) Upon completing this module, you should be able to: STA 2023 Module 5 Regression and Correlation Learning Objectives Upon completing this module, you should be able to: 1. Define and apply the concepts related to linear equations with one independent variable.

More information

Intermediate Algebra Final Exam Review

Intermediate Algebra Final Exam Review Intermediate Algebra Final Exam Review Note to students: The final exam for MAT10, MAT 11 and MAT1 will consist of 30 multiple-choice questions and a few open-ended questions. The exam itself will cover

More information

Introduction and Single Predictor Regression. Correlation

Introduction and Single Predictor Regression. Correlation Introduction and Single Predictor Regression Dr. J. Kyle Roberts Southern Methodist University Simmons School of Education and Human Development Department of Teaching and Learning Correlation A correlation

More information

MINI LESSON. Lesson 2a Linear Functions and Applications

MINI LESSON. Lesson 2a Linear Functions and Applications MINI LESSON Lesson 2a Linear Functions and Applications Lesson Objectives: 1. Compute AVERAGE RATE OF CHANGE 2. Explain the meaning of AVERAGE RATE OF CHANGE as it relates to a given situation 3. Interpret

More information

AP Statistics - Chapter 2A Extra Practice

AP Statistics - Chapter 2A Extra Practice AP Statistics - Chapter 2A Extra Practice 1. A study is conducted to determine if one can predict the yield of a crop based on the amount of yearly rainfall. The response variable in this study is A) yield

More information

ASSIGNMENT 3 SIMPLE LINEAR REGRESSION. Old Faithful

ASSIGNMENT 3 SIMPLE LINEAR REGRESSION. Old Faithful ASSIGNMENT 3 SIMPLE LINEAR REGRESSION In the simple linear regression model, the mean of a response variable is a linear function of an explanatory variable. The model and associated inferential tools

More information

Unit 6 - Introduction to linear regression

Unit 6 - Introduction to linear regression Unit 6 - Introduction to linear regression Suggested reading: OpenIntro Statistics, Chapter 7 Suggested exercises: Part 1 - Relationship between two numerical variables: 7.7, 7.9, 7.11, 7.13, 7.15, 7.25,

More information

MATH 2560 C F03 Elementary Statistics I LECTURE 9: Least-Squares Regression Line and Equation

MATH 2560 C F03 Elementary Statistics I LECTURE 9: Least-Squares Regression Line and Equation MATH 2560 C F03 Elementary Statistics I LECTURE 9: Least-Squares Regression Line and Equation 1 Outline least-squares regresion line (LSRL); equation of the LSRL; interpreting the LSRL; correlation and

More information

12-1 Graphing Linear Equations. Warm Up Problem of the Day Lesson Presentation. Course 3

12-1 Graphing Linear Equations. Warm Up Problem of the Day Lesson Presentation. Course 3 Warm Up Problem of the Day Lesson Presentation Warm Up Solve each equation for y. 1. 6y 1x = 4. y 4x = 0 3. y 5x = 16 4. 3y + 6x = 18 y = x + 4 y = x 10 y = 5 x + 8 y = x + 6 Problem of the Day The same

More information

BIOSTATISTICS NURS 3324

BIOSTATISTICS NURS 3324 Simple Linear Regression and Correlation Introduction Previously, our attention has been focused on one variable which we designated by x. Frequently, it is desirable to learn something about the relationship

More information

RATES OF CHANGE. A violin string vibrates. The rate of vibration can be measured in cycles per second (c/s),;

RATES OF CHANGE. A violin string vibrates. The rate of vibration can be measured in cycles per second (c/s),; DISTANCE, TIME, SPEED AND SUCH RATES OF CHANGE Speed is a rate of change. It is a rate of change of distance with time and can be measured in miles per hour (mph), kilometres per hour (km/h), meters per

More information

1 Antiderivatives graphically and numerically

1 Antiderivatives graphically and numerically Math B - Calculus by Hughes-Hallett, et al. Chapter 6 - Constructing antiderivatives Prepared by Jason Gaddis Antiderivatives graphically and numerically Definition.. The antiderivative of a function f

More information

Intro to Linear Regression

Intro to Linear Regression Intro to Linear Regression Introduction to Regression Regression is a statistical procedure for modeling the relationship among variables to predict the value of a dependent variable from one or more predictor

More information

AP STATISTICS: Summer Math Packet

AP STATISTICS: Summer Math Packet Name AP STATISTICS: Summer Math Packet DIRECTIONS: Complete all problems on this packet. Packet due by the end of the first week of classes. Attach additional paper if needed. Calculator may be used. 1.

More information

Lesson 3A: How Fast Are You Moving?

Lesson 3A: How Fast Are You Moving? Lesson 3A: How Fast Are You Moving? 3.1 Observe and represent Decide on a starting point. You will need 2 cars (or other moving objects). For each car, you will mark its position at each second. Make sure

More information

SMAM 319 Exam1 Name. a B.The equation of a line is 3x + y =6. The slope is a. -3 b.3 c.6 d.1/3 e.-1/3

SMAM 319 Exam1 Name. a B.The equation of a line is 3x + y =6. The slope is a. -3 b.3 c.6 d.1/3 e.-1/3 SMAM 319 Exam1 Name 1. Pick the best choice. (10 points-2 each) _c A. A data set consisting of fifteen observations has the five number summary 4 11 12 13 15.5. For this data set it is definitely true

More information

Chapter 8. Linear Regression /71

Chapter 8. Linear Regression /71 Chapter 8 Linear Regression 1 /71 Homework p192 1, 2, 3, 5, 7, 13, 15, 21, 27, 28, 29, 32, 35, 37 2 /71 3 /71 Objectives Determine Least Squares Regression Line (LSRL) describing the association of two

More information

Section 2.1 Exercises

Section 2.1 Exercises Section. Linear Functions 47 Section. Exercises. A town's population has been growing linearly. In 00, the population was 45,000, and the population has been growing by 700 people each year. Write an equation

More information

Performance Task. Any Beginning. Chapter 4. Instructional Overview

Performance Task. Any Beginning. Chapter 4. Instructional Overview Instructional Overview Launch Question Summary Performance Task With so many ways to represent a linear relationship, where do you start? Use what you know to move between equations, graphs, tables, and

More information

ALGEBRA 2 MIDTERM REVIEW. Simplify and evaluate the expression for the given value of the variable:

ALGEBRA 2 MIDTERM REVIEW. Simplify and evaluate the expression for the given value of the variable: ALGEBRA 2 MIDTERM REVIEW Evaluating Expressions: 1.) -3 + 3(-2+ 5) 2 2.) ( -5 ) 2 3.) -5 2 Simplify and evaluate the expression for the given value of the variable: 4.) f(x) = x 2 + x 8; find f(-2) 5.)

More information

Intro to Linear Regression

Intro to Linear Regression Intro to Linear Regression Introduction to Regression Regression is a statistical procedure for modeling the relationship among variables to predict the value of a dependent variable from one or more predictor

More information

Section 2.5 from Precalculus was developed by OpenStax College, licensed by Rice University, and is available on the Connexions website.

Section 2.5 from Precalculus was developed by OpenStax College, licensed by Rice University, and is available on the Connexions website. Section 2.5 from Precalculus was developed by OpenStax College, licensed by Rice University, and is available on the Connexions website. It is used under a Creative Commons Attribution-NonCommercial- ShareAlike

More information

Chapter 10 Correlation and Regression

Chapter 10 Correlation and Regression Chapter 10 Correlation and Regression 10-1 Review and Preview 10-2 Correlation 10-3 Regression 10-4 Variation and Prediction Intervals 10-5 Multiple Regression 10-6 Modeling Copyright 2010, 2007, 2004

More information

Correlation & Simple Regression

Correlation & Simple Regression Chapter 11 Correlation & Simple Regression The previous chapter dealt with inference for two categorical variables. In this chapter, we would like to examine the relationship between two quantitative variables.

More information

Pre-Calculus Module 4

Pre-Calculus Module 4 Pre-Calculus Module 4 4 th Nine Weeks Table of Contents Precalculus Module 4 Unit 9 Rational Functions Rational Functions with Removable Discontinuities (1 5) End Behavior of Rational Functions (6) Rational

More information

Study Guide AP Statistics

Study Guide AP Statistics Study Guide AP Statistics Name: Part 1: Multiple Choice. Circle the letter corresponding to the best answer. 1. Other things being equal, larger automobile engines are less fuel-efficient. You are planning

More information

Math 5a Reading Assignments for Sections

Math 5a Reading Assignments for Sections Math 5a Reading Assignments for Sections 4.1 4.5 Due Dates for Reading Assignments Note: There will be a very short online reading quiz (WebWork) on each reading assignment due one hour before class on

More information

Do Now 18 Balance Point. Directions: Use the data table to answer the questions. 2. Explain whether it is reasonable to fit a line to the data.

Do Now 18 Balance Point. Directions: Use the data table to answer the questions. 2. Explain whether it is reasonable to fit a line to the data. Do Now 18 Do Now 18 Balance Point Directions: Use the data table to answer the questions. 1. Calculate the balance point.. Explain whether it is reasonable to fit a line to the data.. The data is plotted

More information

Name Period Date. polynomials of the form x ± bx ± c. Use guess and check and logic to factor polynomials of the form 2

Name Period Date. polynomials of the form x ± bx ± c. Use guess and check and logic to factor polynomials of the form 2 Name Period Date POLYNOMIALS Student Packet 3: Factoring Polynomials POLY3 STUDENT PAGES POLY3.1 An Introduction to Factoring Polynomials Understand what it means to factor a polynomial Factor polynomials

More information

Probability and Samples. Sampling. Point Estimates

Probability and Samples. Sampling. Point Estimates Probability and Samples Sampling We want the results from our sample to be true for the population and not just the sample But our sample may or may not be representative of the population Sampling error

More information

University of California, Berkeley, Statistics 131A: Statistical Inference for the Social and Life Sciences. Michael Lugo, Spring 2012

University of California, Berkeley, Statistics 131A: Statistical Inference for the Social and Life Sciences. Michael Lugo, Spring 2012 University of California, Berkeley, Statistics 3A: Statistical Inference for the Social and Life Sciences Michael Lugo, Spring 202 Solutions to Exam Friday, March 2, 202. [5: 2+2+] Consider the stemplot

More information

Chapter 3 Representations of a Linear Relation

Chapter 3 Representations of a Linear Relation Chapter 3 Representations of a Linear Relation The purpose of this chapter is to develop fluency in the ways of representing a linear relation, and in extracting information from these representations.

More information

Determine the line of best fit for this data. Write an equation to represent the line of best fit.

Determine the line of best fit for this data. Write an equation to represent the line of best fit. Integrated Math I, Subpart 3 Calculator Allowed TN0030684 21 Samatha owns a local ice cream stand. She recorded the high temperatures, in degrees Fahrenheit, and her ice cream sales, in dollars, for eight

More information

12 Rates of Change Average Rates of Change. Concepts: Average Rates of Change

12 Rates of Change Average Rates of Change. Concepts: Average Rates of Change 12 Rates of Change Concepts: Average Rates of Change Calculating the Average Rate of Change of a Function on an Interval Secant Lines Difference Quotients Approximating Instantaneous Rates of Change (Section

More information

Algebra 3-4 Unit 1 Absolute Value Functions and Equations

Algebra 3-4 Unit 1 Absolute Value Functions and Equations Name Period Algebra 3-4 Unit 1 Absolute Value Functions and Equations 1.1 I can write domain and range in interval notation when given a graph or an equation. 1.1 I can write a function given a real world

More information