Numerical method for approximating the solution of an IVP. Euler Algorithm (the simplest approximation method)

Size: px
Start display at page:

Download "Numerical method for approximating the solution of an IVP. Euler Algorithm (the simplest approximation method)"

Transcription

1 Section 2.7 Euler s Method (Computer Approximation) Key Terms/ Ideas: Numerical method for approximating the solution of an IVP Linear Approximation; Tangent Line Euler Algorithm (the simplest approximation method)

2 We have seen in Section 1.1 that by drawing a direction field we can visualize qualitatively the behavior of solutions of a first order DE. When the grid is fine then we obtain a direction field that can convey a sense of the behavior of solutions for various initial conditions. For example, for DE we have direction field dy = y 2-2t dt For a first order DE we can sketch a direction field and visualize the behavior of solutions once we choose an initial value for example y(a) = k. This has the advantage of being a relatively simple process, even for complicated equations. However, direction fields do not lend themselves to quantitative computations or comparisons.

3 By choosing different initial conditions we can see approximately how some solutions behave. So we are really considering initial value problems. Initial condition x = -2, y = -1 Initial condition x = -1, y = -1 To sketch these solutions of the IVP a numerical method was used.

4 For quantitative approximations of an IVP we need to consider numerical approximation schemes. Such techniques generate approximate values for the solution of the IVP at a set of discrete values of independent variable t; t 0, t 1, t 2, etc. So the output from such numerical algorithms consists of a set of ordered pairs (t k, y k ) where y k is an approximation to the true value y(t k )of the solution at t k. (y k y(t k )) One algorithm that will allow you to estimate values of the solution y is given by Euler s Method sometimes called the tangent line method. (Euler (pronounced Oiler) lived in the 18th century is considered to be one of the greatest mathematicians who ever lived.) Observe that the direction field has many tangent line segments at successive values of t that almost touch each other. It takes only a bit of imagination to consider starting at a point specified by an initial condition and linking line segments for successive values of t in the grid, thereby producing a piecewise linear graph. Such a graph would provide an approximation to the solution of the IVP.

5 To see how Euler s method works, recall from calculus a section called Linear Approximation. In that section you did the following: Construct the tangent line to a differentiable function f(x) at a point (a, f(a)) and approximate values of the function at nearby values of x using the equation of the tangent line. Suppose we have the point (a, f(a)) and the slope of f(x) at this point is the value m. Then the tangent line is obtained using the point-slope method for the equation of a line. Tangent line is: y f(a) = m(x a) y = f(a) + m(x a). We can estimate the value of f(x) at x = a + Δx by computing f(a) + m(a + Δx a) = f(a) +m Δx. Euler s method uses this idea applied to an initial value problem as we illustrate next.

6 We start Euler s approximation to the IVP at the initial point (t 0, y 0 ) and use the fact that the slope of the exact solution at the initial point is the value of f(t 0, y 0 ) so the equation of the tangent line at the initial point is y y 0 = f(t 0, y 0 ) (t t 0 ). Rewrite this as y = y 0 + f(t 0, y 0 ) (t t 0 ). The tangent line is a good approximation to the actual solution curve on a short interval over which the slope of the solution does not change appreciably from its value at the initial point. Exact solution Thus, if t 1 is close enough to t 0, we can approximate the exact solution at t = t 1 by the value y 1 determined by substituting t 1 for t in the equation of the tangent line. Doing this we get y 1 = y 0 + f(t 0, y 0 ) (t 1 t 0 ). So far we have points (t 0, y 0 ) and (t 1, y 1 ). If we connect these points with a straight line we have a linear approximation to the exact solution φ(t) over interval [t 0, t 1 ]. linear approximation

7 To proceed further, we can try to repeat the process. Unfortunately, we do not know the value of the exact solution value at t 1. The best we can do is to use the approximate value y 1 instead. Thus we construct the line through (t 1, y 1 ) with the slope f(t 1, y 1 ). For a point t 2 close to t 1, we approximate the exact solution at t 2 using the line passing through (t 1, y 1 ) with slope f(t 1,y 1 ). We then compute y 2 = y 1 + f(t 1, y 1 ) (t 2 t 1 ) which approximates the exact solution at t 2. So now we have three points (t 0, y 0 ),(t 1, y 1 ), and (t 2, y 2 ). Using this process at the second step we are really approximating a new IVP; As along as the integral curve for the original IVP is not much different that than the integral curve for the new IVP, we can obtain an estimate of the solution of the original IVP. This is where some error creeps in. Thus we create a discrete sequence y n of approximations to the exact solution at the discrete points t 1, t 2, t 3, : where f k = f(t k,y k ) is the slope of the tangent line at t = t k for k =0, 1,, n.

8 The sequence of calculations generates the sequence of points To graph an Euler approximation, we plot the points (t 0, y 0 ), (t 1, y 1 ),, (t n, y n ), and then connect these points with line segments to provide a piecewise linear approximation to the solution of the original IVP. If the discrete values t 1, t 2, t 3, are equispaced we say the step size is a fixed value often denoted by h. For a fixed step size h = t k t k-1, for each value of k. Thus Euler s formula for equispacing becomes

9 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' i = f(t i,y i ) = f i Slope computation y i+1 = y i + h f(t i,y i ) Estimate of soln at t i+1 Compute the slope at t 0 = 0 and use the fact that y 0 = y(0)= 1 in the Euler formula.

10 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' i = f(t i,y i ) = f i Slope computation y i+1 =y i + h f(t i,y i ) Estimate of soln at t i y 1 =y 0 + h f(t 0,y 0 ) = y1 y0 f0 h 1 ( ) ( 0. 2) ( 0. 2) 1. 5 Substituted t = 0 and y = 1 into formula for f(t, y)

11 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' I = f(t i,y i ) = f i Slope computation y i+1 =y i + h f(t i,y i ) Estimate of soln at t i y 1 =y 0 + h f(t 0,y 0 ) = y1 y0 f0 h 1 ( )( 0. 2) ( 0. 2) 1. 5 Compute the slope at t 1 = 0.2 and use the fact that we have the approximation y 1 = 1.5 to use in the Euler formula.

12 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' I = f(t i,y i ) = f i y i+1 =y i + h f(t i,y i ) y 1 =y 0 + h f(t 0,y 0 ) = y 2 =y 1 + h f(t 1,y 1 ) = y1 y0 f0 h 1 ( ) ( 0. 2) ( 0. 2) y2 y1 f1 h ( 0. 2) Substituted t = 0.2 and y = 1.5 into formula for f(t, y)

13 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' I = f(t i,y i ) = f i y i+1 =y i + h f(t i,y i ) y 1 =y 0 + h f(t 0,y 0 ) = y 2 =y 1 + h f(t 1,y 1 ) = y1 y0 f0 h 1 ( ) ( 0. 2) ( 0. 2) y2 y1 f1 h ( 0. 2) Compute the slope at t 2 = 0.4 and use the fact that we have the approximation y 2 = 1.87 to use in the Euler formula.

14 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' I = f(t i,y i ) = f i y i+1 =y i + h f(t i,y i ) y 1 =y 0 + h f(t 0,y 0 ) = y 2 =y 1 + h f(t 1,y 1 ) = y 3 =y 2 + h f(t 2,y 2 ) = y1 y0 f0 h 1 ( ) ( 0. 2) ( 0. 2) y2 y1 f1 h ( 0. 2) y3 y2 f2 h ( 0. 2)

15 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' I = f(t i,y i ) = f i y i+1 =y i + h f(t i,y i ) y 1 =y 0 + h f(t 0,y 0 ) = y 2 =y 1 + h f(t 1,y 1 ) = y 3 =y 2 + h f(t 2,y 2 ) = y y f h 1 ( )( 0. 2) ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2) Continue in a similar fashion.

16 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' I = f(t i,y i ) = f i y i+1 =y i + h f(t i,y i ) y 1 =y 0 + h f(t 0,y 0 ) = y 2 =y 1 + h f(t 1,y 1 ) = y 3 =y 2 + h f(t 2,y 2 ) = y 4 =y 3 + h f(t 3,y 3 ) = y y f h 1 ( )( 0. 2) ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2)

17 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' I = f(t i,y i ) = f i y i+1 =y i + h f(t i,y i ) y 1 =y 0 + h f(t 0,y 0 ) = y 2 =y 1 + h f(t 1,y 1 ) = y 3 =y 2 + h f(t 2,y 2 ) = y 4 =y 3 + h f(t 3,y 3 ) = y y f h 1 ( )( 0. 2) ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2)

18 Example: For the initial value problem use Euler s method with h = 0.2 to approximate the solution at t = 0.2, 0.4, 0.6, 0.8, and 1.0. Index i t i y i y' I = f(t i,y i ) = f i y i+1 =y i + h f(t i,y i ) y 1 =y 0 + h f(t 0,y 0 ) = y 2 =y 1 + h f(t 1,y 1 ) = y 3 =y 2 + h f(t 2,y 2 ) = y 4 =y 3 + h f(t 3,y 3 ) = y 5 =y 4 + h f(t 4,y 4 ) = y y f h 1 ( )( 0. 2) ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2) y y f h ( 0. 2)

19 The exact solution to our IVP is We approximated the solution of our IVP at t = 0.2, 0.4, 0.6, 0.8, 1.0 so now let s compare our results to the exact solution at those values of t. Exact y in red Approximate y in blue 2.5 y t

20 Euler Approx. 3 Direction Field for y'=3-2*t-.5*y Exact Note here we are looking over interval 0 t 1.

21 Accuracy of Euler s Method: Euler s method should not be used for real world approximations of IVPs. There are much more accurate methods available. But these other methods are used in much the same way as Euler s method. Euler s method is a recursive procedure used to obtain discrete approximations to IVPs. It generates a piecewise linear approximation by pasting together tangent line approximations. Its accuracy depends on how closely the t-values t 1, t 2, t 3, are spaced. For a very small spacing Euler s method requires a lot of steps and hence can be considered expensive. Even with small spacing certain IVPs can not be well approximated with Euler s method. Next we illustrate the behavior of Euler s method two different problems. Definition of recursive relating to, or constituting a procedure that can repeat itself indefinitely

22 Example: Approximate the IVP via Euler s method. The exact solution is x(t) = t + t ln(t).

23 Inspect the scales for the graphs. Approximate (solid) + True Soln (dotted) ABS. ERROR

24

25 Observe the slow but steady growth in the error as t increases. Since each step introduces new error into the computed approximate solution, we might expect this type of behavior in every problem; however, the actual accumulation of error from successive steps is very problem dependent.

26 Euler Approx of IVP Essentially, the error introduced by each step of the time marching process moves us from one solution of the differential equation onto a different solution. (At each step we encounter a new IVP; a perturbed IVP.) If, nearby solutions separate from one another as t increases, we can expect to see a steady increase in the error. Note that a change of initial conditions had those solution curves move away from the solution curve for the original IVP. On the other hand, if nearby solutions move closer together as t increases, we could expect to observe a steady decline in the error. The next example demonstrates this situation.

27 Another Example: Approximate the IVP via Euler s method. True solution Here nearby solutions move closer together as t increases, so we observe a steady decline in the error.

28 Approximate (solid) + True Soln (dotted) ABS. ERROR

29

30 In this case changes in the initial conditions have the nearby solutions move closer together as t increases. So we could expect to observe a steady decline in the error.

31 In both of these examples accuracy may be improved by choosing smaller values of the stepsize h. But this not guaranteed to happen in all cases. Here consider the IVP h = 0.25 h = h = h = 0.01 dy = y 2-2t, y(-1.5) = -2.5 dt

Numerical method for approximating the solution of an IVP. Euler Algorithm (the simplest approximation method)

Numerical method for approximating the solution of an IVP. Euler Algorithm (the simplest approximation method) Section 2.7 Euler s Method (Computer Approximation) Key Terms/ Ideas: Numerical method for approximating the solution of an IVP Linear Approximation; Tangent Line Euler Algorithm (the simplest approximation

More information

Section 7.2 Euler s Method

Section 7.2 Euler s Method Section 7.2 Euler s Method Key terms Scalar first order IVP (one step method) Euler s Method Derivation Error analysis Computational procedure Difference equation Slope field or Direction field Error Euler's

More information

Unit #16 : Differential Equations

Unit #16 : Differential Equations Unit #16 : Differential Equations Goals: To introduce the concept of a differential equation. Discuss the relationship between differential equations and slope fields. Discuss Euler s method for solving

More information

AP Calculus Worksheet: Chapter 2 Review Part I

AP Calculus Worksheet: Chapter 2 Review Part I AP Calculus Worksheet: Chapter 2 Review Part I 1. Given y = f(x), what is the average rate of change of f on the interval [a, b]? What is the graphical interpretation of your answer? 2. The derivative

More information

2.1 Differential Equations and Solutions. Blerina Xhabli

2.1 Differential Equations and Solutions. Blerina Xhabli 2.1 Math 3331 Differential Equations 2.1 Differential Equations and Solutions Blerina Xhabli Department of Mathematics, University of Houston blerina@math.uh.edu math.uh.edu/ blerina/teaching.html Blerina

More information

MATH 116, LECTURE 13, 14 & 15: Derivatives

MATH 116, LECTURE 13, 14 & 15: Derivatives MATH 116, LECTURE 13, 14 & 15: Derivatives 1 Formal Definition of the Derivative We have seen plenty of limits so far, but very few applications. In particular, we have seen very few functions for which

More information

DIFFERENTIAL EQUATIONS

DIFFERENTIAL EQUATIONS DIFFERENTIAL EQUATIONS Basic Concepts Paul Dawkins Table of Contents Preface... Basic Concepts... 1 Introduction... 1 Definitions... Direction Fields... 8 Final Thoughts...19 007 Paul Dawkins i http://tutorial.math.lamar.edu/terms.aspx

More information

Constant Acceleration

Constant Acceleration Constant Acceleration Ch. in your text book Objectives Students will be able to: ) Write the definition of acceleration, either in words or as an equation ) Create an equation for the movement of an object

More information

MATH 200 WEEK 5 - WEDNESDAY DIRECTIONAL DERIVATIVE

MATH 200 WEEK 5 - WEDNESDAY DIRECTIONAL DERIVATIVE WEEK 5 - WEDNESDAY DIRECTIONAL DERIVATIVE GOALS Be able to compute a gradient vector, and use it to compute a directional derivative of a given function in a given direction. Be able to use the fact that

More information

dt 2 The Order of a differential equation is the order of the highest derivative that occurs in the equation. Example The differential equation

dt 2 The Order of a differential equation is the order of the highest derivative that occurs in the equation. Example The differential equation Lecture 18 : Direction Fields and Euler s Method A Differential Equation is an equation relating an unknown function and one or more of its derivatives. Examples Population growth : dp dp = kp, or = kp

More information

22 Approximations - the method of least squares (1)

22 Approximations - the method of least squares (1) 22 Approximations - the method of least squares () Suppose that for some y, the equation Ax = y has no solutions It may happpen that this is an important problem and we can t just forget about it If we

More information

Math Week 1 notes

Math Week 1 notes Math 2250-004 Week 1 notes We will not necessarily finish the material from a given day's notes on that day. Or on an amazing day we may get farther than I've predicted. We may also add or subtract some

More information

We begin exploring Euler s method by looking at direction fields. Consider the direction field below.

We begin exploring Euler s method by looking at direction fields. Consider the direction field below. Emma Reid- MA 66, Lesson 9 (SU 17) Euler s Method (.7) So far in this course, we have seen some very special types of first order ODEs. We ve seen methods to solve linear, separable, homogeneous, Bernoulli,

More information

1.1 Radical Expressions: Rationalizing Denominators

1.1 Radical Expressions: Rationalizing Denominators 1.1 Radical Expressions: Rationalizing Denominators Recall: 1. A rational number is one that can be expressed in the form a, where b 0. b 2. An equivalent fraction is determined by multiplying or dividing

More information

Section 2.1 Differential Equation and Solutions

Section 2.1 Differential Equation and Solutions Section 2.1 Differential Equation and Solutions Key Terms: Ordinary Differential Equation (ODE) Independent Variable Order of a DE Partial Differential Equation (PDE) Normal Form Solution General Solution

More information

Differential Equations

Differential Equations Differential Equations Collège André-Chavanne Genève richard.o-donovan@edu.ge.ch 2012 2 1 INITIAL PROBLEMS 1 Initial problems Exercise 1 Radioactivity is due to the decay of nuclei in the atoms. The following

More information

Section 7.4 Runge-Kutta Methods

Section 7.4 Runge-Kutta Methods Section 7.4 Runge-Kutta Methods Key terms: Taylor methods Taylor series Runge-Kutta; methods linear combinations of function values at intermediate points Alternatives to second order Taylor methods Fourth

More information

0.1 Solution by Inspection

0.1 Solution by Inspection 1 Modeling with Differential Equations: Introduction to the Issues c 2002 Donald Kreider and Dwight Lahr A differential equation is an equation involving derivatives and functions. In the last section,

More information

3. On the grid below, sketch and label graphs of the following functions: y = sin x, y = cos x, and y = sin(x π/2). π/2 π 3π/2 2π 5π/2

3. On the grid below, sketch and label graphs of the following functions: y = sin x, y = cos x, and y = sin(x π/2). π/2 π 3π/2 2π 5π/2 AP Physics C Calculus C.1 Name Trigonometric Functions 1. Consider the right triangle to the right. In terms of a, b, and c, write the expressions for the following: c a sin θ = cos θ = tan θ =. Using

More information

Chapter 2: First Order DE 2.4 Linear vs. Nonlinear DEs

Chapter 2: First Order DE 2.4 Linear vs. Nonlinear DEs Chapter 2: First Order DE 2.4 Linear vs. Nonlinear DEs First Order DE 2.4 Linear vs. Nonlinear DE We recall the general form of the First Oreder DEs (FODE): dy = f(t, y) (1) dt where f(t, y) is a function

More information

2tdt 1 y = t2 + C y = which implies C = 1 and the solution is y = 1

2tdt 1 y = t2 + C y = which implies C = 1 and the solution is y = 1 Lectures - Week 11 General First Order ODEs & Numerical Methods for IVPs In general, nonlinear problems are much more difficult to solve than linear ones. Unfortunately many phenomena exhibit nonlinear

More information

Qualitative analysis of differential equations: Part I

Qualitative analysis of differential equations: Part I Qualitative analysis of differential equations: Part I Math 12 Section 16 November 7, 216 Hi, I m Kelly. Cole is away. Office hours are cancelled. Cole is available by email: zmurchok@math.ubc.ca. Today...

More information

Tangent Lines and Derivatives

Tangent Lines and Derivatives The Derivative and the Slope of a Graph Tangent Lines and Derivatives Recall that the slope of a line is sometimes referred to as a rate of change. In particular, we are referencing the rate at which the

More information

Exercise 4) Newton's law of cooling is a model for how objects are heated or cooled by the temperature of an ambient medium surrounding them.

Exercise 4) Newton's law of cooling is a model for how objects are heated or cooled by the temperature of an ambient medium surrounding them. Exercise 4) Newton's law of cooling is a model for how objects are heated or cooled by the temperature of an ambient medium surrounding them. In this model, the body temperature T = T t changes at a rate

More information

AP Calculus. Derivatives.

AP Calculus. Derivatives. 1 AP Calculus Derivatives 2015 11 03 www.njctl.org 2 Table of Contents Rate of Change Slope of a Curve (Instantaneous ROC) Derivative Rules: Power, Constant, Sum/Difference Higher Order Derivatives Derivatives

More information

Section 4.2: The Mean Value Theorem

Section 4.2: The Mean Value Theorem Section 4.2: The Mean Value Theorem Before we continue with the problem of describing graphs using calculus we shall briefly pause to examine some interesting applications of the derivative. In previous

More information

1.2. Direction Fields: Graphical Representation of the ODE and its Solution Let us consider a first order differential equation of the form dy

1.2. Direction Fields: Graphical Representation of the ODE and its Solution Let us consider a first order differential equation of the form dy .. Direction Fields: Graphical Representation of the ODE and its Solution Let us consider a first order differential equation of the form dy = f(x, y). In this section we aim to understand the solution

More information

Implicit Differentiation, Related Rates. Goals: Introduce implicit differentiation. Study problems involving related rates.

Implicit Differentiation, Related Rates. Goals: Introduce implicit differentiation. Study problems involving related rates. Unit #5 : Implicit Differentiation, Related Rates Goals: Introduce implicit differentiation. Study problems involving related rates. Tangent Lines to Relations - Implicit Differentiation - 1 Implicit Differentiation

More information

KINEMATICS IN ONE DIMENSION p. 1

KINEMATICS IN ONE DIMENSION p. 1 KINEMATICS IN ONE DIMENSION p. 1 Motion involves a change in position. Position can be indicated by an x-coordinate on a number line. ex/ A bumblebee flies along a number line... x = 2 when t = 1 sec 2

More information

Introduction to Initial Value Problems

Introduction to Initial Value Problems Chapter 2 Introduction to Initial Value Problems The purpose of this chapter is to study the simplest numerical methods for approximating the solution to a first order initial value problem (IVP). Because

More information

Everything Old Is New Again: Connecting Calculus To Algebra Andrew Freda

Everything Old Is New Again: Connecting Calculus To Algebra Andrew Freda Everything Old Is New Again: Connecting Calculus To Algebra Andrew Freda (afreda@deerfield.edu) ) Limits a) Newton s Idea of a Limit Perhaps it may be objected, that there is no ultimate proportion of

More information

Math 1241, Spring 2014 Section 3.3. Rates of Change Average vs. Instantaneous Rates

Math 1241, Spring 2014 Section 3.3. Rates of Change Average vs. Instantaneous Rates Math 1241, Spring 2014 Section 3.3 Rates of Change Average vs. Instantaneous Rates Average Speed The concept of speed (distance traveled divided by time traveled) is a familiar instance of a rate of change.

More information

CHAPTER 6 VECTOR CALCULUS. We ve spent a lot of time so far just looking at all the different ways you can graph

CHAPTER 6 VECTOR CALCULUS. We ve spent a lot of time so far just looking at all the different ways you can graph CHAPTER 6 VECTOR CALCULUS We ve spent a lot of time so far just looking at all the different ways you can graph things and describe things in three dimensions, and it certainly seems like there is a lot

More information

Analyzing Autonomous DEs: Spotted Owls

Analyzing Autonomous DEs: Spotted Owls Analyzing Autonomous DEs: Spotted Owls A group of biologists are making predictions about the spotted owl population in a forest in the Pacific Northwest. The autonomous differential equation the scientist

More information

AP Calculus AB. Introduction. Slide 1 / 233 Slide 2 / 233. Slide 4 / 233. Slide 3 / 233. Slide 6 / 233. Slide 5 / 233. Limits & Continuity

AP Calculus AB. Introduction. Slide 1 / 233 Slide 2 / 233. Slide 4 / 233. Slide 3 / 233. Slide 6 / 233. Slide 5 / 233. Limits & Continuity Slide 1 / 233 Slide 2 / 233 AP Calculus AB Limits & Continuity 2015-10-20 www.njctl.org Slide 3 / 233 Slide 4 / 233 Table of Contents click on the topic to go to that section Introduction The Tangent Line

More information

AP Calculus AB. Slide 1 / 233. Slide 2 / 233. Slide 3 / 233. Limits & Continuity. Table of Contents

AP Calculus AB. Slide 1 / 233. Slide 2 / 233. Slide 3 / 233. Limits & Continuity. Table of Contents Slide 1 / 233 Slide 2 / 233 AP Calculus AB Limits & Continuity 2015-10-20 www.njctl.org Table of Contents click on the topic to go to that section Slide 3 / 233 Introduction The Tangent Line Problem Definition

More information

for the initial position and velocity. Find formulas for v t and x t. b) Assuming x 0 = 0 and v 0 O 0, show that the maximum value of x t is x max

for the initial position and velocity. Find formulas for v t and x t. b) Assuming x 0 = 0 and v 0 O 0, show that the maximum value of x t is x max Math 2250-4 Wed Aug 28 Finish 1.2. Differential equations of the form y# x = f x. Then begin section 1.3, slope fields., We still have two exercises to finish from Tuesday's notes: the formula for the

More information

18.03SC Practice Problems 2

18.03SC Practice Problems 2 8.03SC Practice Problems 2 Direction fields, integral curves, isoclines, separatrices, funnels Solution Suggestions As an example, take the ODE dy = x 2y.. Draw a big axis system and plot some isoclines,

More information

Exam 1 Review SOLUTIONS

Exam 1 Review SOLUTIONS 1. True or False (and give a short reason): Exam 1 Review SOLUTIONS (a) If the parametric curve x = f(t), y = g(t) satisfies g (1) = 0, then it has a horizontal tangent line when t = 1. FALSE: To make

More information

2.2 The Derivative Function

2.2 The Derivative Function 2.2 The Derivative Function Arkansas Tech University MATH 2914: Calculus I Dr. Marcel B. Finan Recall that a function f is differentiable at x if the following it exists f f(x + h) f(x) (x) =. (2.2.1)

More information

25. Chain Rule. Now, f is a function of t only. Expand by multiplication:

25. Chain Rule. Now, f is a function of t only. Expand by multiplication: 25. Chain Rule The Chain Rule is present in all differentiation. If z = f(x, y) represents a two-variable function, then it is plausible to consider the cases when x and y may be functions of other variable(s).

More information

1 Antiderivatives graphically and numerically

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

More information

Ch 6.2: Solution of Initial Value Problems

Ch 6.2: Solution of Initial Value Problems Ch 6.2: Solution of Initial Value Problems! The Laplace transform is named for the French mathematician Laplace, who studied this transform in 1782.! The techniques described in this chapter were developed

More information

Calculus I Announcements

Calculus I Announcements Slide 1 Calculus I Announcements Read sections 4.2,4.3,4.4,4.1 and 5.3 Do the homework from sections 4.2,4.3,4.4,4.1 and 5.3 Exam 3 is Thursday, November 12th See inside for a possible exam question. Slide

More information

dx. Ans: y = tan x + x2 + 5x + C

dx. Ans: y = tan x + x2 + 5x + C Chapter 7 Differential Equations and Mathematical Modeling If you know one value of a function, and the rate of change (derivative) of the function, then yu can figure out many things about the function.

More information

Autonomous means conditions are constant in time, though they may depend on the current value of y.

Autonomous means conditions are constant in time, though they may depend on the current value of y. 18.03 Class 8, Feb 19, 2010 Autonomous equations [1] Logistic equation [2] Phase line [3] Extrema, points of inflection Announcements: Final Tuesday, May 18, 9:00-12:00, Johnson Track Hour exam next Wednesday:

More information

Calculus for the Life Sciences II Assignment 6 solutions. f(x, y) = 3π 3 cos 2x + 2 sin 3y

Calculus for the Life Sciences II Assignment 6 solutions. f(x, y) = 3π 3 cos 2x + 2 sin 3y Calculus for the Life Sciences II Assignment 6 solutions Find the tangent plane to the graph of the function at the point (0, π f(x, y = 3π 3 cos 2x + 2 sin 3y Solution: The tangent plane of f at a point

More information

M408 C Fall 2011 Dr. Jeffrey Danciger Exam 2 November 3, Section time (circle one): 11:00am 1:00pm 2:00pm

M408 C Fall 2011 Dr. Jeffrey Danciger Exam 2 November 3, Section time (circle one): 11:00am 1:00pm 2:00pm M408 C Fall 2011 Dr. Jeffrey Danciger Exam 2 November 3, 2011 NAME EID Section time (circle one): 11:00am 1:00pm 2:00pm No books, notes, or calculators. Show all your work. Do NOT open this exam booklet

More information

Chapter 6 Nonlinear Systems and Phenomena. Friday, November 2, 12

Chapter 6 Nonlinear Systems and Phenomena. Friday, November 2, 12 Chapter 6 Nonlinear Systems and Phenomena 6.1 Stability and the Phase Plane We now move to nonlinear systems Begin with the first-order system for x(t) d dt x = f(x,t), x(0) = x 0 In particular, consider

More information

AP Calculus AB. Limits & Continuity.

AP Calculus AB. Limits & Continuity. 1 AP Calculus AB Limits & Continuity 2015 10 20 www.njctl.org 2 Table of Contents click on the topic to go to that section Introduction The Tangent Line Problem Definition of a Limit and Graphical Approach

More information

3.5: Euler s Method (cont d) and 3.7: Population Modeling

3.5: Euler s Method (cont d) and 3.7: Population Modeling 3.5: Euler s Method (cont d) and 3.7: Population Modeling Mathematics 3 Lecture 19 Dartmouth College February 15, 2010 Typeset by FoilTEX Example 1 Let s consider a very simple first-order IVP: dy dx =

More information

Lecture 7 - Separable Equations

Lecture 7 - Separable Equations Lecture 7 - Separable Equations Separable equations is a very special type of differential equations where you can separate the terms involving only y on one side of the equation and terms involving only

More information

DRAFT - Math 101 Lecture Note - Dr. Said Algarni

DRAFT - Math 101 Lecture Note - Dr. Said Algarni 2 Limits 2.1 The Tangent Problems The word tangent is derived from the Latin word tangens, which means touching. A tangent line to a curve is a line that touches the curve and a secant line is a line that

More information

8.1 Supplement: Differential Equations and Slope Fields

8.1 Supplement: Differential Equations and Slope Fields Math 131 -copyright Angela Allen, Spring 2008 1 8.1 Supplement: Differential Equations and Slope Fields Note: Several of these examples come from your textbook Calculus Concepts: An Applied Approach to

More information

Science One Integral Calculus

Science One Integral Calculus Science One Integral Calculus January 018 Happy New Year! Differential Calculus central idea: The Derivative What is the derivative f (x) of a function f(x)? Differential Calculus central idea: The Derivative

More information

Chapter 6: Messy Integrals

Chapter 6: Messy Integrals Chapter 6: Messy Integrals Review: Solve the following integrals x 4 sec x tan x 0 0 Find the average value of 3 1 x 3 3 Evaluate 4 3 3 ( x 1), then find the area of ( x 1) 4 Section 6.1: Slope Fields

More information

Slope Fields and Differential Equations. Copyright Cengage Learning. All rights reserved.

Slope Fields and Differential Equations. Copyright Cengage Learning. All rights reserved. Slope Fields and Differential Equations Copyright Cengage Learning. All rights reserved. Objectives Review verifying solutions to differential equations. Review solving differential equations. Review using

More information

AB Calculus: Rates of Change and Tangent Lines

AB Calculus: Rates of Change and Tangent Lines AB Calculus: Rates of Change and Tangent Lines Name: The World Record Basketball Shot A group called How Ridiculous became YouTube famous when they successfully made a basket from the top of Tasmania s

More information

Math 2250-004 Week 1 notes We will not necessarily finish the material from a given day's notes on that day. We may also add or subtract some material as the week progresses, but these notes represent

More information

Math Week 1 notes

Math Week 1 notes Math 2280-001 Week 1 notes We will not necessarily finish the material from a given day's notes on that day. We may also add or subtract some material as the week progresses, but these notes represent

More information

Section 2.1 (First Order) Linear DEs; Method of Integrating Factors. General first order linear DEs Standard Form; y'(t) + p(t) y = g(t)

Section 2.1 (First Order) Linear DEs; Method of Integrating Factors. General first order linear DEs Standard Form; y'(t) + p(t) y = g(t) Section 2.1 (First Order) Linear DEs; Method of Integrating Factors Key Terms/Ideas: General first order linear DEs Standard Form; y'(t) + p(t) y = g(t) Integrating factor; a function μ(t) that transforms

More information

On linear and non-linear equations. (Sect. 1.6).

On linear and non-linear equations. (Sect. 1.6). On linear and non-linear equations. (Sect. 1.6). Review: Linear differential equations. Non-linear differential equations. The Picard-Lindelöf Theorem. Properties of solutions to non-linear ODE. The Proof

More information

Integration, differentiation, and root finding. Phys 420/580 Lecture 7

Integration, differentiation, and root finding. Phys 420/580 Lecture 7 Integration, differentiation, and root finding Phys 420/580 Lecture 7 Numerical integration Compute an approximation to the definite integral I = b Find area under the curve in the interval Trapezoid Rule:

More information

Chapter 6 - Ordinary Differential Equations

Chapter 6 - Ordinary Differential Equations Chapter 6 - Ordinary Differential Equations 7.1 Solving Initial-Value Problems In this chapter, we will be interested in the solution of ordinary differential equations. Ordinary differential equations

More information

APPLICATIONS OF DIFFERENTIATION

APPLICATIONS OF DIFFERENTIATION 4 APPLICATIONS OF DIFFERENTIATION APPLICATIONS OF DIFFERENTIATION 4.9 Antiderivatives In this section, we will learn about: Antiderivatives and how they are useful in solving certain scientific problems.

More information

2.1 How Do We Measure Speed? Student Notes HH6ed. Time (sec) Position (m)

2.1 How Do We Measure Speed? Student Notes HH6ed. Time (sec) Position (m) 2.1 How Do We Measure Speed? Student Notes HH6ed Part I: Using a table of values for a position function The table below represents the position of an object as a function of time. Use the table to answer

More information

Integration - Past Edexcel Exam Questions

Integration - Past Edexcel Exam Questions Integration - Past Edexcel Exam Questions 1. (a) Given that y = 5x 2 + 7x + 3, find i. - ii. - (b) ( 1 + 3 ) x 1 x dx. [4] 2. Question 2b - January 2005 2. The gradient of the curve C is given by The point

More information

Module 2: Reflecting on One s Problems

Module 2: Reflecting on One s Problems MATH55 Module : Reflecting on One s Problems Main Math concepts: Translations, Reflections, Graphs of Equations, Symmetry Auxiliary ideas: Working with quadratics, Mobius maps, Calculus, Inverses I. Transformations

More information

Infinite Limits. Infinite Limits. Infinite Limits. Previously, we discussed the limits of rational functions with the indeterminate form 0/0.

Infinite Limits. Infinite Limits. Infinite Limits. Previously, we discussed the limits of rational functions with the indeterminate form 0/0. Infinite Limits Return to Table of Contents Infinite Limits Infinite Limits Previously, we discussed the limits of rational functions with the indeterminate form 0/0. Now we will consider rational functions

More information

4 The Cartesian Coordinate System- Pictures of Equations

4 The Cartesian Coordinate System- Pictures of Equations 4 The Cartesian Coordinate System- Pictures of Equations Concepts: The Cartesian Coordinate System Graphs of Equations in Two Variables x-intercepts and y-intercepts Distance in Two Dimensions and the

More information

INTRODUCTION TO COMPUTER METHODS FOR O.D.E.

INTRODUCTION TO COMPUTER METHODS FOR O.D.E. INTRODUCTION TO COMPUTER METHODS FOR O.D.E. 0. Introduction. The goal of this handout is to introduce some of the ideas behind the basic computer algorithms to approximate solutions to differential equations.

More information

Approximations - the method of least squares (1)

Approximations - the method of least squares (1) Approximations - the method of least squares () In many applications, we have to consider the following problem: Suppose that for some y, the equation Ax = y has no solutions It could be that this is an

More information

Section 1.4 Tangents and Velocity

Section 1.4 Tangents and Velocity Math 132 Tangents and Velocity Section 1.4 Section 1.4 Tangents and Velocity Tangent Lines A tangent line to a curve is a line that just touches the curve. In terms of a circle, the definition is very

More information

Slope Fields: Graphing Solutions Without the Solutions

Slope Fields: Graphing Solutions Without the Solutions 8 Slope Fields: Graphing Solutions Without the Solutions Up to now, our efforts have been directed mainly towards finding formulas or equations describing solutions to given differential equations. Then,

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

Lecture 6, September 1, 2017

Lecture 6, September 1, 2017 Engineering Mathematics Fall 07 Lecture 6, September, 07 Escape Velocity Suppose we have a planet (or any large near to spherical heavenly body) of radius R and acceleration of gravity at the surface of

More information

MATH 1902: Mathematics for the Physical Sciences I

MATH 1902: Mathematics for the Physical Sciences I MATH 1902: Mathematics for the Physical Sciences I Dr Dana Mackey School of Mathematical Sciences Room A305 A Email: Dana.Mackey@dit.ie Dana Mackey (DIT) MATH 1902 1 / 46 Module content/assessment Functions

More information

For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a

For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a AP Physics C: Mechanics Greetings, For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a brief introduction to Calculus that gives you an operational knowledge of

More information

Chapter 1 Functions and Limits

Chapter 1 Functions and Limits Contents Chapter 1 Functions and Limits Motivation to Chapter 1 2 4 Tangent and Velocity Problems 3 4.1 VIDEO - Secant Lines, Average Rate of Change, and Applications......................... 3 4.2 VIDEO

More information

sec x dx = ln sec x + tan x csc x dx = ln csc x cot x

sec x dx = ln sec x + tan x csc x dx = ln csc x cot x Name: Instructions: The exam will have eight problems. Make sure that your reasoning and your final answers are clear. Include labels and units when appropriate. No notes, books, or calculators are permitted

More information

Antiderivatives and Indefinite Integrals

Antiderivatives and Indefinite Integrals Antiderivatives and Indefinite Integrals MATH 151 Calculus for Management J. Robert Buchanan Department of Mathematics Fall 2018 Objectives After completing this lesson we will be able to use the definition

More information

Section 3.9. The Geometry of Graphs. Difference Equations to Differential Equations

Section 3.9. The Geometry of Graphs. Difference Equations to Differential Equations Difference Equations to Differential Equations Section 3.9 The Geometry of Graphs In Section. we discussed the graph of a function y = f(x) in terms of plotting points (x, f(x)) for many different values

More information

CHAPTER 7. An Introduction to Numerical Methods for. Linear and Nonlinear ODE s

CHAPTER 7. An Introduction to Numerical Methods for. Linear and Nonlinear ODE s A SERIES OF CLASS NOTES FOR 2005-2006 TO INTRODUCE LINEAR AND NONLINEAR PROBLEMS TO ENGINEERS, SCIENTISTS, AND APPLIED MATHEMATICIANS DE CLASS NOTES 1 A COLLECTION OF HANDOUTS ON FIRST ORDER ORDINARY DIFFERENTIAL

More information

Solving Differential Equations: First Steps

Solving Differential Equations: First Steps 30 ORDINARY DIFFERENTIAL EQUATIONS 3 Solving Differential Equations Solving Differential Equations: First Steps Now we start answering the question which is the theme of this book given a differential

More information

Numerical methods for solving ODEs

Numerical methods for solving ODEs Chapter 2 Numerical methods for solving ODEs We will study two methods for finding approximate solutions of ODEs. Such methods may be used for (at least) two reasons the ODE does not have an exact solution

More information

Calculus I Practice Test Problems for Chapter 2 Page 1 of 7

Calculus I Practice Test Problems for Chapter 2 Page 1 of 7 Calculus I Practice Test Problems for Chapter Page of 7 This is a set of practice test problems for Chapter This is in no way an inclusive set of problems there can be other types of problems on the actual

More information

WEEK 7 NOTES AND EXERCISES

WEEK 7 NOTES AND EXERCISES WEEK 7 NOTES AND EXERCISES RATES OF CHANGE (STRAIGHT LINES) Rates of change are very important in mathematics. Take for example the speed of a car. It is a measure of how far the car travels over a certain

More information

LIMITS AND DERIVATIVES

LIMITS AND DERIVATIVES 2 LIMITS AND DERIVATIVES LIMITS AND DERIVATIVES 1. Equation In Section 2.7, we considered the derivative of a function f at a fixed number a: f '( a) lim h 0 f ( a h) f ( a) h In this section, we change

More information

. For each initial condition y(0) = y 0, there exists a. unique solution. In fact, given any point (x, y), there is a unique curve through this point,

. For each initial condition y(0) = y 0, there exists a. unique solution. In fact, given any point (x, y), there is a unique curve through this point, 1.2. Direction Fields: Graphical Representation of the ODE and its Solution Section Objective(s): Constructing Direction Fields. Interpreting Direction Fields. Definition 1.2.1. A first order ODE of the

More information

Numerical differentiation

Numerical differentiation Numerical differentiation Paul Seidel 1801 Lecture Notes Fall 011 Suppose that we have a function f(x) which is not given by a formula but as a result of some measurement or simulation (computer experiment)

More information

MATH CALCULUS I 4.1: Area and Distance

MATH CALCULUS I 4.1: Area and Distance MATH 12002 - CALCULUS I 4.1: Area and Distance Professor Donald L. White Department of Mathematical Sciences Kent State University D.L. White (Kent State University) 1 / 8 The Area and Distance Problems

More information

Midterm 1 Review. Distance = (x 1 x 0 ) 2 + (y 1 y 0 ) 2.

Midterm 1 Review. Distance = (x 1 x 0 ) 2 + (y 1 y 0 ) 2. Midterm 1 Review Comments about the midterm The midterm will consist of five questions and will test on material from the first seven lectures the material given below. No calculus either single variable

More information

Topic 5 Notes Jeremy Orloff. 5 Homogeneous, linear, constant coefficient differential equations

Topic 5 Notes Jeremy Orloff. 5 Homogeneous, linear, constant coefficient differential equations Topic 5 Notes Jeremy Orloff 5 Homogeneous, linear, constant coefficient differential equations 5.1 Goals 1. Be able to solve homogeneous constant coefficient linear differential equations using the method

More information

Section 1.4. Meaning of Slope for Equations, Graphs, and Tables

Section 1.4. Meaning of Slope for Equations, Graphs, and Tables Section 1.4 Meaning of Slope for Equations, Graphs, and Tables Finding Slope from a Linear Equation Finding Slope from a Linear Equation Example Find the slope of the line Solution Create a table using

More information

Math 131. The Derivative and the Tangent Line Problem Larson Section 2.1

Math 131. The Derivative and the Tangent Line Problem Larson Section 2.1 Math 131. The Derivative and the Tangent Line Problem Larson Section.1 From precalculus, the secant line through the two points (c, f(c)) and (c +, f(c + )) is given by m sec = rise f(c + ) f(c) f(c +

More information

Parametric Equations, Function Composition and the Chain Rule: A Worksheet

Parametric Equations, Function Composition and the Chain Rule: A Worksheet Parametric Equations, Function Composition and the Chain Rule: A Worksheet Prof.Rebecca Goldin Oct. 8, 003 1 Parametric Equations We have seen that the graph of a function f(x) of one variable consists

More information

Lesson 3-1: Solving Linear Systems by Graphing

Lesson 3-1: Solving Linear Systems by Graphing For the past several weeks we ve been working with linear equations. We ve learned how to graph them and the three main forms they can take. Today we re going to begin considering what happens when we

More information

The Detective s Hat Function

The Detective s Hat Function The Detective s Hat Function (,) (,) (,) (,) (, ) (4, ) The graph of the function f shown above is a piecewise continuous function defined on [, 4]. The graph of f consists of five line segments. Let g

More information

"A Sensible Approach to Calculus: Differential Equations, Estimation, and Modelling in The Fundamental Theorem."

A Sensible Approach to Calculus: Differential Equations, Estimation, and Modelling in The Fundamental Theorem. flashman@humboldt.edu "A Sensible Approach to Calculus: Differential Equations, Estimation, and Modelling in The Fundamental Theorem." Sacramento Valley Community College Mathematics Conference March 15,

More information

Calculus with business applications, Lehigh U, Lecture 03 notes Summer

Calculus with business applications, Lehigh U, Lecture 03 notes Summer Calculus with business applications, Lehigh U, Lecture 03 notes Summer 01 1 Lines and quadratics 1. Polynomials, functions in which each term is a positive integer power of the independent variable include

More information