Over Determined Algebraic Systems: Curve Fitting to Data

Size: px
Start display at page:

Download "Over Determined Algebraic Systems: Curve Fitting to Data"

Transcription

1 Over Determined Algebraic Systems: Curve Fitting to Data Introduction. In this section we investigate algebraic systems that have more equations than unknowns. In general, these will not have a solution in the sense that one gets equality for each equation. Here we hope to be able to choose the unknowns so that the equations are as close to being satisfied as possible. For example, consider the following where there are two variables and three equations x + x =, x + x = 3 and 3x + x = 7. Here there is no solution because there are more equations and only two unknowns. Or, in matrix form, with the residual vector, r, inserted is r x 3 = r. 3 x 7 r 3 We will want to choose the solution x so that the "size" of the residual vector is a minimum. A very appropriate measure of "size" will be the sum of the squares of residual's components. r T r = r + r + r3. Such x are called the least squares solution to the overdetermined system. Applied Area. We will apply the above concepts to two areas. Both are related to fitting curves to a number of data points. There are many other problems that can be formulated as minimization problem, which are in many cases related to algebraic systems. Application to Business Forecasting. Consider a computer company which has recorded sales of 78, 85, 90, 96, 04 and 3 computers over the last six months: Table: Sales Data Month Computers Sold

2 They wish to make a prediction of the sales over the next six months. This will help them plan their production needs during this period. The data is increasing more or less in a linear fashion. Consequently, we are looking for a straight line that is "closest" to the data. An analytical way of saying this is that we are looking for y = mx + c, that is, the slope, m, and the y intercept, c, so that this line is "closest" to the graphed data. Once the m and the c are known, then the future sales can be predicted by putting the appropriate month into the x variable and computing the forecasted sales in the y variable. Sales * * * * * * Figure: Time Sales Data and a "Close" Straight Line In order to form the corresponding over determined system, note the components of the residual vector are just the vertical distances between the data points and the desired straight line. So, for each data point there is an equation, which has the two unknowns m and c. For the above data the six equations are m + c = 78, m + c = 85, m3 + c = 90, m4 + c = 96, m5 + c = 04 and m6 + c = 3. Or, the matrix form with the residual vector is

3 r 85 r m 90 r 3. = c 96 r4 04 r 5 3 r6 Application to Nonlinear Heat Diffusion. In the introductory models of heat diffusion via the Fourier heat law, the thermal conductivity was the constant of proportionality for the diffusion of heat. However, if the temperature varies over a large range, the thermal conductivity will not be a constant. Consider the following data for thermal conductivity as a function of temperature. Table: Thermal Conductivity Data Temperature Thermal Conductivity Inspection of this data indicates that it is generally shaped like a parabola whose equation is a second order polynomial a + bx + cx. We want to choose the three coefficients so that the graph of the polynomial will be closest to the data. In this problem there are 5 data points and three unknowns, and the corresponding equations are a + b000 + c000 =.000, a + b00 + c00 =.005, a + b400 + c400 =.00, a + b600 + c600 =.005 and a + b800 + c800 = Or, the matrix form with the residual vector is

4 r a r b = r c.005 r r 5 Model. The model has the form of Ax = d where A is an m by n matrix with m larger than n, that is, there are more rows or equations than the unknowns in the x vector. Since there are no exact solutions, we try to find x so that the residual vector in Ax = d - r is as "small" as possible. Definition. The vector x is called a least squares solution of the over determined system if and only if x is such that r T r =(d - Ax) T (d - Ax) is a minimum of all (d - Ay) T (d - Ay) Method. Fortunately, this solution in most cases has a very nice answer. If x is the least squares solution, then for all y (d - Ax) T (d - Ax) (d - Ay) T (d - Ay). () Let y = x + (y - x) and consider (d - Ay) T (d - Ay) = ((d - Ax) - A(y -x)) T ((d - Ax) - A(y -x)) = ((d - Ax) T - (A(y -x)) T ) ((d - Ax) - A(y -x)) = (d - Ax) T (d - Ax) - (A(y -x)) T (d - Ax) - (d - Ax) T A(y - x) + (A(y -x)) T (A(y - x)) (d - Ax) T (d - Ax) - ((y - x) T A T (d - Ax). () If the last term on the right side of () is zero, then the inequality in () must hold. This prompts the following definition and theorem which we have just established. Definition. A T Ax = A T d is called the normal equation associated with the least squares problem. Normal Equation Theorem. If A T A has an inverse, then the solution of the normal equation is also a solution of the least squares problem. Example. unknowns Consider the problem in the introduction with three equations and two

5 5 x 3 x = 3 with = = T A A and 3 8 = 3 = T 7 Ad. The solution of the normal equation is x = 3 and x = -7/3. An interpretation of this is with x = slope = m and x = y intercept = c, is that the straight line y = 3x + (-7/3) is closest to the three data points (x i, y i ) = (,), (,3) and (3,7). Implementation. First we use the Matlab/Maple symbolic procedure linsolve to find the solution of the normal equations for the business forecast. Then Matlab is used to find the thermal conductivity. Matlab/Maple Symbolic Code for the Business Forecast Model. EDU» A=[ ; ; 3 ;4 ;5 ;6 ] A = EDU» transpose(a) ans = EDU» ata = transpose(a)*a ata = 9 6

6 6 EDU» d = [ ]' d = EDU» atd = transpose(a)*d atd = EDU» lssol = linsolve(ata,atd) lssol = [ 34/5] [ 058/5] This means the slope m = 34/5 and the y intercept c = 058/5. The predicted sales at 9 months is m9 + c = 3. Matlab Code for the Thermal Conductivity EDU»format long (6 digits) EDU»A = [ 0 0; ; ; ; ] A = EDU»d = [ ]' d =

7 7 EDU»lssol = (A'*A)\(A'*d) lssol = EDU» ezplot(' *x *x*x',[0 800]) x ~~~ *x *x*x Figure: x Thermal Conductivity versus Temperature Assessment. The least squares linear approximation model requires that the data be in the form of a straight line. Other factors governing the effectiveness in economic models include unpredictable costs, attractiveness of items may increase or decrease rapidly, and new technologies. The thermal conductivity model may not be valid if there are changes of physical state within the desired range. In this case, the thermal conductivity will have jump discontinuities, and therefore, polynomial approximations will not be a good model. Not all models are in the form of polynomials. In many cases the models have the form of transcendental functions such as log or exponential functions. Here the least squares model must be altered to include these more complicated nonlinear effects. In another polynomial approximation, Lagrange polynomials, given by requiring the approximation to be exactly the value of a complicated function at a number of points. If there are a large number of points, then the Lagrange polynomial will have a high

8 8 order, and there will be many oscillations. By using least squares with the appropriate degree polynomial, which reflects the data, one can use many data points. Often the least squares method generates an algebraic problem that is prone to large numerical errors. In this case, one is advised to use the QR-factorization method to solve the algebraic problem. This is incorporated into the backslash command in Matlab as is illustrated below.» A\d ans = » lsquad = A\d % Solves for the quadratic approximation lsquad = » lslinear = A(:,:)\d % Solves for the linear approximation lslinear =.0e-003 *

9 9» resquad = d - A*lsquad % Computes the residual for the quadratic resquad =.0e-003 * » reslinear = d - A(:,:)*lslinear % Computes the residual for the linear reslinear = » resquad'*resquad % Minimum of the least squares function for quadratic ans = e-007» reslinear'*reslinear % Minimum of the least squares function for linear ans = e-006 % One can compare either r'*r, or the graphs of the approximating functions.» syms x» ezplot(lsquad() + lsquad()*x + lsquad(3)*x*x, [ ])» hold on» ezplot(lslinear() + lslinear()*x, [ ])» plot([ ], d,'*')

10 0 x / / x x Homework.. The sales of air conditioners during the months of January, February, March and April were 4, 6, 7 and, respectively. Find the linear least squares solution associated with this data. Use it to predict the sales in May. Would this be a good model to make predictions for the months of July or August?. Use the nonlinear thermal conductivity function to find the steady state temperature of a thin wire with no heat loss through the lateral sides? 3. Justify the steps leading from equation () to (). 4. Consider the data (-,0), (-,0), (,0), (,0) and (.,.4). Approximate the above data in two ways: (i). use Lagrange fourth order polynomial and (ii). use linear least squares. Graph both and compare them.

2-7 Solving Quadratic Inequalities. ax 2 + bx + c > 0 (a 0)

2-7 Solving Quadratic Inequalities. ax 2 + bx + c > 0 (a 0) Quadratic Inequalities In One Variable LOOKS LIKE a quadratic equation but Doesn t have an equal sign (=) Has an inequality sign (>,

More information

Homework 1. 3x 12, 61.P (x) = 3t 21 Section 1.2

Homework 1. 3x 12, 61.P (x) = 3t 21 Section 1.2 Section 1.1 Homework 1 (34, 36) Determine whether the equation defines y as a function of x. 34. x + h 2 = 1, 36. y = 3x 1 x + 2. (40, 44) Find the following for each function: (a) f(0) (b) f(1) (c) f(

More information

Chapter 1: Precalculus Review

Chapter 1: Precalculus Review : Precalculus Review Math 115 17 January 2018 Overview 1 Important Notation 2 Exponents 3 Polynomials 4 Rational Functions 5 Cartesian Coordinates 6 Lines Notation Intervals: Interval Notation (a, b) (a,

More information

Algebra I Assessment. Eligible Texas Essential Knowledge and Skills

Algebra I Assessment. Eligible Texas Essential Knowledge and Skills Algebra I Assessment Eligible Texas Essential Knowledge and Skills STAAR Algebra I Assessment Reporting Category 1: Functional Relationships The student will describe functional relationships in a variety

More information

HMH Fuse Algebra correlated to the. Texas Essential Knowledge and Skills for Mathematics High School Algebra 1

HMH Fuse Algebra correlated to the. Texas Essential Knowledge and Skills for Mathematics High School Algebra 1 HMH Fuse Algebra 1 2012 correlated to the Texas Essential Knowledge and Skills for Mathematics High School Algebra 1 111.32. Algebra I (b) Knowledge and skills. (1) Foundations for functions. The student

More information

Graphing Systems of Linear Equations

Graphing Systems of Linear Equations Graphing Systems of Linear Equations Groups of equations, called systems, serve as a model for a wide variety of applications in science and business. In these notes, we will be concerned only with groups

More information

Finding the Equation of a Graph. I can give the equation of a curve given just the roots.

Finding the Equation of a Graph. I can give the equation of a curve given just the roots. National 5 W 7th August Finding the Equation of a Parabola Starter Sketch the graph of y = x - 8x + 15. On your sketch clearly identify the roots, axis of symmetry, turning point and y intercept. Today

More information

Quadratic function and equations Quadratic function/equations, supply, demand, market equilibrium

Quadratic function and equations Quadratic function/equations, supply, demand, market equilibrium Exercises 8 Quadratic function and equations Quadratic function/equations, supply, demand, market equilibrium Objectives - know and understand the relation between a quadratic function and a quadratic

More information

COMMON CORE STATE STANDARDS TO BOOK CORRELATION

COMMON CORE STATE STANDARDS TO BOOK CORRELATION COMMON CORE STATE STANDARDS TO BOOK CORRELATION Conceptual Category: Number and Quantity Domain: The Real Number System After a standard is introduced, it is revisited many times in subsequent activities,

More information

1 Functions and Graphs

1 Functions and Graphs 1 Functions and Graphs 1.1 Functions Cartesian Coordinate System A Cartesian or rectangular coordinate system is formed by the intersection of a horizontal real number line, usually called the x axis,

More information

MAT116 Final Review Session Chapter 1: Equations, Inequalities, and Modeling

MAT116 Final Review Session Chapter 1: Equations, Inequalities, and Modeling MAT116 Final Review Session Chapter 1: Equations, Inequalities, and Modeling Solving Equations: Types of Equations in Chapter 1: Linear Absolute Value Quadratic Rational To SOLVE an equation means to find

More information

Sect Polynomial and Rational Inequalities

Sect Polynomial and Rational Inequalities 158 Sect 10.2 - Polynomial and Rational Inequalities Concept #1 Solving Inequalities Graphically Definition A Quadratic Inequality is an inequality that can be written in one of the following forms: ax

More information

August 2018 ALGEBRA 1

August 2018 ALGEBRA 1 August 0 ALGEBRA 3 0 3 Access to Algebra course :00 Algebra Orientation Course Introduction and Reading Checkpoint 0.0 Expressions.03 Variables.0 3.0 Translate Words into Variable Expressions DAY.0 Translate

More information

9.5. Polynomial and Rational Inequalities. Objectives. Solve quadratic inequalities. Solve polynomial inequalities of degree 3 or greater.

9.5. Polynomial and Rational Inequalities. Objectives. Solve quadratic inequalities. Solve polynomial inequalities of degree 3 or greater. Chapter 9 Section 5 9.5 Polynomial and Rational Inequalities Objectives 1 3 Solve quadratic inequalities. Solve polynomial inequalities of degree 3 or greater. Solve rational inequalities. Objective 1

More information

Lesson 9 Exploring Graphs of Quadratic Functions

Lesson 9 Exploring Graphs of Quadratic Functions Exploring Graphs of Quadratic Functions Graph the following system of linear inequalities: { y > 1 2 x 5 3x + 2y 14 a What are three points that are solutions to the system of inequalities? b Is the point

More information

Preliminaries Lectures. Dr. Abdulla Eid. Department of Mathematics MATHS 101: Calculus I

Preliminaries Lectures. Dr. Abdulla Eid. Department of Mathematics   MATHS 101: Calculus I Preliminaries 2 1 2 Lectures Department of Mathematics http://www.abdullaeid.net/maths101 MATHS 101: Calculus I (University of Bahrain) Prelim 1 / 35 Pre Calculus MATHS 101: Calculus MATHS 101 is all about

More information

A Library of Functions

A Library of Functions LibraryofFunctions.nb 1 A Library of Functions Any study of calculus must start with the study of functions. Functions are fundamental to mathematics. In its everyday use the word function conveys to us

More information

RF2 Unit Test # 2 Review Quadratics (Chapter 6) 1. What is the degree of a quadratic function?

RF2 Unit Test # 2 Review Quadratics (Chapter 6) 1. What is the degree of a quadratic function? RF Unit Test # Review Quadratics (Chapter 6) 1. What is the degree of a quadratic function? Name: a. 1 b. c. 3 d. 0. What is the -intercept for = 3x + x 5? a. 5 b. 5 c. d. 3 3. Which set of data is correct

More information

Get acquainted with the computer program, The Quadratic Transformer. When you're satisfied that you understand how it works, try the tasks below.

Get acquainted with the computer program, The Quadratic Transformer. When you're satisfied that you understand how it works, try the tasks below. Weaving a Parabola Web with the Quadratic Transformer In this activity, you explore how the graph of a quadratic function and its symbolic expression relate to each other. You start with a set of four

More information

SECTION 5.1: Polynomials

SECTION 5.1: Polynomials 1 SECTION 5.1: Polynomials Functions Definitions: Function, Independent Variable, Dependent Variable, Domain, and Range A function is a rule that assigns to each input value x exactly output value y =

More information

Say it with Symbols - Unit Test Review Shet

Say it with Symbols - Unit Test Review Shet Name: Class: Date: ID: A Say it with Symbols - Unit Test Review Shet Short Answer 1. What does it mean to say that two algebraic expressions are equivalent? Evaluate the expression for the given value

More information

Observations Homework Checkpoint quizzes Chapter assessments (Possibly Projects) Blocks of Algebra

Observations Homework Checkpoint quizzes Chapter assessments (Possibly Projects) Blocks of Algebra September The Building Blocks of Algebra Rates, Patterns and Problem Solving Variables and Expressions The Commutative and Associative Properties The Distributive Property Equivalent Expressions Seeing

More information

1.1 : (The Slope of a straight Line)

1.1 : (The Slope of a straight Line) 1.1 : (The Slope of a straight Line) Equations of Nonvertical Lines: A nonvertical line L has an equation of the form y mx b. The number m is called the slope of L and the point (0, b) is called the y-intercept.

More information

Carnegie Learning High School Math Series: Algebra I Indiana Standards Worktext Correlations

Carnegie Learning High School Math Series: Algebra I Indiana Standards Worktext Correlations Real Numbers and Expressions AI.RNE.1 Understand the hierarchy and relationships of numbers and sets of numbers within the real number system. 14 Real Number Systems AI.RNE.2 Explain why the sum or product

More information

FLORIDA STANDARDS TO BOOK CORRELATION

FLORIDA STANDARDS TO BOOK CORRELATION FLORIDA STANDARDS TO BOOK CORRELATION Florida Standards (MAFS.912) Conceptual Category: Number and Quantity Domain: The Real Number System After a standard is introduced, it is revisited many times in

More information

evaluate functions, expressed in function notation, given one or more elements in their domains

evaluate functions, expressed in function notation, given one or more elements in their domains Describing Linear Functions A.3 Linear functions, equations, and inequalities. The student writes and represents linear functions in multiple ways, with and without technology. The student demonstrates

More information

CURRICULUM MAP. Course/Subject: Honors Math I Grade: 10 Teacher: Davis. Month: September (19 instructional days)

CURRICULUM MAP. Course/Subject: Honors Math I Grade: 10 Teacher: Davis. Month: September (19 instructional days) Month: September (19 instructional days) Numbers, Number Systems and Number Relationships Standard 2.1.11.A: Use operations (e.g., opposite, reciprocal, absolute value, raising to a power, finding roots,

More information

Common Core Standards Addressed in this Resource

Common Core Standards Addressed in this Resource Common Core Standards Addressed in this Resource.EE.3 - Apply the properties of operations to generate equivalent expressions. Activity page: 4 7.RP.3 - Use proportional relationships to solve multistep

More information

GENG2140, S2, 2012 Week 7: Curve fitting

GENG2140, S2, 2012 Week 7: Curve fitting GENG2140, S2, 2012 Week 7: Curve fitting Curve fitting is the process of constructing a curve, or mathematical function, f(x) that has the best fit to a series of data points Involves fitting lines and

More information

Function Junction: Homework Examples from ACE

Function Junction: Homework Examples from ACE Function Junction: Homework Examples from ACE Investigation 1: The Families of Functions, ACE #5, #10 Investigation 2: Arithmetic and Geometric Sequences, ACE #4, #17 Investigation 3: Transforming Graphs,

More information

Common Core Algebra 2 Review Session 1

Common Core Algebra 2 Review Session 1 Common Core Algebra 2 Review Session 1 NAME Date 1. Which of the following is algebraically equivalent to the sum of 4x 2 8x + 7 and 3x 2 2x 5? (1) 7x 2 10x + 2 (2) 7x 2 6x 12 (3) 7x 4 10x 2 + 2 (4) 12x

More information

DCDM BUSINESS SCHOOL FACULTY OF MANAGEMENT ECONOMIC TECHNIQUES 102 LECTURE 4 DIFFERENTIATION

DCDM BUSINESS SCHOOL FACULTY OF MANAGEMENT ECONOMIC TECHNIQUES 102 LECTURE 4 DIFFERENTIATION DCDM BUSINESS SCHOOL FACULTY OF MANAGEMENT ECONOMIC TECHNIUES 1 LECTURE 4 DIFFERENTIATION 1 Differentiation Managers are often concerned with the way that a variable changes over time Prices, for example,

More information

Note: The zero function f(x) = 0 is a polynomial function. It has no degree and no leading coefficient. Sep 15 2:51 PM

Note: The zero function f(x) = 0 is a polynomial function. It has no degree and no leading coefficient. Sep 15 2:51 PM 2.1 Linear and Quadratic Name: Functions and Modeling Objective: Students will be able to recognize and graph linear and quadratic functions, and use these functions to model situations and solve problems.

More information

Willmar Public Schools Curriculum Map

Willmar Public Schools Curriculum Map Subject Area Mathematics Senior High Course Name Advanced Algebra 2A (Prentice Hall Mathematics) Date April 2010 The Advanced Algebra 2A course parallels each other in content and time. The Advanced Algebra

More information

8.7 MacLaurin Polynomials

8.7 MacLaurin Polynomials 8.7 maclaurin polynomials 67 8.7 MacLaurin Polynomials In this chapter you have learned to find antiderivatives of a wide variety of elementary functions, but many more such functions fail to have an antiderivative

More information

A Plot of the Tracking Signals Calculated in Exhibit 3.9

A Plot of the Tracking Signals Calculated in Exhibit 3.9 CHAPTER 3 FORECASTING 1 Measurement of Error We can get a better feel for what the MAD and tracking signal mean by plotting the points on a graph. Though this is not completely legitimate from a sample-size

More information

LESSON EII.F ABSOLUTE VALUE 89

LESSON EII.F ABSOLUTE VALUE 89 LESSON EII.F ABSOLUTE VALUE LESSON EII.F ABSOLUTE VALUE 89 OVERVIEW Here s what you ll learn in this lesson: Solving Equations a. Solving x = a b. Solving Ax + B = a c. Solving Ax + B = Cx + D Solving

More information

Prerequisite: Qualification by assessment process or completion of Mathematics 1050 or one year of high school algebra with a grade of "C" or higher.

Prerequisite: Qualification by assessment process or completion of Mathematics 1050 or one year of high school algebra with a grade of C or higher. Reviewed by: D. Jones Reviewed by: B. Jean Reviewed by: M. Martinez Text update: Spring 2017 Date reviewed: February 2014 C&GE Approved: March 10, 2014 Board Approved: April 9, 2014 Mathematics (MATH)

More information

Mathematics Review. Sid Rudolph

Mathematics Review. Sid Rudolph Physics 2010 Sid Rudolph General Physics Mathematics Review These documents in mathematics are intended as a brief review of operations and methods. Early in this course, you should be totally familiar

More information

Students will be able to simplify numerical expressions and evaluate algebraic expressions. (M)

Students will be able to simplify numerical expressions and evaluate algebraic expressions. (M) Morgan County School District Re-3 August What is algebra? This chapter develops some of the basic symbolism and terminology that students may have seen before but still need to master. The concepts of

More information

Agile Mind Algebra I Scope and Sequence, Texas Essential Knowledge and Skills for Mathematics

Agile Mind Algebra I Scope and Sequence, Texas Essential Knowledge and Skills for Mathematics In the three years prior to Algebra I, students have already begun their study of algebraic concepts. They have investigated variables and expressions, solved equations, constructed and analyzed tables,

More information

Systems of Equations and Inequalities. College Algebra

Systems of Equations and Inequalities. College Algebra Systems of Equations and Inequalities College Algebra System of Linear Equations There are three types of systems of linear equations in two variables, and three types of solutions. 1. An independent system

More information

1. Which is an irrational number? B 0.28 C The value of 6 is between which two integers? A 2 and 3. B 5 and 7. C 35 and 37.

1. Which is an irrational number? B 0.28 C The value of 6 is between which two integers? A 2 and 3. B 5 and 7. C 35 and 37. 1. Which is an irrational number? A 2 8 B 0.28 C 28 2. The value of 6 is between which two integers? A 2 and 3 B 5 and 7 C 35 and 37 Page 1 3. Each edge of the cube shown below is 2 inches long. If each

More information

a factors The exponential 0 is a special case. If b is any nonzero real number, then

a factors The exponential 0 is a special case. If b is any nonzero real number, then 0.1 Exponents The expression x a is an exponential expression with base x and exponent a. If the exponent a is a positive integer, then the expression is simply notation that counts how many times the

More information

Foundations of Math II Unit 5: Solving Equations

Foundations of Math II Unit 5: Solving Equations Foundations of Math II Unit 5: Solving Equations Academics High School Mathematics 5.1 Warm Up Solving Linear Equations Using Graphing, Tables, and Algebraic Properties On the graph below, graph the following

More information

Chapter 8 ~ Quadratic Functions and Equations In this chapter you will study... You can use these skills...

Chapter 8 ~ Quadratic Functions and Equations In this chapter you will study... You can use these skills... Chapter 8 ~ Quadratic Functions and Equations In this chapter you will study... identifying and graphing quadratic functions transforming quadratic equations solving quadratic equations using factoring

More information

6x 2 8x + 5 ) = 12x 8

6x 2 8x + 5 ) = 12x 8 Example. If f(x) = x 3 4x + 5x + 1, then f (x) = 6x 8x + 5 Observation: f (x) is also a differentiable function... d dx ( f (x) ) = d dx ( 6x 8x + 5 ) = 1x 8 The derivative of f (x) is called the second

More information

Midterm 2 - Solutions

Midterm 2 - Solutions Ecn 102 - Analysis of Economic Data University of California - Davis February 24, 2010 Instructor: John Parman Midterm 2 - Solutions You have until 10:20am to complete this exam. Please remember to put

More information

SKILL BUILDER TEN. Graphs of Linear Equations with Two Variables. If x = 2 then y = = = 7 and (2, 7) is a solution.

SKILL BUILDER TEN. Graphs of Linear Equations with Two Variables. If x = 2 then y = = = 7 and (2, 7) is a solution. SKILL BUILDER TEN Graphs of Linear Equations with Two Variables A first degree equation is called a linear equation, since its graph is a straight line. In a linear equation, each term is a constant or

More information

Math Numerical Analysis Mid-Term Test Solutions

Math Numerical Analysis Mid-Term Test Solutions Math 400 - Numerical Analysis Mid-Term Test Solutions. Short Answers (a) A sufficient and necessary condition for the bisection method to find a root of f(x) on the interval [a,b] is f(a)f(b) < 0 or f(a)

More information

LESSON 13.1 NONLINEAR EQUATIONS

LESSON 13.1 NONLINEAR EQUATIONS LESSON. NONLINEAR EQUATIONS LESSON. NONLINEAR EQUATIONS 58 OVERVIEW Here's what you'll learn in this lesson: Solving Equations a. Solving polynomial equations by factoring b. Solving quadratic type equations

More information

SECTION 3.1: Quadratic Functions

SECTION 3.1: Quadratic Functions SECTION 3.: Quadratic Functions Objectives Graph and Analyze Quadratic Functions in Standard and Verte Form Identify the Verte, Ais of Symmetry, and Intercepts of a Quadratic Function Find the Maimum or

More information

Algebra 1 Khan Academy Video Correlations By SpringBoard Activity and Learning Target

Algebra 1 Khan Academy Video Correlations By SpringBoard Activity and Learning Target Algebra 1 Khan Academy Video Correlations By SpringBoard Activity and Learning Target SB Activity Activity 1 Investigating Patterns 1-1 Learning Targets: Identify patterns in data. Use tables, graphs,

More information

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1

Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Calculus I Homework: The Derivatives of Polynomials and Exponential Functions Page 1 Questions Example Differentiate the function y = ae v + b v + c v 2. Example Differentiate the function y = A + B x

More information

Algebra vocabulary CARD SETS Frame Clip Art by Pixels & Ice Cream

Algebra vocabulary CARD SETS Frame Clip Art by Pixels & Ice Cream Algebra vocabulary CARD SETS 1-7 www.lisatilmon.blogspot.com Frame Clip Art by Pixels & Ice Cream Algebra vocabulary Game Materials: one deck of Who has cards Objective: to match Who has words with definitions

More information

A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES ALGEBRA I

A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES ALGEBRA I A VERTICAL LOOK AT KEY CONCEPTS AND PROCEDURES ALGEBRA I Revised TEKS (2012): Building to Algebra I Linear Functions, Equations, and Inequalities A Vertical Look at Key Concepts and Procedures Determine

More information

Parent Guide. Number System. Diocese of Cleveland

Parent Guide. Number System. Diocese of Cleveland Parent Guide Grade Eight Algebra Curriculum Diocese of Cleveland Below is a list of skills your child will be taught in Grade Eight Algebra. As parents, you are encouraged to support the work of your child

More information

Unit 8: Polynomials and Quadratic Functions April

Unit 8: Polynomials and Quadratic Functions April Algebra 1 Year at a Glance August Unit 1: Introduction to Functions Unit 6: linear Systems January S M T W TH F S In this unit students will explore and classify In this unit, students will solve systems

More information

Department of Mathematics, University of Wisconsin-Madison Math 114 Worksheet Sections 3.1, 3.3, and 3.5

Department of Mathematics, University of Wisconsin-Madison Math 114 Worksheet Sections 3.1, 3.3, and 3.5 Department of Mathematics, University of Wisconsin-Madison Math 11 Worksheet Sections 3.1, 3.3, and 3.5 1. For f(x) = 5x + (a) Determine the slope and the y-intercept. f(x) = 5x + is of the form y = mx

More information

March 4: Graphing Quadratic polynomials. John T. Baldwin. March 5, 2009

March 4: Graphing Quadratic polynomials. John T. Baldwin. March 5, 2009 March 5, 2009 Next Quarter The class next quarter will be on 10 Monday nights same time (5:00 PM -8:15 PM) same place (Munroe School) starting Monday, March 30 and ending Monday, June 8. Class will not

More information

Section 5.8 Regression/Least Squares Approximation

Section 5.8 Regression/Least Squares Approximation Section 5.8 Regression/Least Squares Approximation Key terms Interpolation via linear systems Regression Over determine linear system Closest vector to a column space Linear regression; least squares line

More information

ALGEBRA - SPRING 2017 January 2017 Monday Tuesday Thursday 2 WINTER BREAK 4 WINTER BREAK 5/6 WINTER BREAK

ALGEBRA - SPRING 2017 January 2017 Monday Tuesday Thursday 2 WINTER BREAK 4 WINTER BREAK 5/6 WINTER BREAK ALGEBRA - SPRING 2017 January 2017 2 WINTER BREAK 4 WINTER BREAK 5/6 WINTER BREAK 9 TEACHER WORK DAY 10/11 Teach: 6.1 Properties of Exponents HW#1 p.296 #5-35 odd, 55,63 12/13 Teach: 6.2 Radicals and Rational

More information

Unit 3: HW3.5 Sum and Product

Unit 3: HW3.5 Sum and Product Unit 3: HW3.5 Sum and Product Without solving, find the sum and product of the roots of each equation. 1. x 2 8x + 7 = 0 2. 2x + 5 = x 2 3. -7x + 4 = -3x 2 4. -10x 2 = 5x - 2 5. 5x 2 2x 3 4 6. 1 3 x2 3x

More information

Algebra I Assessment. Eligible Texas Essential Knowledge and Skills

Algebra I Assessment. Eligible Texas Essential Knowledge and Skills Algebra I Assessment Eligible Texas Essential Knowledge and Skills STAAR Algebra I Assessment Mathematical Process Standards These student expectations will not be listed under a separate reporting category.

More information

INSIDE ALGEBRA CORRELATED WITH CALIFORNIA S COMMON CORE STANDARDS HIGH SCHOOL ALGEBRA

INSIDE ALGEBRA CORRELATED WITH CALIFORNIA S COMMON CORE STANDARDS HIGH SCHOOL ALGEBRA We CA Can COMMON Early Learning CORE STANDARDS Curriculum PreK Grades 8 12 INSIDE ALGEBRA CORRELATED WITH CALIFORNIA S COMMON CORE STANDARDS HIGH SCHOOL ALGEBRA May 2011 www.voyagersopris.com/insidealgebra

More information

+ Curriculum Mapping Template

+ Curriculum Mapping Template + Curriculum Mapping Template Name: Eichorn/Maiorano, Parent Subject Area: 8 th grade Mathematics 26 Days CMP2/3: Thinking with Mathematical Models What are the key variables in the situation? Is there

More information

Huntington Beach City School District Grade 8 Mathematics Accelerated Standards Schedule

Huntington Beach City School District Grade 8 Mathematics Accelerated Standards Schedule Huntington Beach City School District Grade 8 Mathematics Accelerated Standards Schedule 2016-2017 Interim Assessment Schedule Orange Interim Assessment: November 1-18, 2016 Green Interim Assessment: January

More information

Relations and Functions

Relations and Functions Algebra 1, Quarter 2, Unit 2.1 Relations and Functions Overview Number of instructional days: 10 (2 assessments) (1 day = 45 60 minutes) Content to be learned Demonstrate conceptual understanding of linear

More information

Chapter 1: System of Linear Equations 1.3 Application of Li. (Read Only) Satya Mandal, KU. Summer 2017: Fall 18 Update

Chapter 1: System of Linear Equations 1.3 Application of Li. (Read Only) Satya Mandal, KU. Summer 2017: Fall 18 Update Chapter 1: System of Linear Equations 1.3 Application of Linear systems (Read Only) Summer 2017: Fall 18 Update Goals In this section, we do a few applications of linear systems, as follows. Fitting polynomials,

More information

EDEXCEL NATIONAL CERTIFICATE UNIT 4 MATHEMATICS FOR TECHNICIANS OUTCOME 1

EDEXCEL NATIONAL CERTIFICATE UNIT 4 MATHEMATICS FOR TECHNICIANS OUTCOME 1 Learning outcomes EDEXCEL NATIONAL CERTIFICATE UNIT 4 MATHEMATICS FOR TECHNICIANS OUTCOME 1 TUTORIAL 3 - FACTORISATION AND QUADRATICS On completion of this unit a learner should: 1 Know how to use algebraic

More information

Math Placement Test Review Sheet Louisburg College _ Summer = c = d. 5

Math Placement Test Review Sheet Louisburg College _ Summer = c = d. 5 1. Preform indicated operations with fractions and decimals: a. 7 14 15 = b. 2 = c. 5 + 1 = d. 5 20 4 5 18 12 18 27 = 2. What is the least common denominator of fractions: 8 21 and 9 14. The fraction 9

More information

FUNCTIONS AND MODELS

FUNCTIONS AND MODELS 1 FUNCTIONS AND MODELS FUNCTIONS AND MODELS 1.2 MATHEMATICAL MODELS: A CATALOG OF ESSENTIAL FUNCTIONS In this section, we will learn about: The purpose of mathematical models. MATHEMATICAL MODELS A mathematical

More information

Preliminary Examination in Numerical Analysis

Preliminary Examination in Numerical Analysis Department of Applied Mathematics Preliminary Examination in Numerical Analysis August 7, 06, 0 am pm. Submit solutions to four (and no more) of the following six problems. Show all your work, and justify

More information

USING THE TI-89 TO DELVE DEEPER INTO THE GRAPHS OF POLYNOMIAL FUNCTIONS. Jay L. Schiffman. Rowan University. 201 Mullica Hill Road

USING THE TI-89 TO DELVE DEEPER INTO THE GRAPHS OF POLYNOMIAL FUNCTIONS. Jay L. Schiffman. Rowan University. 201 Mullica Hill Road 5 th ANNIVERSARY International Conference on Technology in Collegiate Mathematics USING THE TI-89 TO DELVE DEEPER INTO THE GRAPHS OF POLYNOMIAL FUNCTIONS Jay L. Schiffman Rowan University 0 Mullica Hill

More information

Review of Section 1.1. Mathematical Models. Review of Section 1.1. Review of Section 1.1. Functions. Domain and range. Piecewise functions

Review of Section 1.1. Mathematical Models. Review of Section 1.1. Review of Section 1.1. Functions. Domain and range. Piecewise functions Review of Section 1.1 Functions Mathematical Models Domain and range Piecewise functions January 19, 2017 Even and odd functions Increasing and decreasing functions Mathematical Models January 19, 2017

More information

Sect 2.4 Linear Functions

Sect 2.4 Linear Functions 36 Sect 2.4 Linear Functions Objective 1: Graphing Linear Functions Definition A linear function is a function in the form y = f(x) = mx + b where m and b are real numbers. If m 0, then the domain and

More information

Lesson 6: Switching Between Forms of Quadratic Equations Unit 5 Quadratic Functions

Lesson 6: Switching Between Forms of Quadratic Equations Unit 5 Quadratic Functions (A) Lesson Context BIG PICTURE of this UNIT: CONTEXT of this LESSON: How do we analyze and then work with a data set that shows both increase and decrease What is a parabola and what key features do they

More information

Algebra 1. Correlated to the Texas Essential Knowledge and Skills. TEKS Units Lessons

Algebra 1. Correlated to the Texas Essential Knowledge and Skills. TEKS Units Lessons Algebra 1 Correlated to the Texas Essential Knowledge and Skills TEKS Units Lessons A1.1 Mathematical Process Standards The student uses mathematical processes to acquire and demonstrate mathematical understanding.

More information

2. If the discriminant of a quadratic equation is zero, then there (A) are 2 imaginary roots (B) is 1 rational root

2. If the discriminant of a quadratic equation is zero, then there (A) are 2 imaginary roots (B) is 1 rational root Academic Algebra II 1 st Semester Exam Mr. Pleacher Name I. Multiple Choice 1. Which is the solution of x 1 3x + 7? (A) x -4 (B) x 4 (C) x -4 (D) x 4. If the discriminant of a quadratic equation is zero,

More information

2012 Texas Essential Knowledge and Skills for Algebra II in Pearson Texas Algebra II

2012 Texas Essential Knowledge and Skills for Algebra II in Pearson Texas Algebra II 2012 Texas Essential Knowledge and Skills for Algebra II in Pearson Texas Algebra II The following table shows where each of the from the 2012 Texas Essential Knowledge and Skills (TEKS) for Algebra II

More information

When a is positive, the parabola opens up and has a minimum When a is negative, the parabola opens down and has a maximum

When a is positive, the parabola opens up and has a minimum When a is negative, the parabola opens down and has a maximum KEY CONCEPTS For a quadratic relation of the form y = ax 2 + c, the maximum or minimum value occurs at c, which is the y-intercept. When a is positive, the parabola opens up and has a minimum When a is

More information

ALGEBRA I FORM I. Textbook: Algebra, Second Edition;Prentice Hall,2002

ALGEBRA I FORM I. Textbook: Algebra, Second Edition;Prentice Hall,2002 ALGEBRA I FORM I Textbook: Algebra, Second Edition;Prentice Hall,00 Prerequisites: Students are expected to have a knowledge of Pre Algebra and proficiency of basic math skills including: positive and

More information

Algebra II Assessment. Eligible Texas Essential Knowledge and Skills

Algebra II Assessment. Eligible Texas Essential Knowledge and Skills Algebra II Assessment Eligible Texas Essential Knowledge and Skills STAAR Algebra II Assessment Mathematical Process Standards These student expectations will not be listed under a separate reporting category.

More information

Algebra 2 Summer Review Packet

Algebra 2 Summer Review Packet Algebra Summer Review Packet Welcome to Algebra! Attached you will find the learning targets your teacher thinks you should know BEFORE you come to class in the fall and problems to help you practice these

More information

MA.8.1 Students will apply properties of the real number system to simplify algebraic expressions and solve linear equations.

MA.8.1 Students will apply properties of the real number system to simplify algebraic expressions and solve linear equations. Focus Statement: Students will solve multi-step linear, quadratic, and compound equations and inequalities using the algebraic properties of the real number system. They will also graph linear and quadratic

More information

5. Polynomial Functions and Equations

5. Polynomial Functions and Equations 5. Polynomial Functions and Equations 1. Polynomial equations and roots. Solving polynomial equations in the chemical context 3. Solving equations of multiple unknowns 5.1. Polynomial equations and roots

More information

Graphing and Writing Linear Equations Review 3.1, 3.3, & 4.4. Name: Date: Period:

Graphing and Writing Linear Equations Review 3.1, 3.3, & 4.4. Name: Date: Period: Graphing and Writing Linear Equations Review.1,., 4.1-4. & 4.4 Algebra I Name: Date: Period: Quest Topics Section.1 linear versus nonlinear rewrite linear equations in standard form: Ax By C find and use

More information

Module 4: Equations and Inequalities in One Variable

Module 4: Equations and Inequalities in One Variable Module 1: Relationships between quantities Precision- The level of detail of a measurement, determined by the unit of measure. Dimensional Analysis- A process that uses rates to convert measurements from

More information

Algebra I Calculator Activities

Algebra I Calculator Activities First Nine Weeks SOL Objectives Calculating Measures of Central Tendency SOL A.17 Organize a set of data Calculate the mean, median, mode, and range of a set of data Describe the relationships between

More information

New Jersey Quality Single Accountability Continuum (NJQSAC) A-SSE 1-2; A-CED 1,4; A-REI 1-3, F-IF 1-5, 7a

New Jersey Quality Single Accountability Continuum (NJQSAC) A-SSE 1-2; A-CED 1,4; A-REI 1-3, F-IF 1-5, 7a ALGEBRA 2 HONORS Date: Unit 1, September 4-30 How do we use functions to solve real world problems? What is the meaning of the domain and range of a function? What is the difference between dependent variable

More information

Roots are: Solving Quadratics. Graph: y = 2x 2 2 y = x 2 x 12 y = x 2 + 6x + 9 y = x 2 + 6x + 3. real, rational. real, rational. real, rational, equal

Roots are: Solving Quadratics. Graph: y = 2x 2 2 y = x 2 x 12 y = x 2 + 6x + 9 y = x 2 + 6x + 3. real, rational. real, rational. real, rational, equal Solving Quadratics Graph: y = 2x 2 2 y = x 2 x 12 y = x 2 + 6x + 9 y = x 2 + 6x + 3 Roots are: real, rational real, rational real, rational, equal real, irrational 1 To find the roots algebraically, make

More information

SCHOOL OF DISTANCE EDUCATION

SCHOOL OF DISTANCE EDUCATION SCHOOL OF DISTANCE EDUCATION CCSS UG PROGRAMME MATHEMATICS (OPEN COURSE) (For students not having Mathematics as Core Course) MM5D03: MATHEMATICS FOR SOCIAL SCIENCES FIFTH SEMESTER STUDY NOTES Prepared

More information

Final Exam C Name i D) 2. Solve the equation by factoring. 4) x2 = x + 72 A) {1, 72} B) {-8, 9} C) {-8, -9} D) {8, 9} 9 ± i

Final Exam C Name i D) 2. Solve the equation by factoring. 4) x2 = x + 72 A) {1, 72} B) {-8, 9} C) {-8, -9} D) {8, 9} 9 ± i Final Exam C Name First, write the value(s) that make the denominator(s) zero. Then solve the equation. 7 ) x + + 3 x - = 6 (x + )(x - ) ) A) No restrictions; {} B) x -, ; C) x -; {} D) x -, ; {2} Add

More information

correlated to the Utah 2007 Secondary Math Core Curriculum Algebra 1

correlated to the Utah 2007 Secondary Math Core Curriculum Algebra 1 correlated to the Utah 2007 Secondary Math Core Curriculum Algebra 1 McDougal Littell Algebra 1 2007 correlated to the Utah 2007 Secondary Math Core Curriculum Algebra 1 The main goal of Algebra is to

More information

Curriculum Map Grade 8 Math

Curriculum Map Grade 8 Math Curriculum Map Grade 8 Math Sept. Oct. Nov. Dec. Jan. September 6 October 5 October 9 November 2 November 5 - November 30 December 3 December 21 January 2 January 16 G R A D E 8 Solving Equations: ~Solving

More information

Algebra II with Trig 3 rd Nine Weeks Pacing Guide Grade 11

Algebra II with Trig 3 rd Nine Weeks Pacing Guide Grade 11 2017-2018 Grade 11 Week 1 (1/8-1/12) 6-1, 6-2, 6-3 First Semester Report Cards go home January 10 th Week 2 (1/15-1/19) 6-4, 6-5 24. [A-REI.12T] Solve simple rational and radical equations in one variable,

More information

2.1 Quadratic Functions

2.1 Quadratic Functions Date:.1 Quadratic Functions Precalculus Notes: Unit Polynomial Functions Objective: The student will sketch the graph of a quadratic equation. The student will write the equation of a quadratic function.

More information

Homework. Basic properties of real numbers. Adding, subtracting, multiplying and dividing real numbers. Solve one step inequalities with integers.

Homework. Basic properties of real numbers. Adding, subtracting, multiplying and dividing real numbers. Solve one step inequalities with integers. Morgan County School District Re-3 A.P. Calculus August What is the language of algebra? Graphing real numbers. Comparing and ordering real numbers. Finding absolute value. September How do you solve one

More information

Basic properties of real numbers. Solving equations and inequalities. Homework. Solve and write linear equations.

Basic properties of real numbers. Solving equations and inequalities. Homework. Solve and write linear equations. August Equations and inequalities S. 1.1a,1.2a,1.3a, 2.1a, 2.3 a-c, 6.2a. Simplifying expressions. Algebra II Honors Textbook Glencoe McGraw Hill Algebra II and supplements McDougal Littell Houghton Miffin

More information

Quantile Textbook Report

Quantile Textbook Report Quantile Textbook Report Algebra 1 Author Charles, Randall I., et al StateEdition West Virginia Grade Algebra 1 1 Foundations for Algebra 1.1 Variables and Expressions 750Q 1.2 Order of Operations and

More information