Nonlinear regression

Size: px
Start display at page:

Download "Nonlinear regression"

Transcription

1 7//6 Nonlinear regression What is nonlinear model? In general nonlinearit in regression model can be seen as:. Nonlinearit of dependent variable ( ) for eample is binar (logit model), nominal (multivariate nominal model), counts (Poisson model), interval-valued (smbolic data regression), etc.. Nonlinearit within independent variables ( s) until now we have considered a linear relations (dependence, connection) between independent variables. In this case we can have: a) functions (relations) that can be transformed to linear functions, b) Functions (relations) that can not be transformed to linear form

2 7//6 How to detect nonlinearit?. Theor in man sciences we have theories about nonlinear relations within som phenomenon. For eample in economics Laffer curve shows a nonlinear relations between taation and the hpothetical resulting levels of government revenue. Scatterplot when looking at the plot ou can see that data points are not linear or even not nearl linear 3. Seasonalit in data i.e. in agriculture, building industr we often have seasonalit within the data 4. Estimated model does not fit the data well or does not fit it at all; the estimated s are not significant this might suggest nonlinearit 5. Can often do incremental F tests or Wald tests Linear or notlinear? That is the question

3 7//6 Linear or notlinear? That is the question Linear or notlinear? That is the question 3

4 7//6 Linear or notlinear? That is the question Linear or notlinear? That is the question 4

5 7//6 Transformation of nonlinear models to linear models Eponential function: we have to use logarithms: ln ln ( ) ln ln ln we have to substitute: ln, ln, ln and we get linear model: ln ln ln Transformation of nonlinear models to linear models Logarithms: ln we have to substitute: ln and we get linear function: 5

6 7//6 Transformation of nonlinear models to linear models Power function: we have to use logarithms: ln ln ln ( ) ln ln ln we have to substitute: ln, ln, ln and we get linear function: Transformation of nonlinear models to linear models Logistic function: e where: >, > we use substitutions:,,, e 6

7 7//6 7 Transformation of nonlinear models to linear models Hperbolic function: we use substitutions for equation (): and we get: we use substitutions for equation (): to get: () (),,, Nonlinear models in R To estimate nonlinear models (that can be transformed to linear models) we use lm function, but we have to define formula. Some eamples will be presented: (8) (7) (6) (5) (4) log (3) ln ln () () t t t we have to use logarithms for equations 6 and 7

8 7//6 Nonlinear models in R How to appl these functions in formula: Function no. ~ ~- or ~ 3 ~log()log() 4 log()~ Formula 5 ~I(/)sqrt(3)I(4^) 6 log()~ 7 log()~log()log() 8 z.~vv where: z. t, v t-, v t- The nonlinear regression model is the generalization of the linear regression model in which the conditional mean of the response variable is not a linear function of parameters. For eample data about decennial U. S. Census population for the United States (in millions), from 79 through 8

9 7//6 A common simple model for population growth is the logistic growth model: m (,θ) θ ε ε ep [ ( θ θ ) ] where: response, predictor, θ (θ, θ, θ 3 ) parameters Changing θ (theta s) stretches or shrinks the aes, and changes the rate at which the curve varies from its lower value at to its maimum value 3 Let s assume (θ, θ,θ 3 ) 9

10 7//6 In general nonlinear regression model is: ( ) ε m(, ) ε E θ This model posits that the mean E( ) depends on through the kernel mean function m(, θ), where the predictor has one or more components and the parameter vector θ also has one or more components In the logistic growth model consists of the single predictor ear and the parameter vector θ (θ, θ, θ 3 ) has three components The model further assumes that the errors ε are independent with variance σ /w, where the w are known nonnegative weights, and σ is a generall unknown variance to be estimated, in most applications w for all observations. The nls function can be used to estimate θ as the values that minimize the residua sum of squares: S From now on we will use sum of squares θ ( θ) w[ m( θ, ) ] for the minimizer of the residual

11 7//6 Unlike the linear least-squares problem, there is usuall no formula that provides the minimizer of the equation S( θ) w[ m( Rather θ, ) ] than an iterative procedure is used, which in broad outline is as follows: ) The user supplies an initial guess, sa t of starting values for the parameters. Whether or not the algorithm can successfull find a minimizer will depend on getting starting values that are reasonabl close to the solution. We discuss how this might be done for the logistic growth function below. For some special mean functions, including logistic growth, R has self-starting functions that can avoid this step. ) At iteration j, the current guess tj is obtained b updating t j-. If S(t j ) is smaller than S(t j - ) b at least a predetermined amount, then the counter j is increased b and this step is repeated. If no improvement is possible then t j- is taken as the estimator This simple algorithm hides at least three important considerations. First, we want a method that will guarantee that at each step we either get a smaller value of S or at least S will not increase. There are man nonlinear least-squares algorithms; see, for eample, Bates and Watts (988). Man algorithms make use of the derivatives of the mean function with respect to the parameters.

12 7//6 The default algorithm in nls uses a form of Gauss-Newton iteration that emplos derivatives approimated numericall unless we provide functions to compute the derivatives. Second, the sum of squares function S ma be a perverse function with multiple minima. As a consequence, the purported least-squares estimates could be a local rather than global minimizer of S. Third, as given the algorithm can go on forever if improvements to S are small at each step. As a practical matter, therefore, there is an iteration limit that gives the maimum number of iterations permitted, and a tolerance that denes the minimum improvement that will be considered to be greater than. Function nls uses following arguments: formula The formula argument is used to tell nls about the mean function. start The argument start is a list that tells nls which of the named quantities on the right side of the formula are parameters, and thus implicitl which are predictors. It also provides starting values for the parameter estimates. algorithm "default" The "default" algorithm used in nls is a Gauss-Newton algorithm. Other possible values are "plinear" for the Golub-Perera algorithm for partiall linear models and "port" for a algorithm that should be selected if there are constraints on the parameters

13 7//6 lower -Inf, upper Inf One of the characteristics of nonlinear models is that the parameters of the model might be constrained to lie in a certain region. In the logistic populationgrowth model, for eample, we must have θ 3 >, as population size is increasing, and we must also have θ >. trace FALSE If TRUE, print the value of the residual sum of squares and the parameter estimates at each iteration. Unlike in linear least squares, most nonlinear least-squares algorithms require specication of starting values for the parameters A starting value of the asmtote θ is some value larger than an value in the data, and so value around t 4 is a resonable start). The estimated population in before official Census count was released was 37 milion. 3

14 7//6 Unlike in linear least squares, most nonlinear least-squares algorithms require specication of starting values for the parameters Linear model can be used to get some information (guess) what initial values should be m<-lm(logit(population/4) ~ ear, USPop) print(m) Coefficients: (Intercept) ear pop.mod <- nls(population ~ theta/( ep(-(theta theta3*ear))), startlist(theta 4, theta -49, theta3.5), datauspop, tracetrue) B setting tracetrue, we can see that S evaluated at the starting values is 36. The first iteration reduces this to 558.5, the net iteration to 458, and the remaining iterations result in onl ver small changes. We get convergence in 6 iterations. 4

15 7//6 summar(pop.mod) The column marked Estimates displas the least squares estimates. The estimated upper bound for the U. S. population is 44.8, or about 44 million. The column marked Std. Error displas the estimated standard errors of these estimates. The ver large standard error for the asmptote reflects the uncertaint in the estimated asmptote when all the observed data is much smaller than the asmptote. The standard error of this estimate can be computed with the deltamethod function in the car package: se<-deltamethod(pop.mod, "-theta/theta3") print(se) The estimated ear in which the population is half the asmptote is: θ θ and 976,6 so the standard error is about 7.6 ears 3 5

16 7//6 The column t value in the summar output shows the ratio of each parameter estimate to its standard error. In sufficientl large samples, this ratio will generall have a normal distribution, but interpreting sufficientl large" is difficult with nonlinear models. Even if the errors ε are normall distributed, the estimates ma be far from normall distributed in small samples. The p-values shown are based on asmptotic normalit. The residual standard deviation is the estimate of σ : σ S θ ( ) ( n k) U. S. population, with logistic growth t etrapolated to. The circles represent observed Census population counts, while represents the estimated population. The broken horizontal lines are drawn at the asmptotes and midwa between the asmptotes; the broken vertical line is drawn at the ear corresponding to the mid-wa point. 6

17 7//6 This figure suggests there are sstematic features that are missed, reflecting differences in growth rates, perhaps due to factors such as changes in immigration Bates and Watts (988, Sec. 3.) describe man techniques for finding starting values for fitting nonlinear models. For the logistic growth model described we stud, for eample, finding starting values amounts to: () guessing the parameter θ as a value larger than an observed in the data; and () substituting this value into the mean function, rearranging terms, and then getting other starting values b OLS simple linear regression. 7

18 7//6 The self-starting logistic growth model in R is based on a different, but equivalent, parametrization of the logistic function. We will start again with the logistic growth model, with mean function: m (, θ) Fitting a nonlinear model with the self-starting logistic growth function in R is quite eas: pop.ss <- nls(population ~ SSlogis(ear, phi, phi, phi3), datauspop) summar(pop.ss) ep θ [ ( θ θ ) ] 3 8

19 7//6 The right side of the formula is now the name of a function that has the responsibilit for computing the mean function and for finding starting values. The estimate of the asmptote parameter φ and its standard error are identical to the estimate and standard error for θ in the θ-parametrization. 9

Exponential, Logistic, and Logarithmic Functions

Exponential, Logistic, and Logarithmic Functions CHAPTER 3 Eponential, Logistic, and Logarithmic Functions 3.1 Eponential and Logistic Functions 3.2 Eponential and Logistic Modeling 3.3 Logarithmic Functions and Their Graphs 3.4 Properties of Logarithmic

More information

3.1 Exponential Functions and Their Graphs

3.1 Exponential Functions and Their Graphs .1 Eponential Functions and Their Graphs Sllabus Objective: 9.1 The student will sketch the graph of a eponential, logistic, or logarithmic function. 9. The student will evaluate eponential or logarithmic

More information

Exponential and Logarithmic Functions

Exponential and Logarithmic Functions Eponential and Logarithmic Functions 6 Figure Electron micrograph of E. Coli bacteria (credit: Mattosaurus, Wikimedia Commons) CHAPTER OUTLINE 6. Eponential Functions 6. Logarithmic Properties 6. Graphs

More information

6.4 graphs OF logarithmic FUnCTIOnS

6.4 graphs OF logarithmic FUnCTIOnS SECTION 6. graphs of logarithmic functions 9 9 learning ObjeCTIveS In this section, ou will: Identif the domain of a logarithmic function. Graph logarithmic functions. 6. graphs OF logarithmic FUnCTIOnS

More information

Chapter 8 Notes SN AA U2C8

Chapter 8 Notes SN AA U2C8 Chapter 8 Notes SN AA U2C8 Name Period Section 8-: Eploring Eponential Models Section 8-2: Properties of Eponential Functions In Chapter 7, we used properties of eponents to determine roots and some of

More information

University of Toronto Mississauga

University of Toronto Mississauga Surname: First Name: Student Number: Tutorial: Universit of Toronto Mississauga Mathematical and Computational Sciences MATY5Y Term Test Duration - 0 minutes No Aids Permitted This eam contains pages (including

More information

1.5. Analyzing Graphs of Functions. The Graph of a Function. What you should learn. Why you should learn it. 54 Chapter 1 Functions and Their Graphs

1.5. Analyzing Graphs of Functions. The Graph of a Function. What you should learn. Why you should learn it. 54 Chapter 1 Functions and Their Graphs 0_005.qd /7/05 8: AM Page 5 5 Chapter Functions and Their Graphs.5 Analzing Graphs of Functions What ou should learn Use the Vertical Line Test for functions. Find the zeros of functions. Determine intervals

More information

3.2 LOGARITHMIC FUNCTIONS AND THEIR GRAPHS

3.2 LOGARITHMIC FUNCTIONS AND THEIR GRAPHS Section. Logarithmic Functions and Their Graphs 7. LOGARITHMIC FUNCTIONS AND THEIR GRAPHS Ariel Skelle/Corbis What ou should learn Recognize and evaluate logarithmic functions with base a. Graph logarithmic

More information

4.7. Newton s Method. Procedure for Newton s Method HISTORICAL BIOGRAPHY

4.7. Newton s Method. Procedure for Newton s Method HISTORICAL BIOGRAPHY 4. Newton s Method 99 4. Newton s Method HISTORICAL BIOGRAPHY Niels Henrik Abel (18 189) One of the basic problems of mathematics is solving equations. Using the quadratic root formula, we know how to

More information

f 0 ab a b: base f

f 0 ab a b: base f Precalculus Notes: Unit Eponential and Logarithmic Functions Sllabus Objective: 9. The student will sketch the graph of a eponential, logistic, or logarithmic function. 9. The student will evaluate eponential

More information

f 0 ab a b: base f

f 0 ab a b: base f Precalculus Notes: Unit Eponential and Logarithmic Functions Sllaus Ojective: 9. The student will sketch the graph of a eponential, logistic, or logarithmic function. 9. The student will evaluate eponential

More information

Answer Explanations. The SAT Subject Tests. Mathematics Level 1 & 2 TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE

Answer Explanations. The SAT Subject Tests. Mathematics Level 1 & 2 TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE The SAT Subject Tests Answer Eplanations TO PRACTICE QUESTIONS FROM THE SAT SUBJECT TESTS STUDENT GUIDE Mathematics Level & Visit sat.org/stpractice to get more practice and stud tips for the Subject Test

More information

PRE-CALCULUS: by Finney,Demana,Watts and Kennedy Chapter 3: Exponential, Logistic, and Logarithmic Functions 3.1: Exponential and Logistic Functions

PRE-CALCULUS: by Finney,Demana,Watts and Kennedy Chapter 3: Exponential, Logistic, and Logarithmic Functions 3.1: Exponential and Logistic Functions PRE-CALCULUS: Finne,Demana,Watts and Kenned Chapter 3: Eponential, Logistic, and Logarithmic Functions 3.1: Eponential and Logistic Functions Which of the following are eponential functions? For those

More information

Answers to Some Sample Problems

Answers to Some Sample Problems Answers to Some Sample Problems. Use rules of differentiation to evaluate the derivatives of the following functions of : cos( 3 ) ln(5 7 sin(3)) 3 5 +9 8 3 e 3 h 3 e i sin( 3 )3 +[ ln ] cos( 3 ) [ln(5)

More information

KEY IDEAS. Chapter 1 Function Transformations. 1.1 Horizontal and Vertical Translations Pre-Calculus 12 Student Workbook MHR 1

KEY IDEAS. Chapter 1 Function Transformations. 1.1 Horizontal and Vertical Translations Pre-Calculus 12 Student Workbook MHR 1 Chapter Function Transformations. Horizontal and Vertical Translations A translation can move the graph of a function up or down (vertical translation) and right or left (horizontal translation). A translation

More information

CSE 546 Midterm Exam, Fall 2014

CSE 546 Midterm Exam, Fall 2014 CSE 546 Midterm Eam, Fall 2014 1. Personal info: Name: UW NetID: Student ID: 2. There should be 14 numbered pages in this eam (including this cover sheet). 3. You can use an material ou brought: an book,

More information

2.5 CONTINUITY. a x. Notice that Definition l implicitly requires three things if f is continuous at a:

2.5 CONTINUITY. a x. Notice that Definition l implicitly requires three things if f is continuous at a: SECTION.5 CONTINUITY 9.5 CONTINUITY We noticed in Section.3 that the it of a function as approaches a can often be found simpl b calculating the value of the function at a. Functions with this propert

More information

8 Nonlinear Regression

8 Nonlinear Regression 8 Nonlinear Regression Nonlinear regression relates to models, where the mean response is not linear in the parameters of the model. A MLRM Y = β 0 + β 1 x 1 + β 2 x 2 + + β k x k + ε, ε N (0, σ 2 ) has

More information

2.5. Infinite Limits and Vertical Asymptotes. Infinite Limits

2.5. Infinite Limits and Vertical Asymptotes. Infinite Limits . Infinite Limits and Vertical Asmptotes. Infinite Limits and Vertical Asmptotes In this section we etend the concept of it to infinite its, which are not its as before, but rather an entirel new use of

More information

1.3 LIMITS AT INFINITY; END BEHAVIOR OF A FUNCTION

1.3 LIMITS AT INFINITY; END BEHAVIOR OF A FUNCTION . Limits at Infinit; End Behavior of a Function 89. LIMITS AT INFINITY; END BEHAVIOR OF A FUNCTION Up to now we have been concerned with its that describe the behavior of a function f) as approaches some

More information

Linear Equations and Arithmetic Sequences

Linear Equations and Arithmetic Sequences CONDENSED LESSON.1 Linear Equations and Arithmetic Sequences In this lesson, ou Write eplicit formulas for arithmetic sequences Write linear equations in intercept form You learned about recursive formulas

More information

CHAPTER 3 Exponential and Logarithmic Functions

CHAPTER 3 Exponential and Logarithmic Functions CHAPTER Eponential and Logarithmic Functions Section. Eponential Functions and Their Graphs You should know that a function of the form f a, where a >, a, is called an eponential function with base a.

More information

1.2 Functions and Their Properties PreCalculus

1.2 Functions and Their Properties PreCalculus 1. Functions and Their Properties PreCalculus 1. FUNCTIONS AND THEIR PROPERTIES Learning Targets for 1. 1. Determine whether a set of numbers or a graph is a function. Find the domain of a function given

More information

16.5. Maclaurin and Taylor Series. Introduction. Prerequisites. Learning Outcomes

16.5. Maclaurin and Taylor Series. Introduction. Prerequisites. Learning Outcomes Maclaurin and Talor Series 6.5 Introduction In this Section we eamine how functions ma be epressed in terms of power series. This is an etremel useful wa of epressing a function since (as we shall see)

More information

Generalized Linear Models for Non-Normal Data

Generalized Linear Models for Non-Normal Data Generalized Linear Models for Non-Normal Data Today s Class: 3 parts of a generalized model Models for binary outcomes Complications for generalized multivariate or multilevel models SPLH 861: Lecture

More information

Methods for Advanced Mathematics (C3) Coursework Numerical Methods

Methods for Advanced Mathematics (C3) Coursework Numerical Methods Woodhouse College 0 Page Introduction... 3 Terminolog... 3 Activit... 4 Wh use numerical methods?... Change of sign... Activit... 6 Interval Bisection... 7 Decimal Search... 8 Coursework Requirements on

More information

8-1 Exploring Exponential Models

8-1 Exploring Exponential Models 8- Eploring Eponential Models Eponential Function A function with the general form, where is a real number, a 0, b > 0 and b. Eample: y = 4() Growth Factor When b >, b is the growth factor Eample: y =

More information

1.7 Inverse Functions

1.7 Inverse Functions 71_0107.qd 1/7/0 10: AM Page 17 Section 1.7 Inverse Functions 17 1.7 Inverse Functions Inverse Functions Recall from Section 1. that a function can be represented b a set of ordered pairs. For instance,

More information

3.3 Logarithmic Functions and Their Graphs

3.3 Logarithmic Functions and Their Graphs 274 CHAPTER 3 Eponential, Logistic, and Logarithmic Functions What ou ll learn about Inverses of Eponential Functions Common Logarithms Base 0 Natural Logarithms Base e Graphs of Logarithmic Functions

More information

where a 0 and the base b is a positive number other

where a 0 and the base b is a positive number other 7. Graph Eponential growth functions No graphing calculators!!!! EXPONENTIAL FUNCTION A function of the form than one. a b where a 0 and the base b is a positive number other a = b = HA = Horizontal Asmptote:

More information

15.2 Graphing Logarithmic

15.2 Graphing Logarithmic Name Class Date 15. Graphing Logarithmic Functions Essential Question: How is the graph of g () = a log b ( h) + k where b > and b 1 related to the graph of f () = log b? Resource Locker Eplore 1 Graphing

More information

1.6 CONTINUITY OF TRIGONOMETRIC, EXPONENTIAL, AND INVERSE FUNCTIONS

1.6 CONTINUITY OF TRIGONOMETRIC, EXPONENTIAL, AND INVERSE FUNCTIONS .6 Continuit of Trigonometric, Eponential, and Inverse Functions.6 CONTINUITY OF TRIGONOMETRIC, EXPONENTIAL, AND INVERSE FUNCTIONS In this section we will discuss the continuit properties of trigonometric

More information

Quantitative Understanding in Biology 2.2 Fitting Model Parameters

Quantitative Understanding in Biology 2.2 Fitting Model Parameters Quantitative Understanding in Biolog 2.2 Fitting Model Parameters Jason Banfelder November 30th, 2017 Let us consider how we might fit a power law model to some data. simulating the power law relationship

More information

Nonlinear Regression, Nonlinear Least Squares, and Nonlinear Mixed Models in R

Nonlinear Regression, Nonlinear Least Squares, and Nonlinear Mixed Models in R Nonlinear Regression, Nonlinear Least Squares, and Nonlinear Mixed Models in R An Appendix to An R Companion to Applied Regression, third edition John Fox & Sanford Weisberg last revision: 2018-06-02 Abstract

More information

Prerequisites for Calculus

Prerequisites for Calculus CHAPTER Prerequisites for Calculus. Lines. Functions and Graphs.3 Eponential Functions.4 Parametric Equations.5 Functions and Logarithms Eponential functions are used to model situations in which growth

More information

Linear Modelling: Simple Regression

Linear Modelling: Simple Regression Linear Modelling: Simple Regression 10 th of Ma 2018 R. Nicholls / D.-L. Couturier / M. Fernandes Introduction: ANOVA Used for testing hpotheses regarding differences between groups Considers the variation

More information

LESSON #48 - INTEGER EXPONENTS COMMON CORE ALGEBRA II

LESSON #48 - INTEGER EXPONENTS COMMON CORE ALGEBRA II LESSON #8 - INTEGER EXPONENTS COMMON CORE ALGEBRA II We just finished our review of linear functions. Linear functions are those that grow b equal differences for equal intervals. In this unit we will

More information

MATH 2300 review problems for Exam 3 ANSWERS

MATH 2300 review problems for Exam 3 ANSWERS MATH 300 review problems for Eam 3 ANSWERS. Check whether the following series converge or diverge. In each case, justif our answer b either computing the sum or b b showing which convergence test ou are

More information

2.2 Equations of Lines

2.2 Equations of Lines 660_ch0pp07668.qd 10/16/08 4:1 PM Page 96 96 CHAPTER Linear Functions and Equations. Equations of Lines Write the point-slope and slope-intercept forms Find the intercepts of a line Write equations for

More information

1. (a) Sketch the graph of a function that has two local maxima, one local minimum, and no absolute minimum. Solution: Such a graph is shown below.

1. (a) Sketch the graph of a function that has two local maxima, one local minimum, and no absolute minimum. Solution: Such a graph is shown below. MATH 9 Eam (Version ) Solutions November 7, S. F. Ellermeer Name Instructions. Your work on this eam will be graded according to two criteria: mathematical correctness and clarit of presentation. In other

More information

Roberto s Notes on Integral Calculus Chapter 3: Basics of differential equations Section 3. Separable ODE s

Roberto s Notes on Integral Calculus Chapter 3: Basics of differential equations Section 3. Separable ODE s Roberto s Notes on Integral Calculus Chapter 3: Basics of differential equations Section 3 Separable ODE s What ou need to know alread: What an ODE is and how to solve an eponential ODE. What ou can learn

More information

Chapter 6. Nonlinear Equations. 6.1 The Problem of Nonlinear Root-finding. 6.2 Rate of Convergence

Chapter 6. Nonlinear Equations. 6.1 The Problem of Nonlinear Root-finding. 6.2 Rate of Convergence Chapter 6 Nonlinear Equations 6. The Problem of Nonlinear Root-finding In this module we consider the problem of using numerical techniques to find the roots of nonlinear equations, f () =. Initially we

More information

7-1. Exploring Exponential Models. Vocabulary. Review. Vocabulary Builder. Use Your Vocabulary. 1. Cross out the expressions that are NOT powers.

7-1. Exploring Exponential Models. Vocabulary. Review. Vocabulary Builder. Use Your Vocabulary. 1. Cross out the expressions that are NOT powers. 7-1 Eploring Eponential Models Vocabular Review 1. Cross out the epressions that are NOT powers. 16 6a 1 7. Circle the eponents in the epressions below. 5 6 5a z Vocabular Builder eponential deca (noun)

More information

15.2 Graphing Logarithmic

15.2 Graphing Logarithmic Name Class Date 15. Graphing Logarithmic Functions Essential Question: How is the graph of g () = a log b ( h) + k where b > 0 and b 1 related to the graph of f () = log b? Resource Locker A.5.A Determine

More information

Statistics: A review. Why statistics?

Statistics: A review. Why statistics? Statistics: A review Why statistics? What statistical concepts should we know? Why statistics? To summarize, to explore, to look for relations, to predict What kinds of data exist? Nominal, Ordinal, Interval

More information

c) Words: The cost of a taxicab is $2.00 for the first 1/4 of a mile and $1.00 for each additional 1/8 of a mile.

c) Words: The cost of a taxicab is $2.00 for the first 1/4 of a mile and $1.00 for each additional 1/8 of a mile. Functions Definition: A function f, defined from a set A to a set B, is a rule that associates with each element of the set A one, and onl one, element of the set B. Eamples: a) Graphs: b) Tables: 0 50

More information

Coordinate geometry. + bx + c. Vertical asymptote. Sketch graphs of hyperbolas (including asymptotic behaviour) from the general

Coordinate geometry. + bx + c. Vertical asymptote. Sketch graphs of hyperbolas (including asymptotic behaviour) from the general A Sketch graphs of = a m b n c where m = or and n = or B Reciprocal graphs C Graphs of circles and ellipses D Graphs of hperbolas E Partial fractions F Sketch graphs using partial fractions Coordinate

More information

A function from a set D to a set R is a rule that assigns a unique element in R to each element in D.

A function from a set D to a set R is a rule that assigns a unique element in R to each element in D. 1.2 Functions and Their Properties PreCalculus 1.2 FUNCTIONS AND THEIR PROPERTIES Learning Targets for 1.2 1. Determine whether a set of numbers or a graph is a function 2. Find the domain of a function

More information

Chapter 1 Prerequisites for Calculus

Chapter 1 Prerequisites for Calculus Section. Chapter Prerequisites for Calculus Section. Lines (pp. ) Quick Review.. + ( ) + () +. ( +). m. m ( ) ( ). (a) ( )? 6 (b) () ( )? 6. (a) 7? ( ) + 7 + Yes (b) ( ) + 9 No Yes No Section. Eercises.

More information

EAST LOS ANGELES COLLEGE

EAST LOS ANGELES COLLEGE EAST LOS ANGELES COLLEGE NAME: MATHEMATICS FINAL EXAM SAMPLE INSTRUCTOR: ANNE SISWANTO; TIME: 10 MINUTES --------------------------------------------------------------------------------------------------------------------------

More information

3 Polynomial and Rational Functions

3 Polynomial and Rational Functions 3 Polnomial and Rational Functions 3.1 Quadratic Functions and Models 3.2 Polnomial Functions and Their Graphs 3.3 Dividing Polnomials 3.4 Real Zeros of Polnomials 3.5 Comple Zeros and the Fundamental

More information

Name Date. Work with a partner. Each graph shown is a transformation of the parent function

Name Date. Work with a partner. Each graph shown is a transformation of the parent function 3. Transformations of Eponential and Logarithmic Functions For use with Eploration 3. Essential Question How can ou transform the graphs of eponential and logarithmic functions? 1 EXPLORATION: Identifing

More information

1.2 Functions and Their Properties PreCalculus

1.2 Functions and Their Properties PreCalculus 1. Functions and Their Properties PreCalculus 1. FUNCTIONS AND THEIR PROPERTIES Learning Targets for 1. 1. Determine whether a set of numbers or a graph is a function. Find the domain of a function given

More information

Sections 4.1 & 4.2 Exponential Growth and Exponential Decay

Sections 4.1 & 4.2 Exponential Growth and Exponential Decay 8 Sections 4. & 4.2 Eponential Growth and Eponential Deca What You Will Learn:. How to graph eponential growth functions. 2. How to graph eponential deca functions. Eponential Growth This is demonstrated

More information

FUNCTIONS OF ONE VARIABLE FUNCTION DEFINITIONS

FUNCTIONS OF ONE VARIABLE FUNCTION DEFINITIONS Page of 6 FUNCTIONS OF ONE VARIABLE FUNCTION DEFINITIONS 6. HYPERBOLIC FUNCTIONS These functions which are defined in terms of e will be seen later to be related to the trigonometic functions via comple

More information

74 Maths Quest 10 for Victoria

74 Maths Quest 10 for Victoria Linear graphs Maria is working in the kitchen making some high energ biscuits using peanuts and chocolate chips. She wants to make less than g of biscuits but wants the biscuits to contain at least 8 g

More information

Practice A ( 1, 3 ( 0, 1. Match the function with its graph. 3 x. Explain how the graph of g can be obtained from the graph of f. 5 x.

Practice A ( 1, 3 ( 0, 1. Match the function with its graph. 3 x. Explain how the graph of g can be obtained from the graph of f. 5 x. 8. Practice A For use with pages 65 7 Match the function with its graph.. f. f.. f 5. f 6. f f Lesson 8. A. B. C. (, 6) (0, ) (, ) (0, ) ( 0, ) (, ) D. E. F. (0, ) (, 6) ( 0, ) (, ) (, ) (0, ) Eplain how

More information

AP Calculus AB Summer Assignment Mrs. Berkson

AP Calculus AB Summer Assignment Mrs. Berkson AP Calculus AB Summer Assignment Mrs. Berkson The purpose of the summer assignment is to prepare ou with the necessar Pre- Calculus skills required for AP Calculus AB. Net ear we will be starting off the

More information

14.1 Systems of Linear Equations in Two Variables

14.1 Systems of Linear Equations in Two Variables 86 Chapter 1 Sstems of Equations and Matrices 1.1 Sstems of Linear Equations in Two Variables Use the method of substitution to solve sstems of equations in two variables. Use the method of elimination

More information

CHAPTER 2: Partial Derivatives. 2.2 Increments and Differential

CHAPTER 2: Partial Derivatives. 2.2 Increments and Differential CHAPTER : Partial Derivatives.1 Definition of a Partial Derivative. Increments and Differential.3 Chain Rules.4 Local Etrema.5 Absolute Etrema 1 Chapter : Partial Derivatives.1 Definition of a Partial

More information

We have examined power functions like f (x) = x 2. Interchanging x

We have examined power functions like f (x) = x 2. Interchanging x CHAPTER 5 Eponential and Logarithmic Functions We have eamined power functions like f =. Interchanging and ields a different function f =. This new function is radicall different from a power function

More information

Correlation. Bret Hanlon and Bret Larget. Department of Statistics University of Wisconsin Madison. December 6, Correlation 1 / 25

Correlation. Bret Hanlon and Bret Larget. Department of Statistics University of Wisconsin Madison. December 6, Correlation 1 / 25 Correlation Bret Hanlon and Bret Larget Department of Statistics Universit of Wisconsin Madison December 6, 2 Correlation / 25 The Big Picture We have just completed a length series of lectures on ANOVA

More information

Dependence and scatter-plots. MVE-495: Lecture 4 Correlation and Regression

Dependence and scatter-plots. MVE-495: Lecture 4 Correlation and Regression Dependence and scatter-plots MVE-495: Lecture 4 Correlation and Regression It is common for two or more quantitative variables to be measured on the same individuals. Then it is useful to consider what

More information

Math Review Packet #5 Algebra II (Part 2) Notes

Math Review Packet #5 Algebra II (Part 2) Notes SCIE 0, Spring 0 Miller Math Review Packet #5 Algebra II (Part ) Notes Quadratic Functions (cont.) So far, we have onl looked at quadratic functions in which the term is squared. A more general form of

More information

CHAPTER 3 Exponential and Logarithmic Functions

CHAPTER 3 Exponential and Logarithmic Functions CHAPTER Eponential and Logarithmic Functions Section. Eponential Functions and Their Graphs......... Section. Logarithmic Functions and Their Graphs......... Section. Properties of Logarithms..................

More information

Chapter 11. Correlation and Regression

Chapter 11. Correlation and Regression Chapter 11 Correlation and Regression Correlation A relationship between two variables. The data can be represented b ordered pairs (, ) is the independent (or eplanator) variable is the dependent (or

More information

CHAPTER 5 Logarithmic, Exponential, and Other Transcendental Functions

CHAPTER 5 Logarithmic, Exponential, and Other Transcendental Functions CHAPTER 5 Logarithmic, Eponential, and Other Transcendental Functions Section 5. The Natural Logarithmic Function: Dierentiation.... Section 5. The Natural Logarithmic Function: Integration...... Section

More information

11. Generalized Linear Models: An Introduction

11. Generalized Linear Models: An Introduction Sociolog 740 John Fox Lecture Notes 11. Generalized Linear Models: An Introduction Generalized Linear Models: An Introduction 1 1. Introduction I A snthesis due to Nelder and Wedderburn, generalized linear

More information

Linear regression Class 25, Jeremy Orloff and Jonathan Bloom

Linear regression Class 25, Jeremy Orloff and Jonathan Bloom 1 Learning Goals Linear regression Class 25, 18.05 Jerem Orloff and Jonathan Bloom 1. Be able to use the method of least squares to fit a line to bivariate data. 2. Be able to give a formula for the total

More information

LINEAR REGRESSION ANALYSIS

LINEAR REGRESSION ANALYSIS LINEAR REGRESSION ANALYSIS MODULE V Lecture - 2 Correcting Model Inadequacies Through Transformation and Weighting Dr. Shalabh Department of Mathematics and Statistics Indian Institute of Technolog Kanpur

More information

Practice UNIT 2 ACTIVITY 2.2 ACTIVITY 2.1

Practice UNIT 2 ACTIVITY 2.2 ACTIVITY 2.1 ACTIVITY.. Use the regression capabilities of our graphing calculator to create a model to represent the data in the table. - - 0. -. ACTIVITY. Determine the -intercept and end behavior of each function.

More information

Unit 10 - Graphing Quadratic Functions

Unit 10 - Graphing Quadratic Functions Unit - Graphing Quadratic Functions PREREQUISITE SKILLS: students should be able to add, subtract and multipl polnomials students should be able to factor polnomials students should be able to identif

More information

CHAPTER 3 Exponential and Logarithmic Functions

CHAPTER 3 Exponential and Logarithmic Functions CHAPTER Eponential and Logarithmic Functions Section. Eponential Functions and Their Graphs......... Section. Logarithmic Functions and Their Graphs......... Section. Properties of Logarithms..................

More information

Linear and Nonlinear Systems of Equations. The Method of Substitution. Equation 1 Equation 2. Check (2, 1) in Equation 1 and Equation 2: 2x y 5?

Linear and Nonlinear Systems of Equations. The Method of Substitution. Equation 1 Equation 2. Check (2, 1) in Equation 1 and Equation 2: 2x y 5? 3330_070.qd 96 /5/05 Chapter 7 7. 9:39 AM Page 96 Sstems of Equations and Inequalities Linear and Nonlinear Sstems of Equations What ou should learn Use the method of substitution to solve sstems of linear

More information

Section 4.5 Graphs of Logarithmic Functions

Section 4.5 Graphs of Logarithmic Functions 6 Chapter 4 Section 4. Graphs of Logarithmic Functions Recall that the eponential function f ( ) would produce this table of values -3 - -1 0 1 3 f() 1/8 ¼ ½ 1 4 8 Since the arithmic function is an inverse

More information

Review Exercises for Chapter 2

Review Exercises for Chapter 2 Review Eercises for Chapter 7 Review Eercises for Chapter. (a) Vertical stretch Vertical stretch and a reflection in the -ais Vertical shift two units upward (a) Horizontal shift two units to the left.

More information

8 Differential Calculus 1 Introduction

8 Differential Calculus 1 Introduction 8 Differential Calculus Introduction The ideas that are the basis for calculus have been with us for a ver long time. Between 5 BC and 5 BC, Greek mathematicians were working on problems that would find

More information

Quick Review 4.1 (For help, go to Sections 1.2, 2.1, 3.5, and 3.6.)

Quick Review 4.1 (For help, go to Sections 1.2, 2.1, 3.5, and 3.6.) Section 4. Etreme Values of Functions 93 EXPLORATION Finding Etreme Values Let f,.. Determine graphicall the etreme values of f and where the occur. Find f at these values of.. Graph f and f or NDER f,,

More information

P.4 Lines in the Plane

P.4 Lines in the Plane 28 CHAPTER P Prerequisites P.4 Lines in the Plane What ou ll learn about Slope of a Line Point-Slope Form Equation of a Line Slope-Intercept Form Equation of a Line Graphing Linear Equations in Two Variables

More information

Exponential and Logarithmic Functions

Exponential and Logarithmic Functions 7 Eponential and Logarithmic Functions In this chapter ou will stud two tpes of nonalgebraic functions eponential functions and logarithmic functions. Eponential and logarithmic functions are widel used

More information

INTRODUCTION TO DIOPHANTINE EQUATIONS

INTRODUCTION TO DIOPHANTINE EQUATIONS INTRODUCTION TO DIOPHANTINE EQUATIONS In the earl 20th centur, Thue made an important breakthrough in the stud of diophantine equations. His proof is one of the first eamples of the polnomial method. His

More information

Chapter 12 Exponential and Logarithmic Functions

Chapter 12 Exponential and Logarithmic Functions Chapter Eponential and Logarithmic Functions. Check Points. f( ).(.6) f ().(.6) 6.86 6 The average amount spent after three hours at a mall is $6. This overestimates the amount shown in the figure $..

More information

MATH Line integrals III Fall The fundamental theorem of line integrals. In general C

MATH Line integrals III Fall The fundamental theorem of line integrals. In general C MATH 255 Line integrals III Fall 216 In general 1. The fundamental theorem of line integrals v T ds depends on the curve between the starting point and the ending point. onsider two was to get from (1,

More information

8.7 Systems of Non-Linear Equations and Inequalities

8.7 Systems of Non-Linear Equations and Inequalities 8.7 Sstems of Non-Linear Equations and Inequalities 67 8.7 Sstems of Non-Linear Equations and Inequalities In this section, we stud sstems of non-linear equations and inequalities. Unlike the sstems of

More information

AP Calculus AB Summer Assignment Mrs. Berkson

AP Calculus AB Summer Assignment Mrs. Berkson AP Calculus AB Summer Assignment Mrs. Berkson The purpose of the summer assignment is to prepare ou with the necessar Pre- Calculus skills required for AP Calculus AB. Net ear we will be starting off the

More information

Up a Little, Down a Little

Up a Little, Down a Little Up a Little, Down a Little A Solidif Understanding Task One of the most common applications of eponential growth is compound interest. For eample, Mama Bigbucks puts $20,000 in a bank savings account that

More information

College Algebra Final, 7/2/10

College Algebra Final, 7/2/10 NAME College Algebra Final, 7//10 1. Factor the polnomial p() = 3 5 13 4 + 13 3 + 9 16 + 4 completel, then sketch a graph of it. Make sure to plot the - and -intercepts. (10 points) Solution: B the rational

More information

The speed the speed of light is 30,000,000,000 m/s. Write this number in scientific notation.

The speed the speed of light is 30,000,000,000 m/s. Write this number in scientific notation. Chapter 1 Section 1.1 Scientific Notation Powers of Ten 1 1 1.1.1.1.1 Standard Scientific Notation N n where 1 N and n is an integers Eamples of numbers in scientific notation. 8.17 11 Using Scientific

More information

Chapter 2 Polynomial, Power, and Rational Functions

Chapter 2 Polynomial, Power, and Rational Functions Section. Linear and Quadratic Functions and Modeling 6 Chapter Polnomial, Power, and Rational Functions Section. Linear and Quadratic Functions and Modeling Eploration. $000 per ear.. The equation will

More information

Binary Logistic Regression

Binary Logistic Regression The coefficients of the multiple regression model are estimated using sample data with k independent variables Estimated (or predicted) value of Y Estimated intercept Estimated slope coefficients Ŷ = b

More information

Chapter 4. Introduction to Mathematical Modeling. Types of Modeling. 1) Linear Modeling 2) Quadratic Modeling 3) Exponential Modeling

Chapter 4. Introduction to Mathematical Modeling. Types of Modeling. 1) Linear Modeling 2) Quadratic Modeling 3) Exponential Modeling Chapter 4 Introduction to Mathematical Modeling Tpes of Modeling 1) Linear Modeling ) Quadratic Modeling ) Eponential Modeling Each tpe of modeling in mathematics is determined b the graph of equation

More information

2: Distributions of Several Variables, Error Propagation

2: Distributions of Several Variables, Error Propagation : Distributions of Several Variables, Error Propagation Distribution of several variables. variables The joint probabilit distribution function of two variables and can be genericall written f(, with the

More information

Test # 33 QUESTIONS MATH131 091700 COLLEGE ALGEBRA Name atfm131bli www.alvarezmathhelp.com website MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

More information

Essential Question How can you use a scatter plot and a line of fit to make conclusions about data?

Essential Question How can you use a scatter plot and a line of fit to make conclusions about data? . Scatter Plots and Lines of Fit Essential Question How can ou use a scatter plot and a line of fit to make conclusions about data? A scatter plot is a graph that shows the relationship between two data

More information

Nonlinear curve fitting

Nonlinear curve fitting 16 Nonlinear curve fitting Curve fitting problems occur in many scientific areas. The typical case is that you wish to fit the relation between some response y and a one-dimensional predictor x, by adjusting

More information

1.1 Laws of exponents Conversion between exponents and logarithms Logarithm laws Exponential and logarithmic equations 10

1.1 Laws of exponents Conversion between exponents and logarithms Logarithm laws Exponential and logarithmic equations 10 CNTENTS Algebra Chapter Chapter Chapter Eponents and logarithms. Laws of eponents. Conversion between eponents and logarithms 6. Logarithm laws 8. Eponential and logarithmic equations 0 Sequences and series.

More information

2.3 The Fixed-Point Algorithm

2.3 The Fixed-Point Algorithm .3 The Fied-Point Algorithm 1. Mean Value Theorem: Theorem Rolle stheorem: Suppose that f is continuous on a, b and is differentiable on a, b. If f a f b, then there eists a number c in a, b such that

More information

8.4. If we let x denote the number of gallons pumped, then the price y in dollars can $ $1.70 $ $1.70 $ $1.70 $ $1.

8.4. If we let x denote the number of gallons pumped, then the price y in dollars can $ $1.70 $ $1.70 $ $1.70 $ $1. 8.4 An Introduction to Functions: Linear Functions, Applications, and Models We often describe one quantit in terms of another; for eample, the growth of a plant is related to the amount of light it receives,

More information

PRACTICE FINAL EXAM. 3. Solve: 3x 8 < 7. Write your answer using interval notation. Graph your solution on the number line.

PRACTICE FINAL EXAM. 3. Solve: 3x 8 < 7. Write your answer using interval notation. Graph your solution on the number line. MAC 1105 PRACTICE FINAL EXAM College Algebra *Note: this eam is provided as practice onl. It was based on a book previousl used for this course. You should not onl stud these problems in preparing for

More information

Conic Sections CHAPTER OUTLINE. The Circle Ellipses and Hyperbolas Second-Degree Inequalities and Nonlinear Systems FIGURE 1

Conic Sections CHAPTER OUTLINE. The Circle Ellipses and Hyperbolas Second-Degree Inequalities and Nonlinear Systems FIGURE 1 088_0_p676-7 /7/0 :5 PM Page 676 (FPG International / Telegraph Colour Librar) Conic Sections CHAPTER OUTLINE. The Circle. Ellipses and Hperbolas.3 Second-Degree Inequalities and Nonlinear Sstems O ne

More information