Fault Tolerant Computing CS 530DL

Size: px
Start display at page:

Download "Fault Tolerant Computing CS 530DL"

Transcription

1 Fault Tolerant Computing CS 530DL Additional Lecture Notes Modeling Yashwant K. Malaiya Colorado State University March 8,

2 Quantitative models Derived from first principles: Arguments are actual things measured Example: monthly mortgage payment rp c = 1 (1 + r) N Empirical Arguments are just parameters Example Ideal body weight in kg = a+b (height in in. - c) Men: a=52 kg, b= 1.9, c = 60 in. Combined Empirical with interpretation of parameters From first principles, adjusted to fit March 8,

3 Derived using first principles Obtain model Understand how things work Use approximations Derive formulas Validate: Get real data See if it fits. If not, Make adjustments Get alternative models Use the model Plug in values to estimate March 8,

4 Empirical models Look at data See if it resembles a function Linear, quadratic, logarithmic, exponential.. Involving 1, 2 or more parameters See if it fits If not try something more complex If it fits, see if an interpretation of the parameters is possibile Not necessary, but will be good. March 8,

5 Curve fitting Get x-axis and y-axis numbers (x i, y i ). Draw a scatter plot. Fit using Excel: linest( ) or logest( ) functions Select plot, rc, add trendline, select display options Use Solver for general fitting March 8,

6 Branch Cov Defects Example Defects y = x R² = Defects Linear (Defects) March 8,

7 Curve fitting vs Predictive Capability A good model has good predictive capabilities. Curve fitting partial data may not necessarily identify the best model. March 8,

8 Copyright The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 5

9 Curve Fitting Often, we have data points and we want to find an equation that fits the data Simplest equation is that of a straight line

10 Curve Fitting Example A spring is placed between two flat plates and force is slowly applied to the upper plate, causing the spring to compress. When the force reaches a pre-load value of 25 N, the location of the upper plate is recorded. As the upper plate continues to move, the distance that the top plate moves, d, and the force required to move the plate, F, are recorded. As soon as the upper plate has moved 10 mm, the test is ended. F

11 Curve Fitting Example Data from the test is shown here. The slope of the load-displacement curve is called the spring constant.

12 Curve Fitting Example Data from a test how do we find the slope? We could draw in a line by hand and estimate its slope by estimating the coordinates of two points

13 Curve Fitting Example How do we find the line that best fits the data? Find the equation of the line that minimizes the sum of the squares of the differences between the values predicted from the equation and the actual data values Why do we square the differences? Because we are interested in the magnitudes of the differences. If one point is above the line and other is below it, we don t want these difference to cancel each other

14 Curve Fit Parameters In Excel, we can choose to have the equation of the bestfit line (the trendline) displayed in the form where and m = the slope of the line b = the intercept of the line with the y-axis

15 Equation of Trendline In this example, the slope of the line (the stiffness of the spring) equals 72.3 N/mm When the deflection (x) equals zero, the force (y) equals 23.1 pounds. This is consistent with our nominal pre-load of 25 pounds

16 Correlation Coefficient The correlation coefficient (R 2 ) is a measure of how well the trendline fits the data A value of one represents a perfect fit In our example, the line fit is very good

17 Curve Fitting Example Consider these five data points: x y

18 Linear Curve Fit Poor Fit

19 Try Second Order Polynomial Fit Better, but still not very good

20 Third-Order Polynomial Fit Perfect Fit! These point were calculated from the equation:

21 Correlation Coefficient A good fit to data is relative In the case of the spring example, the data should fit a mathematical model, and so an R 2 value of close to one is expected For other cases, a much lower R 2 value is expected Consider a comparison of final exam scores in a class vs. homework averages We would expect that students who do well on HW will generally do well on the final exam, but there will be exceptions

22 Exam vs. HW Example Note the presence of outliers data points that don t fit the trend However, there is clearly a trend in the data

23 Exponential and Power Equations Consider this equation: Here is a graph of the equation:

24 Exponential Equation If we plot the ln(y) instead of y, then we have the equation of a straight line

25 Exponential Equation This plot is not particularly useful, since it requires us to read the ln of the dependent variable y, instead of y itself

26 Exponential Equation A better way is to display the y values on a logarithmic scale:

27 Exponential Equation We call this a semi-log plot since one of the axes is logarithmic Note that we have used a base-10 scale: remember that a logarithm can be converted to a logarithm of another base by multiplying by a constant: Therefore, the equation will produce a straight line on semi-log axes regardless of the base of the logarithmic scale. Base 10 normally used easiest to read Logarithmic scales can be specified in Excel and MATLAB

28 Power Equation Consider the equation for the volume of a sphere: Plot:

29 Power Equations If we plot the log(y) and log(x), then we have the equation of a straight line

30 Power Equations This is called a log-log plot, since both axes are logarithmic

3 Inequalities Absolute Values Inequalities and Intervals... 18

3 Inequalities Absolute Values Inequalities and Intervals... 18 Contents 1 Real Numbers, Exponents, and Radicals 1.1 Rationalizing the Denominator................................... 1. Factoring Polynomials........................................ 1. Algebraic and Fractional

More information

A factor times a logarithm can be re-written as the argument of the logarithm raised to the power of that factor

A factor times a logarithm can be re-written as the argument of the logarithm raised to the power of that factor In this section we will be working with Properties of Logarithms in an attempt to take equations with more than one logarithm and condense them down into just a single logarithm. Properties of Logarithms:

More information

Curve Fitting. Least Squares Regression. Linear Regression

Curve Fitting. Least Squares Regression. Linear Regression Curve Fitting Curve fitting is expressing or modelling a discrete set of data points as a continuous function. There are two main branches of curve fitting which are regression and interpolation. Regression

More information

Solutions to Problems and

Solutions to Problems and Solutions to Problems 1.2.24 and 1.2.27 Will Johnson September 6, 2014 Since people asked me about these problems, I said I d write up some solutions. (27) A general power function looks like f(x) = cx

More information

Math 1320, Section 10 Quiz IV Solutions 20 Points

Math 1320, Section 10 Quiz IV Solutions 20 Points Math 1320, Section 10 Quiz IV Solutions 20 Points Please answer each question. To receive full credit you must show all work and give answers in simplest form. Cell phones and graphing calculators are

More information

36-309/749 Math Review 2014

36-309/749 Math Review 2014 36-309/749 Math Review 2014 The math content of 36-309 is not high. We will use algebra, including logs. We will not use calculus or matrix algebra. This optional handout is intended to help those students

More information

Lecture 12. Functional form

Lecture 12. Functional form Lecture 12. Functional form Multiple linear regression model β1 + β2 2 + L+ β K K + u Interpretation of regression coefficient k Change in if k is changed by 1 unit and the other variables are held constant.

More information

An introduction to plotting data

An introduction to plotting data An introduction to plotting data Eric D. Black California Institute of Technology v2.0 1 Introduction Plotting data is one of the essential skills every scientist must have. We use it on a near-daily basis

More information

Exponential and Logarithmic Functions. Copyright Cengage Learning. All rights reserved.

Exponential and Logarithmic Functions. Copyright Cengage Learning. All rights reserved. 3 Exponential and Logarithmic Functions Copyright Cengage Learning. All rights reserved. 3.2 Logarithmic Functions and Their Graphs Copyright Cengage Learning. All rights reserved. What You Should Learn

More information

Approximate Linear Relationships

Approximate Linear Relationships Approximate Linear Relationships In the real world, rarely do things follow trends perfectly. When the trend is expected to behave linearly, or when inspection suggests the trend is behaving linearly,

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

Algebra 1A is a prerequisite course for Algebra 1B. Before beginning this course, you should be able to do the following:

Algebra 1A is a prerequisite course for Algebra 1B. Before beginning this course, you should be able to do the following: Syllabus Algebra 1B Course Overview Algebra is a branch of mathematics that uses symbols in place of numbers to describe and generalize relationships. You already have experience with expressions containing

More information

Lesson 6b Rational Exponents & Radical Functions

Lesson 6b Rational Exponents & Radical Functions Lesson 6b Rational Exponents & Radical Functions In this lesson, we will continue our review of Properties of Exponents and will learn some new properties including those dealing with Rational and Radical

More information

Section 5.1 Determine if a function is a polynomial function. State the degree of a polynomial function.

Section 5.1 Determine if a function is a polynomial function. State the degree of a polynomial function. Test Instructions Objectives Section 5.1 Section 5.1 Determine if a function is a polynomial function. State the degree of a polynomial function. Form a polynomial whose zeros and degree are given. Graph

More information

CURRICULUM CATALOG. Algebra II (3135) VA

CURRICULUM CATALOG. Algebra II (3135) VA 2018-19 CURRICULUM CATALOG Algebra II (3135) VA Table of Contents COURSE OVERVIEW... 1 UNIT 1: STRUCTURE AND FUNCTIONS... 1 UNIT 2: LINEAR FUNCTIONS... 2 UNIT 3: INEQUALITIES AND ABSOLUTE VALUE... 2 UNIT

More information

+ i sin. + i sin. = 2 cos

+ i sin. + i sin. = 2 cos Math 11 Lesieutre); Exam review I; December 4, 017 1. a) Find all complex numbers z for which z = 8. Write your answers in rectangular non-polar) form. We are going to use de Moivre s theorem. For 1, r

More information

Intermediate Algebra Chapter 12 Review

Intermediate Algebra Chapter 12 Review Intermediate Algebra Chapter 1 Review Set up a Table of Coordinates and graph the given functions. Find the y-intercept. Label at least three points on the graph. Your graph must have the correct shape.

More information

Math 120. x x 4 x. . In this problem, we are combining fractions. To do this, we must have

Math 120. x x 4 x. . In this problem, we are combining fractions. To do this, we must have Math 10 Final Eam Review 1. 4 5 6 5 4 4 4 7 5 Worked out solutions. In this problem, we are subtracting one polynomial from another. When adding or subtracting polynomials, we combine like terms. Remember

More information

First Derivative Test

First Derivative Test MA 2231 Lecture 22 - Concavity and Relative Extrema Wednesday, November 1, 2017 Objectives: Introduce the Second Derivative Test and its limitations. First Derivative Test When looking for relative extrema

More information

Practice Calculus Test without Trig

Practice Calculus Test without Trig Practice Calculus Test without Trig The problems here are similar to those on the practice test Slight changes have been made 1 What is the domain of the function f (x) = 3x 1? Express the answer in interval

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 2. Polynomial and Rational Functions. 2.5 Zeros of Polynomial Functions

Chapter 2. Polynomial and Rational Functions. 2.5 Zeros of Polynomial Functions Chapter 2 Polynomial and Rational Functions 2.5 Zeros of Polynomial Functions 1 / 33 23 Chapter 2 Homework 2.5 p335 6, 8, 10, 12, 16, 20, 24, 28, 32, 34, 38, 42, 46, 50, 52 2 / 33 23 3 / 33 23 Objectives:

More information

8 + 6) x 2 ) y = h(x)

8 + 6) x 2 ) y = h(x) . a. Horizontal shift 6 left and vertical shift up. Notice B' is ( 6, ) and B is (0, 0). b. h(x) = 0.5(x + 6) + (Enter in a grapher to check.) c. Use the graph. Notice A' to see h(x) crosses the x-axis

More information

Since x + we get x² + 2x = 4, or simplifying it, x² = 4. Therefore, x² + = 4 2 = 2. Ans. (C)

Since x + we get x² + 2x = 4, or simplifying it, x² = 4. Therefore, x² + = 4 2 = 2. Ans. (C) SAT II - Math Level 2 Test #01 Solution 1. x + = 2, then x² + = Since x + = 2, by squaring both side of the equation, (A) - (B) 0 (C) 2 (D) 4 (E) -2 we get x² + 2x 1 + 1 = 4, or simplifying it, x² + 2

More information

AP Calculus Summer Homework

AP Calculus Summer Homework Class: Date: AP Calculus Summer Homework Show your work. Place a circle around your final answer. 1. Use the properties of logarithms to find the exact value of the expression. Do not use a calculator.

More information

Logarithmic Functions and Their Graphs

Logarithmic Functions and Their Graphs Section 3. Logarithmic Functions and Their Graphs Look at the graph of f(x) = x Does this graph pass the Horizontal Line Test? es What does this mean? that its inverse is a function Find the inverse of

More information

Algebra 2: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney

Algebra 2: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney Algebra 2: Semester 2 Practice Final Unofficial Worked Out Solutions by Earl Whitney 1. The key to this problem is recognizing cubes as factors in the radicands. 24 16 5 2. The key to this problem is recognizing

More information

6.6 General Form of the Equation for a Linear Relation

6.6 General Form of the Equation for a Linear Relation 6.6 General Form of the Equation for a Linear Relation FOCUS Relate the graph of a line to its equation in general form. We can write an equation in different forms. y 0 6 5 y 10 = 0 An equation for this

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

Part I: Multiple Choice Questions

Part I: Multiple Choice Questions Name: Part I: Multiple Choice Questions. What is the slope of the line y=3 A) 0 B) -3 ) C) 3 D) Undefined. What is the slope of the line perpendicular to the line x + 4y = 3 A) -/ B) / ) C) - D) 3. Find

More information

Since the logs have the same base, I can set the arguments equal and solve: x 2 30 = x x 2 x 30 = 0

Since the logs have the same base, I can set the arguments equal and solve: x 2 30 = x x 2 x 30 = 0 LOGARITHMIC EQUATIONS (LOGS) 1 Type 1: The first type of logarithmic equation has two logs, each having the same base, set equal to each other, and you solve by setting the insides (the "arguments") equal

More information

Keystone Exams: Algebra

Keystone Exams: Algebra KeystoneExams:Algebra TheKeystoneGlossaryincludestermsanddefinitionsassociatedwiththeKeystoneAssessmentAnchorsand Eligible Content. The terms and definitions included in the glossary are intended to assist

More information

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University

Project Two. James K. Peterson. March 26, Department of Biological Sciences and Department of Mathematical Sciences Clemson University Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 26, 2019 Outline 1 Cooling Models 2 Estimating the Cooling Rate k 3 Typical

More information

MATH 408N PRACTICE MIDTERM 1

MATH 408N PRACTICE MIDTERM 1 02/0/202 Bormashenko MATH 408N PRACTICE MIDTERM Show your work for all the problems. Good luck! () (a) [5 pts] Solve for x if 2 x+ = 4 x Name: TA session: Writing everything as a power of 2, 2 x+ = (2

More information

EPPING HIGH SCHOOL ALGEBRA 2 Concepts COURSE SYLLABUS

EPPING HIGH SCHOOL ALGEBRA 2 Concepts COURSE SYLLABUS Course Title: Algebra 2 Concepts Course Description Algebra 2 Concepts is designed for students who wish to take an Algebra 2 course at a non college prep level. The class will begin with a review of Algebra

More information

Modeling Data with Functions

Modeling Data with Functions Chapter 11 Modeling Data with Functions 11.1 Data Modeling Concepts 1 11.1.1 Conceptual Explanations: Modeling Data with Functions In school, you generally start with a function and work from there to

More information

COURSE SYLLABUS Part I Course Title: MATH College Algebra Credit Hours: 4, (4 Lecture 0 Lab G) OTM-TMM001

COURSE SYLLABUS Part I Course Title: MATH College Algebra Credit Hours: 4, (4 Lecture 0 Lab G) OTM-TMM001 COURSE SYLLABUS Part I Course Title: MATH 1340 - College Algebra Credit Hours: 4, (4 Lecture 0 Lab G) OTM-TMM001 Course Description: College Algebra in conjunction with MATH 1350, Pre-Calculus, provides

More information

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session

Project Two. Outline. James K. Peterson. March 27, Cooling Models. Estimating the Cooling Rate k. Typical Cooling Project Matlab Session Project Two James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University March 27, 2018 Outline Cooling Models Estimating the Cooling Rate k Typical Cooling

More information

PRACTICE FINAL , FALL What will NOT be on the final

PRACTICE FINAL , FALL What will NOT be on the final PRACTICE FINAL - 1010-004, FALL 2013 If you are completing this practice final for bonus points, please use separate sheets of paper to do your work and circle your answers. Turn in all work you did to

More information

Calculus first semester exam information and practice problems

Calculus first semester exam information and practice problems Calculus first semester exam information and practice problems As I ve been promising for the past year, the first semester exam in this course encompasses all three semesters of Math SL thus far. It is

More information

Algebra 1. Standard 1: Operations With Real Numbers Students simplify and compare expressions. They use rational exponents and simplify square roots.

Algebra 1. Standard 1: Operations With Real Numbers Students simplify and compare expressions. They use rational exponents and simplify square roots. Standard 1: Operations With Real Numbers Students simplify and compare expressions. They use rational exponents and simplify square roots. A1.1.1 Compare real number expressions. A1.1.2 Simplify square

More information

INSTRUCTIONS USEFUL FORMULAS

INSTRUCTIONS USEFUL FORMULAS MATH 1100 College Algebra Spring 18 Exam 1 February 15, 2018 Name Student ID Instructor Class time INSTRUCTIONS 1. Do not open until you are told to do so. 2. Do not ask questions during the exam. 3. CAREFULLY

More information

LAB 05B: Friction 2 times PURPOSE BACKGROUND MATERIALS PRELIMINARY QUESTIONS: (TO DO BEFORE THE LAB!!) Lab 05B: Friction 1/5 Mr.

LAB 05B: Friction 2 times PURPOSE BACKGROUND MATERIALS PRELIMINARY QUESTIONS: (TO DO BEFORE THE LAB!!) Lab 05B: Friction 1/5 Mr. LAB 05B: Friction 2 times PURPOSE To investigate how friction is related to other variable such as the normal force, weight, and surface coefficients. In this experiment we will determine the static and

More information

3.3 Linear Equations in Standard Form

3.3 Linear Equations in Standard Form 3.3 Linear Equations in Standard Form Learning Objectives Write equivalent equations in standard form. Find the slope and y intercept from an equation in standard form. Write equations in standard form

More information

Example. Determine the inverse of the given function (if it exists). f(x) = 3

Example. Determine the inverse of the given function (if it exists). f(x) = 3 Example. Determine the inverse of the given function (if it exists). f(x) = g(x) = p x + x We know want to look at two di erent types of functions, called logarithmic functions and exponential functions.

More information

Economics 101 Homework #1 Answer Key Spring Math Review a. The drawing is as follows:

Economics 101 Homework #1 Answer Key Spring Math Review a. The drawing is as follows: Economics 101 Homework #1 Answer Key Spring 2009 1. Math Review a. The drawing is as follows: b. There are several ways of getting the equation. The simplest one is as follows. We are looking for the equation

More information

Chapter 3: Examining Relationships

Chapter 3: Examining Relationships Chapter 3: Examining Relationships Most statistical studies involve more than one variable. Often in the AP Statistics exam, you will be asked to compare two data sets by using side by side boxplots or

More information

Algebra Performance Level Descriptors

Algebra Performance Level Descriptors Limited A student performing at the Limited Level demonstrates a minimal command of Ohio s Learning Standards for Algebra. A student at this level has an emerging ability to A student whose performance

More information

Replacing the a in the definition of the derivative of the function f at a with a variable x, gives the derivative function f (x).

Replacing the a in the definition of the derivative of the function f at a with a variable x, gives the derivative function f (x). Definition of The Derivative Function Definition (The Derivative Function) Replacing the a in the definition of the derivative of the function f at a with a variable x, gives the derivative function f

More information

GLOBAL POPULATION notes Hon A&S 222a 2006 P.B.Rhines 5.5%

GLOBAL POPULATION notes Hon A&S 222a 2006 P.B.Rhines 5.5% GLOBAL POPULATION notes Hon A&S 222a 2006 P.B.Rhines Below are estimates of the world s population from the year 1 A.D. to 2050 A.D. Plot these on the two graphs below. Call population P and time in years

More information

Chapter One: Pre-Geometry

Chapter One: Pre-Geometry Chapter One: Pre-Geometry Index: A: Solving Equations B: Factoring (GCF/DOTS) C: Factoring (Case Two leading into Case One) D: Factoring (Case One) E: Solving Quadratics F: Parallel and Perpendicular Lines

More information

Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials

Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials Math 10b Ch. 8 Reading 1: Introduction to Taylor Polynomials Introduction: In applications, it often turns out that one cannot solve the differential equations or antiderivatives that show up in the real

More information

MA 1128: Lecture 08 03/02/2018. Linear Equations from Graphs And Linear Inequalities

MA 1128: Lecture 08 03/02/2018. Linear Equations from Graphs And Linear Inequalities MA 1128: Lecture 08 03/02/2018 Linear Equations from Graphs And Linear Inequalities Linear Equations from Graphs Given a line, we would like to be able to come up with an equation for it. I ll go over

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

Unit 1 Physics Holiday Homework. Due 1 st day of Term 1, 2013

Unit 1 Physics Holiday Homework. Due 1 st day of Term 1, 2013 Unit 1 Physics Holiday Homework. Due 1 st day of Term 1, 2013 The following work is due at the start of Term 1: All questions from Exercises 1.1 and 1.2 of the Heinemann Physics 11 textbook Complete the

More information

PENNSYLVANIA. There are laws for performing mathematical operations to ensure that the values obtained will be consistent. Absolute value.

PENNSYLVANIA. There are laws for performing mathematical operations to ensure that the values obtained will be consistent. Absolute value. Topic: 1. Real Numbers Days: 15 Know: Understand: Do: Absolute value Number Sets Vocabulary: integers rational numbers irrational numbers simplify evaluate There are laws for performing mathematical operations

More information

Math Exam Jam Solutions. Contents. 1 Linear Inequalities and Absolute Value Equations 2

Math Exam Jam Solutions. Contents. 1 Linear Inequalities and Absolute Value Equations 2 Math 11100 Exam Jam Solutions Contents 1 Linear Inequalities and Absolute Value Equations 2 2 Linear Equations, Graphing and Solving Systems of Equations 4 3 Polynomials and Rational Expressions 13 4 Radical

More information

2015 2nd Semester Exam Review

2015 2nd Semester Exam Review Algebra 2 2015 2nd Semester Exam Review 1. Write a function whose graph is a translation of the graph of the function in two directions. Describe the translation. 2. What are the solutions to the equation?

More information

MATH 1130 Exam 1 Review Sheet

MATH 1130 Exam 1 Review Sheet MATH 1130 Exam 1 Review Sheet The Cartesian Coordinate Plane The Cartesian Coordinate Plane is a visual representation of the collection of all ordered pairs (x, y) where x and y are real numbers. This

More information

BHASVIC MαTHS. Convert the below into the form ax m + bx n : (b) (c) (e) (f)

BHASVIC MαTHS. Convert the below into the form ax m + bx n : (b) (c) (e) (f) Convert the below into the form ax m + bx n : (a) 1+5x 4x 1 (b) 3x 4 x x 3 (c) 4 16x 3 3 27x 3 2x 2 (d) 4 5x 3x 2 (e) (f) 4x 3 1 2x 3 x 4x+ 81x2 9 x 2 Co-ordinate Geometry line The equation of straight

More information

Radicals: To simplify means that 1) no radicand has a perfect square factor and 2) there is no radical in the denominator (rationalize).

Radicals: To simplify means that 1) no radicand has a perfect square factor and 2) there is no radical in the denominator (rationalize). Summer Review Packet for Students Entering Prealculus Radicals: To simplify means that 1) no radicand has a perfect square factor and ) there is no radical in the denominator (rationalize). Recall the

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 2 - LINEAR EQUATIONS AND GRAPHS On completion of this unit a learner should: 1 Know how to use algebraic

More information

Math 251 Midterm II Information Spring 2018

Math 251 Midterm II Information Spring 2018 Math 251 Midterm II Information Spring 2018 WHEN: Thursday, April 12 (in class). You will have the entire period (125 minutes) to work on the exam. RULES: No books or notes. You may bring a non-graphing

More information

Trinity Area School District Template for Curriculum Mapping

Trinity Area School District Template for Curriculum Mapping Trinity Area School District Template for Curriculum Mapping Course: Common Core Math 8 Pre-Algebra Grade: 8 Overview of Course (Briefly describe what students should understand and be able to do as a

More information

Math 1302 Notes 2. How many solutions? What type of solution in the real number system? What kind of equation is it?

Math 1302 Notes 2. How many solutions? What type of solution in the real number system? What kind of equation is it? Math 1302 Notes 2 We know that x 2 + 4 = 0 has How many solutions? What type of solution in the real number system? What kind of equation is it? What happens if we enlarge our current system? Remember

More information

VOYAGER INSIDE ALGEBRA CORRELATED TO THE NEW JERSEY STUDENT LEARNING OBJECTIVES AND CCSS.

VOYAGER INSIDE ALGEBRA CORRELATED TO THE NEW JERSEY STUDENT LEARNING OBJECTIVES AND CCSS. We NJ Can STUDENT Early Learning LEARNING Curriculum OBJECTIVES PreK Grades 8 12 VOYAGER INSIDE ALGEBRA CORRELATED TO THE NEW JERSEY STUDENT LEARNING OBJECTIVES AND CCSS www.voyagersopris.com/insidealgebra

More information

7.3 Hyperbolic Functions Hyperbolic functions are similar to trigonometric functions, and have the following

7.3 Hyperbolic Functions Hyperbolic functions are similar to trigonometric functions, and have the following Math 2-08 Rahman Week3 7.3 Hyperbolic Functions Hyperbolic functions are similar to trigonometric functions, and have the following definitions: sinh x = 2 (ex e x ) cosh x = 2 (ex + e x ) tanh x = sinh

More information

How to use these notes

How to use these notes Chapter How to use these notes These notes were prepared for the University of Utah s Math 00 refresher course. They asssume that the user has had the Math 00 course Intermediate Algebra or its equivalent

More information

USING THE EXCEL CHART WIZARD TO CREATE CURVE FITS (DATA ANALYSIS).

USING THE EXCEL CHART WIZARD TO CREATE CURVE FITS (DATA ANALYSIS). USING THE EXCEL CHART WIZARD TO CREATE CURVE FITS (DATA ANALYSIS). Note to physics students: Even if this tutorial is not given as an assignment, you are responsible for knowing the material contained

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

Summer Packet Geometry PAP

Summer Packet Geometry PAP Summer Packet Geometry PAP IMPORTANT INSTRUCTIONS FOR STUDENTS!!! We understand that students come to Geometry with different strengths and needs. For this reason, students have options for completing

More information

Unit 5 Solving Quadratic Equations

Unit 5 Solving Quadratic Equations SM Name: Period: Unit 5 Solving Quadratic Equations 5.1 Solving Quadratic Equations by Factoring Quadratic Equation: Any equation that can be written in the form a b c + + = 0, where a 0. Zero Product

More information

3.9 Is This The End? A Solidify Understanding Task

3.9 Is This The End? A Solidify Understanding Task 3.9 Is This The End? A Solidify Understanding Task In previous mathematics courses, you have compared and analyzed growth rates of polynomial (mostly linear and quadratic) and exponential functions. In

More information

What students need to know for PRE-CALCULUS Students expecting to take Pre-Calculus should demonstrate the ability to:

What students need to know for PRE-CALCULUS Students expecting to take Pre-Calculus should demonstrate the ability to: What students need to know for PRE-CALCULUS 2014-2015 Students expecting to take Pre-Calculus should demonstrate the ability to: General: keep an organized notebook take good notes complete homework every

More information

Course: Algebra MP: Reason abstractively and quantitatively MP: Model with mathematics MP: Look for and make use of structure

Course: Algebra MP: Reason abstractively and quantitatively MP: Model with mathematics MP: Look for and make use of structure Algebra Cluster: Interpret the structure of expressions. A.SSE.1: Interpret expressions that represent a quantity in terms of its context (Modeling standard). a. Interpret parts of an expression, such

More information

Learning Packet Grading Form

Learning Packet Grading Form Learning Packet Grading Form Student Name Due Date Online or Hybrid Submission Date Mini-Lesson Online HW, Quiz, Test Support Test Corrections Grading Rubric To complete the MiniLesson, Transcribe Media

More information

Conceptual Explanations: Simultaneous Equations Distance, rate, and time

Conceptual Explanations: Simultaneous Equations Distance, rate, and time Conceptual Explanations: Simultaneous Equations Distance, rate, and time If you travel 30 miles per hour for 4 hours, how far do you go? A little common sense will tell you that the answer is 120 miles.

More information

College Algebra. Course Text. Course Description. Course Objectives. StraighterLine MAT101: College Algebra

College Algebra. Course Text. Course Description. Course Objectives. StraighterLine MAT101: College Algebra College Algebra Course Text Barnett, Raymond A., Michael R. Ziegler, and Karl E. Byleen. College Algebra, 8th edition, McGraw-Hill, 2008, ISBN: 9780072867381 [This text is available as an etextbook at

More information

EPPING HIGH SCHOOL ALGEBRA 2 COURSE SYLLABUS

EPPING HIGH SCHOOL ALGEBRA 2 COURSE SYLLABUS Course Title: Algebra 2 Course Description This course is designed to be the third year of high school mathematics. The material covered is roughly equivalent to that covered in the first Algebra course

More information

SOLVING QUADRATICS. Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources

SOLVING QUADRATICS. Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources SOLVING QUADRATICS Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources SOLVING QUADRATICS General Form: y a b c Where a, b and c are constants To solve a quadratic equation, the equation

More information

Mathematics Textbook Correlation to the 2016 Algebra I Standards of Learning and Curriculum Framework

Mathematics Textbook Correlation to the 2016 Algebra I Standards of Learning and Curriculum Framework and Curriculum Framework Publisher: McGraw-Hill School Education Text: Algebra 1 Copyright date 2018 A.1 The student will a) represent verbal quantitative situations algebraically; and TE: 5-9, 23-29,

More information

SUMMER REVIEW PACKET. Name:

SUMMER REVIEW PACKET. Name: Wylie East HIGH SCHOOL SUMMER REVIEW PACKET For students entering Regular PRECALCULUS Name: Welcome to Pre-Calculus. The following packet needs to be finished and ready to be turned the first week of the

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

Pre-Calculus Summer Packet

Pre-Calculus Summer Packet 2013-2014 Pre-Calculus Summer Packet 1. Complete the attached summer packet, which is due on Friday, September 6, 2013. 2. The material will be reviewed in class on Friday, September 6 and Monday, September

More information

Numerical Methods. Lecture Notes #08 Discrete Least Square Approximation

Numerical Methods. Lecture Notes #08 Discrete Least Square Approximation Numerical Methods Discrete Least Square Approximation Pavel Ludvík, March 30, 2016 Department of Mathematics and Descriptive Geometry VŠB-TUO http://homen.vsb.cz/ lud0016/ 1 / 23

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

Linear Regression and Correlation

Linear Regression and Correlation Linear Regression and Correlation Chapter 13 McGraw-Hill/Irwin Copyright 2010 by The McGraw-Hill Companies, Inc. All rights reserved. GOALS 1. Understand and interpret the terms dependent and independent

More information

Final Review. Non-calculator problems are indicated. 1. (No calculator) Graph the function: y = x 3 + 2

Final Review. Non-calculator problems are indicated. 1. (No calculator) Graph the function: y = x 3 + 2 Algebra II Final Review Name Non-calculator problems are indicated. 1. (No calculator) Graph the function: y = x 3 + 2 2. (No calculator) Given the function y = -2 x + 3-1 and the value x = -5, find the

More information

3.9 Is This The End? A Solidify Understanding Task

3.9 Is This The End? A Solidify Understanding Task 3.9 Is This The End? A Solidify Understanding Task In previous mathematics courses, you have compared and analyzed growth rates of polynomial (mostly linear and quadratic) and exponential functions. In

More information

Review. Midterm Exam. Midterm Review. May 6th, 2015 AMS-UCSC. Spring Session 1 (Midterm Review) AMS-5 May 6th, / 24

Review. Midterm Exam. Midterm Review. May 6th, 2015 AMS-UCSC. Spring Session 1 (Midterm Review) AMS-5 May 6th, / 24 Midterm Exam Midterm Review AMS-UCSC May 6th, 2015 Spring 2015. Session 1 (Midterm Review) AMS-5 May 6th, 2015 1 / 24 Topics Topics We will talk about... 1 Review Spring 2015. Session 1 (Midterm Review)

More information

Algebra 1B. Syllabus. Course Overview. Course Goals

Algebra 1B. Syllabus. Course Overview. Course Goals Syllabus Algebra 1B Course Overview Algebra is a branch of mathematics that uses symbols in place of numbers to describe and generalize relationships. In Algebra 1A you worked with expressions containing

More information

LABORATORY NUMBER 9 STATISTICAL ANALYSIS OF DATA

LABORATORY NUMBER 9 STATISTICAL ANALYSIS OF DATA LABORATORY NUMBER 9 STATISTICAL ANALYSIS OF DATA 1.0 INTRODUCTION The purpose of this laboratory is to introduce the student to the use of statistics to analyze data. Using the data acquisition system

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

x is also called the abscissa y is also called the ordinate "If you can create a t-table, you can graph anything!"

x is also called the abscissa y is also called the ordinate If you can create a t-table, you can graph anything! Senior Math Section 6-1 Notes Rectangular Coordinates and Lines Label the following 1. quadrant 1 2. quadrant 2 3. quadrant 3 4. quadrant 4 5. origin 6. x-axis 7. y-axis 8. Ordered Pair (x, y) at (2, 1)

More information

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 2 nd Nine Weeks,

STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II. 2 nd Nine Weeks, STANDARDS OF LEARNING CONTENT REVIEW NOTES ALGEBRA II 2 nd Nine Weeks, 2016-2017 1 OVERVIEW Algebra II Content Review Notes are designed by the High School Mathematics Steering Committee as a resource

More information

4 Exponential and Logarithmic Functions

4 Exponential and Logarithmic Functions 4 Exponential and Logarithmic Functions 4.1 Exponential Functions Definition 4.1 If a > 0 and a 1, then the exponential function with base a is given by fx) = a x. Examples: fx) = x, gx) = 10 x, hx) =

More information

Growth 23%

Growth 23% y 100 0. 4 x Decay 23% Math 109C - Fall 2012 page 16 39. Write the quantity 12,600,000,000 miles in scientific notation. The result is: (A) 12. 6 x 10 9 miles (B) 12. 6 x 10 9 miles (C) 1. 26 x 10 10 miles

More information

ISP 207L Supplementary Information

ISP 207L Supplementary Information ISP 207L Supplementary Information Scientific Notation Numbers written in Scientific Notation are composed of two numbers. 1) Digit term A number between 1 and 10 2) Exponential term Integer power of 10

More information

Algebra , Martin-Gay

Algebra , Martin-Gay A Correlation of Algebra 1 2016, to the Common Core State Standards for Mathematics - Algebra I Introduction This document demonstrates how Pearson s High School Series by Elayn, 2016, meets the standards

More information