Slope Fields This is the slope field for Equilibrium Solutions

Slides:



Advertisements
Similar presentations
The Chain Rule Section 3.6c.
Advertisements

Section 7.2: Direction Fields and Euler’s Methods Practice HW from Stewart Textbook (not to hand in) p. 511 # 1-13, odd.
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.
Differential Equations (4/17/06) A differential equation is an equation which contains derivatives within it. More specifically, it is an equation which.
Math 3C Euler’s Method Prepared by Vince Zaccone For Campus Learning Assistance Services at UCSB.
Differential Equations
Numerical Solution of Ordinary Differential Equation
In the previous two sections, we focused on finding solutions to differential equations. However, most differential equations cannot be solved explicitly.
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.
Numerical Solutions to ODEs Nancy Griffeth January 14, 2014 Funding for this workshop was provided by the program “Computational Modeling and Analysis.
A Numerical Technique for Building a Solution to a DE or system of DE’s.
TODAY IN ALGEBRA…  Warm Up: Graphing Linear Equations and solving for y.  Learning Goal: 7.1 You will solve systems on linear equations by Graphing 
Math 3120 Differential Equations with Boundary Value Problems Chapter 2: First-Order Differential Equations Section 2-6: A Numerical Method.
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.
Differential Equations Chapter 1. A differential equation in x and y is an equation that involves x, y, and derivatives of y. A mathematical model often.
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.
1 6.1 Slope Fields and Euler's Method Objective: Solve differential equations graphically and numerically.
When an equation is in slope-intercept form: Examples: Identify the slope of the line and the y- intercept for each equation. 1. y = 3x y = ½.
§3.6 Newton’s Method. The student will learn about
Ch 8.2: Improvements on the Euler Method Consider the initial value problem y' = f (t, y), y(t 0 ) = y 0, with solution  (t). For many problems, Euler’s.
Differential Equations Linear Equations with Variable Coefficients.
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.
1/14  5.2 Euler’s Method Compute the approximations of y(t) at a set of ( usually equally-spaced ) mesh points a = t 0 < t 1
Set #1, Question E: TRUE or FALSE: “A differential equation is a type of function.” A. TRUE B. FALSE.
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,
Solving Differential Equations Slope Fields. Solving DE: Slope Fields Slope Fields allow you to approximate the solutions to differential equations graphically.
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.
Differential Equations
Writing Linear Equations in Slope-Intercept Form
Scientific Computing Lab
Prepared by Vince Zaccone
AP Calculus Honors Ms. Olifer
Further Applications of Integration
Local Linearity and Approximation
Question Find the derivative of Sol..
Section Euler’s Method
Differential Equations (10/14/13)
Differential Equations
Graphing Linear Equations
Differential Equations
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.
Local Linearity and Approximation
Clicker Questions Friday Sep. 4, 2009
Clicker Questions for Class #5 Friday Sep. 6, 2013
New y = Old y + y’(Old t, Old y) Dt
Objective Find slope by using the slope formula..
Building the function from the derivative
Graphing Linear Equations
Linearization and Newton’s Method
Numerical solution of first-order ordinary differential equations
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}
Where do these graphs intersect
Writing Linear Equations from Graphs
Fixed- Point Iteration
Direction Fields and Euler's Method
Clicker Questions October 14, 2009
Students will be able to graph equations of lines.
Numerical solution of first-order ordinary differential equations 1. First order Runge-Kutta method (Euler’s method) Let’s start with the Taylor series.
Presentation transcript:

Slope Fields This is the slope field for Equilibrium Solutions We get an approx. graph for a solution by starting at an initial point and following the arrows.

Local Linearity and Approximation Slope = f’(t0)

Euler’s Method Here’s how it works. Suppose we have a DE that tells us the value of the derivative of a function at any point and an initial condition. We can build an approximate graph of the solution 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’ = f (t , y) And an initial condition (t0,y0) that lies on the graph of the solution function y(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 + f (Old t, Old y)) Dt

For instance, if y’= sin(t2) and (1,1) lies on the graph of y = y(t), then 1000 steps of length .01 yield the following graph of the function y. 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