Building the function from the derivative

Slides:



Advertisements
Similar presentations
The Chain Rule Section 3.6c.
Advertisements

Equations of Tangent Lines
4.5: Linear Approximations and Differentials
Meanings of the Derivatives. I. The Derivative at the Point as the Slope of the Tangent to the Graph of the Function at the Point.
Looking for insight in the special case of antiderivatives.
Copyright © 2008 Pearson Education, Inc. Chapter 10 Differential Equations Copyright © 2008 Pearson Education, Inc.
DERIVATIVES Linear Approximations and Differentials In this section, we will learn about: Linear approximations and differentials and their applications.
NUMERICAL SOLUTION OF ORDINARY DIFFERENTIAL EQUATIONS
Math 3C Euler’s Method Prepared by Vince Zaccone For Campus Learning Assistance Services at UCSB.
Numerical Solution of Ordinary Differential Equation
Section 6.1: Euler’s Method. Local Linearity and Differential Equations Slope at (2,0): Tangent line at (2,0): Not a good approximation. Consider smaller.
A Numerical Technique for Building a Solution to a DE or system of DE’s.
A Numerical Technique for Building a Solution to a DE or system of DE’s.
DERIVATIVES 3. We have seen that a curve lies very close to its tangent line near the point of tangency. DERIVATIVES.
A technique for approximating the real zeros of a Function.
Slope Fields and Euler’s Method
Slope Fields and Euler’s Method
SPECIALIST MATHS Differential Equations Week 1. Differential Equations The solution to a differential equations is a function that obeys it. Types of.
Euler’s Method Building the function from the derivative.
Copyright © Cengage Learning. All rights reserved.
Linear approximation and differentials (Section 2.9)
Suppose we are given a differential equation and initial condition: Then we can approximate the solution to the differential equation by its linearization.
For any function f (x), the tangent is a close approximation of the function for some small distance from the tangent point. We call the equation of the.
§3.6 Newton’s Method. The student will learn about
3 Copyright © Cengage Learning. All rights reserved. Applications of Differentiation.
Linearization, Newton’s Method
Differential Equations Linear Equations with Variable Coefficients.
N * Use linear equations to solve problems and interpret the meaning of slope, m, and the y-intercept, b, in f(x)= mx + b in terms of the context.
More with Rules for Differentiation Warm-Up: Find the derivative of f(x) = 3x 2 – 4x 4 +1.
DO NOW:  Find the equation of the line tangent to the curve f(x) = 3x 2 + 4x at x = -2.
2.3 Rate of Change (Calc I Review). Average Velocity Suppose s(t) is the position of an object at time t, where a ≤ t ≤ b. The average velocity, or average.
Local Linear Approximation Objective: To estimate values using a local linear approximation.
Problem of the Day - Calculator Let f be the function given by f(x) = 2e4x. For what value of x is the slope of the line tangent to the graph of f at (x,
© 2010 Pearson Education Inc.Goldstein/Schneider/Lay/Asmar, CALCULUS AND ITS APPLICATIONS, 12e– Slide 1 of 33 Chapter 3 Techniques of Differentiation.
Lesson 9-2 Direction (Slope) Fields and Euler’s Method.
Euler’s Method If we have a formula for the derivative of a function and we know the value of the function at one point, Euler’s method lets us build an.
Mean Value Theorem.
Linear approximation and differentials (Section 3.9)
Differential Equations
Writing Linear Equations in Slope-Intercept Form
Chapter 3 Techniques of Differentiation
Prepared by Vince Zaccone
Ch. 5 – Applications of Derivatives
Local Linearity and Approximation
Question Find the derivative of Sol..
Section Euler’s Method
Euler’s Method If we have a formula for the derivative of a function and we know the value of the function at one point, Euler’s method lets us build an.
Copyright © Cengage Learning. All rights reserved.
Local Linearity and Approximation
New y = Old y + y’(Old t, Old y) Dt
Copyright © Cengage Learning. All rights reserved.
Slope Fields This is the slope field for Equilibrium Solutions
Copyright © Cengage Learning. All rights reserved.
2-4: Writing Linear Equations Using Slope Intercept Form
Linearization and Newton’s Method
Copyright © Cengage Learning. All rights reserved.
Linearization and Newton’s Method
§3.10 Linear Approximations and Differentials
Linearization and Newton’s Method
Choose the differential equation corresponding to this direction field
Choose the equation which solution is graphed and satisfies the initial condition y ( 0 ) = 8. {applet} {image}
Linear approximation and differentials (Section 3.9)
Where do these graphs intersect
Writing Linear Equations from Graphs
Fixed- Point Iteration
Slope Fields (6.1) January 10th, 2017.
More with Rules for Differentiation
Students will be able to graph equations of lines.
Copyright © Cengage Learning. All rights reserved.
Demo Slide.
Presentation transcript:

Building the function from the derivative Euler’s Method Building the function from the derivative

Local Linearity and Approximation Slope = f’(x0)

Euler’s Method Here’s how it works. Suppose we know the value of the derivative of a function at any point and we know the value of the function at one point. We can build an approximate graph of the function using local linearity to approximate over and over again. This iterative procedure is called Euler’s Method. Dt

Implementing Euler’s Method What’s needed to get Euler’s method started? Well, you need a differential equation of the form: y’ = some expression in t and y And a point (t0,y0) that lies on the graph of the solution function y=f(t). A smaller step size will lead to more accuracy, but will also take more computations. Finally, you need a fixed step size Dt. New t = Old t + Dt New y = Old y + Dy = Old y + (slope at (Old t, Old y)) Dt

For instance, if y’= sin(t2) and (1,1) lies on the graph of y =f(t), then 1000 steps of length .01 yield the following graph of the function f. This graph is the anti-derivative of sin(t2); a function which has no elementary formula!

New y = Old y + Dy = Old y + y’(Old t, Old y) Dt How do we accomplish this? Suppose that y’ = t sin(y) and (1,1) lies on the graph. Let Dt=.1. Old Point Slope at old Pt. Change in y New t New y Old t Old y y’(old t, old y) Dy= y’*Dt Old t + Dt Oldy + Dy 1 .8414 .08414 1.1 1.084 .9723 .09723 1.2 1.181 1.1101 .11101 1.3 1.292 New t = Old t + Dt New y = Old y + Dy = Old y + y’(Old t, Old y) Dt