(A) Opening Problem Newton s Law of Cooling

Size: px
Start display at page:

Download "(A) Opening Problem Newton s Law of Cooling"

Transcription

1 Lesson 55 Numerical Solutions to Differential Equations Euler's Method IBHL - 1 (A) Opening Problem Newton s Law of Cooling! Newton s Law of Cooling states that the temperature of a body changes at a rate proportional to the difference in temperature between its own temperature and the temperature of its surroundings! For example, a ball at 1200K is allowed to cool down in air at an ambient temperature of 300K. Assuming heat is lost only due to radiation, the differential equation for the temperature of the ball is given (in general) by dt dt = A ( T T s) where T S is the surroundings temp! Estimate the temperature after 480 seconds 2 1

2 (A) Opening Problem BUT what if...! A ball at 1200K is allowed to cool down in air at an ambient temperature of 300K. Assuming heat is lost only due to radiation, the differential equation for the temperature of the ball is NOW given (in general) by! But specifically now by: dt dt = A T 4 B ( ) where T 0 ( ) = T 0 (in Kelvin) dt dt = T ( ) and T 0 ( ) =1200K! Estimate the temperature after 480 seconds 3 Lesson Objectives! Review solution strategies to solving Diff Eqns! algebraic and graphic (slope fields)! Find specific numerical solutions to Diff Eqns through successive linear approximations (Euler s method) 4 2

3 Slope Manipulations.! If m = Δy solve for y Δx = y 2 y 1 Δx 2! Explain the significance of y 2, given the calculation you have just performed. Explain with a visual 5 (A) Overview! If we were given a separable differential equation and an initial condition, we could find the solution.! However, there are some differential equations where this simple technique (separable) will not work! so there are other techniques for solving differential equations, but again they too sometimes fail. 6 3

4 (A) Overview! This is where Euler's Method is used. Euler's Method provides us with an approximation for the solution of a differential equation. The idea behind Euler's Method is to use the concept of local linearity to join multiple small line segments so that they make up an approximation of the actual curve, as seen in the diagram. 7 (A) Overview! Other times, we may not be interested in a visual solution (graph) & we cannot algebraically develop the equation of the solution, but we may be interested in a SPECIFIC NUMERIC solution! FOR EXAMPLE:! A ball at 1200K is allowed to cool down in air at an ambient temperature of 300K. Assuming heat is lost only due to radiation, the differential equation for the temperature of the ball is given by dt dt = ( T ),T( 0) =1200K 8! and we want an estimate the temperature after 480 seconds 4

5 (B) What is Euler s Method?! METHOD: Essentially, you take an initial condition (a given data point), and use that condition as a starting point to take a small step h along the tangent line to get to a new point. Now repeat using the new point as a starting point.! *Note: The smaller the steps used, the more accurate your graph will be. y True Value y i+1, Predicted value y i h Step size x i x i+1 x 5

6 (B) Explain the next 5 slides. 11 (B) Explain the next 4 slides. 12 6

7 (B) Explain the next 3 slides. 13 (B) Explain the next 2 slides. 14 7

8 (B) Explain the next 1 slide. 15 (C) Example! Given the differential equation dy dx = x 2 y and y(0) =1 find the value of y(2) using Euler s method with 4 iterations. 8

9 (C) Example 17 OVERVIEW: To Apply Euler s Method: 1. Divide the interval n equal subintervals. (In our example 4.) 2. Compute the width of each subinterval which is Δx=h=(x n -x 0 )/n. 3. Compute the sequence of points as follows: y 0 (x 4,y 4 ) (x 3,y 3 ) (x (x 1,y 1 ) act,y act ) (x 2,y 2 ) (x 0,y 0 ) Δx x 0 x 1 x 2 x 3 x 4 In general the coordinates of the point (x n+1,y n+1 ) can be computed from the coordinates of the point (x n,y n ) as follows: 9

10 Example: Given the differential equation to the right with its boundary conditions find the value of y(2) using Euler s method with 4 iterations. 1. x 0 = 0 and y 0 =1 and x 4 = 2 2. h = Δx = = 1 2 x 1 = = 1 2 y 1 =1+ ( 0 2 1) 1 =1 2 x 2 = = y 2 =1+ ( 1 2) 2 1 x 3 =1+ 1 = y 3 = ( 1) x 4 = = y 4 = ( 1.5) ( ) 1 2 = =1.125 ( ) 1 2 = = ( ) 1 2 = = dy dx = x 2 y y(0) =1 The actual solution is: y = e 1 3 x 3 y(2) = e 8 3 = Other examples

11 Other examples. 21 Other examples

12 Other examples

13 25 Other worked examples.! Domain/2872/eulers%20method%20practice2.pdf! Euler's+worksheet+answers.pdf! ap09_calculus_bc_q4.pdf 26 13

14 (A) Opening Problem! A ball at 1200K is allowed to cool down in air at an ambient temperature of 300K. Assuming heat is lost only due to radiation, the differential equation for the temperature of the ball is given (in general) by dt dt = A T 4 B ( ) where T 0 ( ) = T 0 (in Kelvin)! But specifically now by: dt dt = T ( ) and T 0 ( ) =1200K! Estimate the temperature after 480 seconds 27 (A) Back to Opening Problem! A ball at 1200K is allowed to cool down in air at an ambient temperature of 300K. Assuming heat is lost only due to radiation, the differential equation for the temperature of the ball is given by dt dt = T ( ),T 0 ( ) =1200K! Estimate the temperature after 480 seconds, using h to be

15 Solution Step 1: is the approximate temperature at 29 Solution Cont Step 2: For is the approximate temperature at 30 15

16 Solution Cont The exact solution of the ordinary differential equation is given by the solution of a non-linear equation as The solution to this nonlinear equation at t=480 seconds is 31 Comparison of Exact and Numerical Solutions 32 Figure 3. Comparing exact and Euler s method 16

17 Effect of step size Table 1. Temperature at 480 seconds as a function of step size, h Step, h θ(480) E t є t % (exact) 33 Comparison with exact results Figure 4. Comparison of Euler s method with exact solution for different step sizes 34 17

18 Video Resources! v=4wgyb87mjcm&index=3&list=ple11a4e20ea !

Lesson 31 - Average and Instantaneous Rates of Change

Lesson 31 - Average and Instantaneous Rates of Change Lesson 31 - Average and Instantaneous Rates of Change IBHL Math & Calculus - Santowski 1 Lesson Objectives! 1. Calculate an average rate of change! 2. Estimate instantaneous rates of change using a variety

More information

Euler s Method (BC Only)

Euler s Method (BC Only) Euler s Method (BC Only) Euler s Method is used to generate numerical approximations for solutions to differential equations that are not separable by methods tested on the AP Exam. It is necessary to

More information

Integration. Topic: Trapezoidal Rule. Major: General Engineering. Author: Autar Kaw, Charlie Barker.

Integration. Topic: Trapezoidal Rule. Major: General Engineering. Author: Autar Kaw, Charlie Barker. Integration Topic: Trapezoidal Rule Major: General Engineering Author: Autar Kaw, Charlie Barker 1 What is Integration Integration: The process of measuring the area under a function plotted on a graph.

More information

Euler s Method and Logistic Growth (BC Only)

Euler s Method and Logistic Growth (BC Only) Euler s Method Students should be able to: Approximate numerical solutions of differential equations using Euler s method without a calculator. Recognize the method as a recursion formula extension of

More information

Differential Equations Review

Differential Equations Review P. R. Nelson diff eq prn.tex Winter 2010 p. 1/20 Differential Equations Review Phyllis R. Nelson prnelson@csupomona.edu Professor, Department of Electrical and Computer Engineering California State Polytechnic

More information

Solving ODEs Euler Method & RK2/4

Solving ODEs Euler Method & RK2/4 Solving ODEs Euler Method & RK2/4 www.mpia.de/homes/mordasini/uknum/ueb_ode.pdf Major: All Engineering Majors Authors: Autar Kaw, Charlie Barker Transforming Numerical Methods Education for STEM 02/11/10

More information

Lesson 4 - Limits & Instantaneous Rates of Change

Lesson 4 - Limits & Instantaneous Rates of Change Lesson Objectives Lesson 4 - Limits & Instantaneous Rates of Cange SL Topic 6 Calculus - Santowski 1. Calculate an instantaneous rate of cange using difference quotients and limits. Calculate instantaneous

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

Math 1120 Calculus Final Exam

Math 1120 Calculus Final Exam May 4, 2001 Name The first five problems count 7 points each (total 35 points) and rest count as marked. There are 195 points available. Good luck. 1. Consider the function f defined by: { 2x 2 3 if x

More information

Chapter 3 Acceleration

Chapter 3 Acceleration Chapter 3 Acceleration Slide 3-1 PackBack The first answer gives a good physical picture. The video was nice, and worth the second answer. https://www.youtube.com/w atch?v=m57cimnj7fc Slide 3-2 Slide 3-3

More information

Ï ( ) Ì ÓÔ. Math 2413 FRsu11. Short Answer. 1. Complete the table and use the result to estimate the limit. lim x 3. x 2 16x+ 39

Ï ( ) Ì ÓÔ. Math 2413 FRsu11. Short Answer. 1. Complete the table and use the result to estimate the limit. lim x 3. x 2 16x+ 39 Math 43 FRsu Short Answer. Complete the table and use the result to estimate the it. x 3 x 3 x 6x+ 39. Let f x x.9.99.999 3.00 3.0 3. f(x) Ï ( ) Ô = x + 5, x Ì ÓÔ., x = Determine the following it. (Hint:

More information

Chapter 3 Acceleration

Chapter 3 Acceleration Chapter 3 Acceleration Slide 3-1 Chapter 3: Acceleration Chapter Goal: To extend the description of motion in one dimension to include changes in velocity. This type of motion is called acceleration. Slide

More information

AP Calculus AB. Course Overview. Course Outline and Pacing Guide

AP Calculus AB. Course Overview. Course Outline and Pacing Guide AP Calculus AB Course Overview AP Calculus AB is designed to follow the topic outline in the AP Calculus Course Description provided by the College Board. The primary objective of this course is to provide

More information

MA 102 Mathematics II Lecture Feb, 2015

MA 102 Mathematics II Lecture Feb, 2015 MA 102 Mathematics II Lecture 1 20 Feb, 2015 Differential Equations An equation containing derivatives is called a differential equation. The origin of differential equations Many of the laws of nature

More information

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

MATH The Derivative as a Function - Section 3.2. The derivative of f is the function. f x h f x. f x lim

MATH The Derivative as a Function - Section 3.2. The derivative of f is the function. f x h f x. f x lim MATH 90 - The Derivative as a Function - Section 3.2 The derivative of f is the function f x lim h 0 f x h f x h for all x for which the limit exists. The notation f x is read "f prime of x". Note that

More information

Analytic Trigonometry. Copyright Cengage Learning. All rights reserved.

Analytic Trigonometry. Copyright Cengage Learning. All rights reserved. Analytic Trigonometry Copyright Cengage Learning. All rights reserved. 7.4 Basic Trigonometric Equations Copyright Cengage Learning. All rights reserved. Objectives Basic Trigonometric Equations Solving

More information

Systems of Linear ODEs

Systems of Linear ODEs P a g e 1 Systems of Linear ODEs Systems of ordinary differential equations can be solved in much the same way as discrete dynamical systems if the differential equations are linear. We will focus here

More information

OBJECTIVE Find limits of functions, if they exist, using numerical or graphical methods.

OBJECTIVE Find limits of functions, if they exist, using numerical or graphical methods. 1.1 Limits: A Numerical and Graphical Approach OBJECTIVE Find limits of functions, if they exist, using numerical or graphical methods. 1.1 Limits: A Numerical and Graphical Approach DEFINITION: As x approaches

More information

Displacement, Velocity, and Acceleration AP style

Displacement, Velocity, and Acceleration AP style Displacement, Velocity, and Acceleration AP style Linear Motion Position- the location of an object relative to a reference point. IF the position is one-dimension only, we often use the letter x to represent

More information

Appendix A. Common Mathematical Operations in Chemistry

Appendix A. Common Mathematical Operations in Chemistry Appendix A Common Mathematical Operations in Chemistry In addition to basic arithmetic and algebra, four mathematical operations are used frequently in general chemistry: manipulating logarithms, using

More information

Analyzing Functions Maximum & Minimum Points Lesson 75

Analyzing Functions Maximum & Minimum Points Lesson 75 (A) Lesson Objectives a. Understand what is meant by the term extrema as it relates to functions b. Use graphic and algebraic methods to determine extrema of a function c. Apply the concept of extrema

More information

Learning Objectives for Math 165

Learning Objectives for Math 165 Learning Objectives for Math 165 Chapter 2 Limits Section 2.1: Average Rate of Change. State the definition of average rate of change Describe what the rate of change does and does not tell us in a given

More information

Mathematics 132 Calculus for Physical and Life Sciences 2 Exam 3 Review Sheet April 15, 2008

Mathematics 132 Calculus for Physical and Life Sciences 2 Exam 3 Review Sheet April 15, 2008 Mathematics 32 Calculus for Physical and Life Sciences 2 Eam 3 Review Sheet April 5, 2008 Sample Eam Questions - Solutions This list is much longer than the actual eam will be (to give you some idea of

More information

Alg II Syllabus (First Semester)

Alg II Syllabus (First Semester) Alg II Syllabus (First Semester) Unit 1: Solving linear equations and inequalities Lesson 01: Solving linear equations Lesson 02: Solving linear inequalities (See Calculator Appendix A and associated video.)

More information

Paper Reference. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced. Friday 6 June 2008 Afternoon Time: 1 hour 30 minutes

Paper Reference. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced. Friday 6 June 2008 Afternoon Time: 1 hour 30 minutes Centre No. Candidate No. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced Friday 6 June 2008 Afternoon Time: 1 hour 30 minutes Materials required for examination Mathematical Formulae

More information

Sec. 14.3: Partial Derivatives. All of the following are ways of representing the derivative. y dx

Sec. 14.3: Partial Derivatives. All of the following are ways of representing the derivative. y dx Math 2204 Multivariable Calc Chapter 14: Partial Derivatives I. Review from math 1225 A. First Derivative Sec. 14.3: Partial Derivatives 1. Def n : The derivative of the function f with respect to the

More information

AB.Q103.NOTES: Chapter 2.4, 3.1, 3.2 LESSON 1. Discovering the derivative at x = a: Slopes of secants and tangents to a curve

AB.Q103.NOTES: Chapter 2.4, 3.1, 3.2 LESSON 1. Discovering the derivative at x = a: Slopes of secants and tangents to a curve AB.Q103.NOTES: Chapter 2.4, 3.1, 3.2 LESSON 1 Discovering the derivative at x = a: Slopes of secants and tangents to a curve 1 1. Instantaneous rate of change versus average rate of change Equation of

More information

Book 4. June 2013 June 2014 June Name :

Book 4. June 2013 June 2014 June Name : Book 4 June 2013 June 2014 June 2015 Name : June 2013 1. Given that 4 3 2 2 ax bx c 2 2 3x 2x 5x 4 dxe x 4 x 4, x 2 find the values of the constants a, b, c, d and e. 2. Given that f(x) = ln x, x > 0 sketch

More information

QMI Lesson 19: Integration by Substitution, Definite Integral, and Area Under Curve

QMI Lesson 19: Integration by Substitution, Definite Integral, and Area Under Curve QMI Lesson 19: Integration by Substitution, Definite Integral, and Area Under Curve C C Moxley Samford University Brock School of Business Substitution Rule The following rules arise from the chain rule

More information

APPLICATIONS OF FD APPROXIMATIONS FOR SOLVING ORDINARY DIFFERENTIAL EQUATIONS

APPLICATIONS OF FD APPROXIMATIONS FOR SOLVING ORDINARY DIFFERENTIAL EQUATIONS LECTURE 10 APPLICATIONS OF FD APPROXIMATIONS FOR SOLVING ORDINARY DIFFERENTIAL EQUATIONS Ordinary Differential Equations Initial Value Problems For Initial Value problems (IVP s), conditions are specified

More information

Ordinary Differential Equations I

Ordinary Differential Equations I Ordinary Differential Equations I CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Justin Solomon CS 205A: Mathematical Methods Ordinary Differential Equations I 1 / 32 Theme of Last Few

More information

Inverse Kinematics. Mike Bailey.

Inverse Kinematics. Mike Bailey. Inverse Kinematics This work is licensed under a Creative Commons Attribution-NonCommercial- NoDerivatives 4.0 International License Mike Bailey mjb@cs.oregonstate.edu inversekinematics.pptx Inverse Kinematics

More information

Second Order ODEs. Second Order ODEs. In general second order ODEs contain terms involving y, dy But here only consider equations of the form

Second Order ODEs. Second Order ODEs. In general second order ODEs contain terms involving y, dy But here only consider equations of the form Second Order ODEs Second Order ODEs In general second order ODEs contain terms involving y, dy But here only consider equations of the form A d2 y dx 2 + B dy dx + Cy = 0 dx, d2 y dx 2 and F(x). where

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

Differential Equations

Differential Equations Differential Equations Definitions Finite Differences Taylor Series based Methods: Euler Method Runge-Kutta Methods Improved Euler, Midpoint methods Runge Kutta (2nd, 4th order) methods Predictor-Corrector

More information

ENGR 213: Applied Ordinary Differential Equations

ENGR 213: Applied Ordinary Differential Equations ENGR 213: Applied Ordinary Differential Equations Youmin Zhang Department of Mechanical and Industrial Engineering Concordia University Phone: x5741 Office Location: EV 4-109 Email: ymzhang@encs.concordia.ca

More information

AP Calculus BC. Course Overview. Course Outline and Pacing Guide

AP Calculus BC. Course Overview. Course Outline and Pacing Guide AP Calculus BC Course Overview AP Calculus BC is designed to follow the topic outline in the AP Calculus Course Description provided by the College Board. The primary objective of this course is to provide

More information

(Refer Slide Time: 01:17)

(Refer Slide Time: 01:17) Heat and Mass Transfer Prof. S.P. Sukhatme Department of Mechanical Engineering Indian Institute of Technology, Bombay Lecture No. 7 Heat Conduction 4 Today we are going to look at some one dimensional

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

Project 1: Riemann Sums

Project 1: Riemann Sums MS 00 Integral Calculus and Differential Equations 1 Project 1: Riemann Sums In this project you prove some summation identities and then apply them to calculate various integrals from first principles.

More information

3.8 Exponential Growth and Decay

3.8 Exponential Growth and Decay 3.8 Exponential Growth and Decay Suppose the rate of change of y with respect to t is proportional to y itself. So there is some constant k such that dy dt = ky The only solution to this equation is an

More information

First-Order Differential Equations

First-Order Differential Equations CHAPTER 1 First-Order Differential Equations 1. Diff Eqns and Math Models Know what it means for a function to be a solution to a differential equation. In order to figure out if y = y(x) is a solution

More information

( ) be the particular solution to the differential equation passing through the point (2, 1). Write an

( ) be the particular solution to the differential equation passing through the point (2, 1). Write an 70. AB Calculus Step-by-Step Name Consider the differential equation dy dx = x +1 y. ( ) be the particular solution to the differential equation passing through the point (2, 1). Write an a. Let f x equation

More information

Unit #6 Basic Integration and Applications Homework Packet

Unit #6 Basic Integration and Applications Homework Packet Unit #6 Basic Integration and Applications Homework Packet For problems, find the indefinite integrals below.. x 3 3. x 3x 3. x x 3x 4. 3 / x x 5. x 6. 3x x3 x 3 x w w 7. y 3 y dy 8. dw Daily Lessons and

More information

Math 2373: Linear Algebra and Differential Equations

Math 2373: Linear Algebra and Differential Equations Math 373: Linear Algebra and Differential Equations Paul Cazeaux* Fraser Hall 1, MW 15:35-1:5 September 7 th, 1 December th, 1 Contents 1 First-order differential equations 1 1.1 Dynamical systems and

More information

Set 3: Limits of functions:

Set 3: Limits of functions: Set 3: Limits of functions: A. The intuitive approach (.): 1. Watch the video at: https://www.khanacademy.org/math/differential-calculus/it-basics-dc/formal-definition-of-its-dc/v/itintuition-review. 3.

More information

AP CALCULUS BC 2009 SCORING GUIDELINES

AP CALCULUS BC 2009 SCORING GUIDELINES AP CALCULUS BC 2009 SCORING GUIDELINES Question 5 x 2 5 8 1 f ( x ) 1 4 2 6 Let f be a function that is twice differentiable for all real numbers. The table above gives values of f for selected points

More information

Ordinary Differential Equations I

Ordinary Differential Equations I Ordinary Differential Equations I CS 205A: Mathematical Methods for Robotics, Vision, and Graphics Justin Solomon CS 205A: Mathematical Methods Ordinary Differential Equations I 1 / 27 Theme of Last Three

More information

Paper Reference. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced Level. Monday 12 June 2006 Afternoon Time: 1 hour 30 minutes

Paper Reference. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced Level. Monday 12 June 2006 Afternoon Time: 1 hour 30 minutes Centre No. Candidate No. Paper Reference(s) 6665/01 Edexcel GCE Core Mathematics C3 Advanced Level Monday 12 June 2006 Afternoon Time: 1 hour 30 minutes Materials required for examination Mathematical

More information

Lesson 09 Methods of integrating ordinary differential equations

Lesson 09 Methods of integrating ordinary differential equations Lesson 09 Methods of integrating ordinary differential equations Suppose we do not have the commands from Mathematica, what can we do? http://numericalmethods.eng.usf.edu/ Euler s Method Euler s method

More information

Robotics. Islam S. M. Khalil. November 15, German University in Cairo

Robotics. Islam S. M. Khalil. November 15, German University in Cairo Robotics German University in Cairo November 15, 2016 Fundamental concepts In optimal control problems the objective is to determine a function that minimizes a specified functional, i.e., the performance

More information

Lecture 1. Scott Pauls 1 3/28/07. Dartmouth College. Math 23, Spring Scott Pauls. Administrivia. Today s material.

Lecture 1. Scott Pauls 1 3/28/07. Dartmouth College. Math 23, Spring Scott Pauls. Administrivia. Today s material. Lecture 1 1 1 Department of Mathematics Dartmouth College 3/28/07 Outline Course Overview http://www.math.dartmouth.edu/~m23s07 Matlab Ordinary differential equations Definition An ordinary differential

More information

Calculus Review Session. Brian Prest Duke University Nicholas School of the Environment August 18, 2017

Calculus Review Session. Brian Prest Duke University Nicholas School of the Environment August 18, 2017 Calculus Review Session Brian Prest Duke University Nicholas School of the Environment August 18, 2017 Topics to be covered 1. Functions and Continuity 2. Solving Systems of Equations 3. Derivatives (one

More information

Exam 3 MATH Calculus I

Exam 3 MATH Calculus I Trinity College December 03, 2015 MATH 131-01 Calculus I By signing below, you attest that you have neither given nor received help of any kind on this exam. Signature: Printed Name: Instructions: Show

More information

Numerical Optimization Algorithms

Numerical Optimization Algorithms Numerical Optimization Algorithms 1. Overview. Calculus of Variations 3. Linearized Supersonic Flow 4. Steepest Descent 5. Smoothed Steepest Descent Overview 1 Two Main Categories of Optimization Algorithms

More information

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

PARAMETRIC EQUATIONS AND POLAR COORDINATES

PARAMETRIC EQUATIONS AND POLAR COORDINATES 10 PARAMETRIC EQUATIONS AND POLAR COORDINATES PARAMETRIC EQUATIONS & POLAR COORDINATES We have seen how to represent curves by parametric equations. Now, we apply the methods of calculus to these parametric

More information

Traveling Harmonic Waves

Traveling Harmonic Waves Traveling Harmonic Waves 6 January 2016 PHYC 1290 Department of Physics and Atmospheric Science Functional Form for Traveling Waves We can show that traveling waves whose shape does not change with time

More information

VIDEO LINKS: a) b)

VIDEO LINKS: a)   b) CALCULUS 30: OUTCOME 4A DAY 1 SLOPE AND RATE OF CHANGE To review the concepts of slope and rate of change. VIDEO LINKS: a) https://goo.gl/r9fhx3 b) SLOPE OF A LINE: Is a measure of the steepness of a line

More information

SYSTEMS OF NONLINEAR EQUATIONS

SYSTEMS OF NONLINEAR EQUATIONS SYSTEMS OF NONLINEAR EQUATIONS Widely used in the mathematical modeling of real world phenomena. We introduce some numerical methods for their solution. For better intuition, we examine systems of two

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

Slopes, Derivatives, and Tangents. Matt Riley, Kyle Mitchell, Jacob Shaw, Patrick Lane

Slopes, Derivatives, and Tangents. Matt Riley, Kyle Mitchell, Jacob Shaw, Patrick Lane Slopes, Derivatives, and Tangents Matt Riley, Kyle Mitchell, Jacob Shaw, Patrick Lane S Introduction Definition of a tangent line: The tangent line at a point on a curve is a straight line that just touches

More information

Chapter 3 Acceleration

Chapter 3 Acceleration Chapter 3 Acceleration Slide 3-1 Chapter 3: Acceleration Chapter Goal: To extend the description of motion in one dimension to include changes in velocity. This type of motion is called acceleration. Slide

More information

Chapter 1: Introduction

Chapter 1: Introduction Chapter 1: Introduction Definition: A differential equation is an equation involving the derivative of a function. If the function depends on a single variable, then only ordinary derivatives appear and

More information

Exam 4 SCORE. MA 114 Exam 4 Spring Section and/or TA:

Exam 4 SCORE. MA 114 Exam 4 Spring Section and/or TA: Exam 4 Name: Section and/or TA: Last Four Digits of Student ID: Do not remove this answer page you will return the whole exam. You will be allowed two hours to complete this test. No books or notes may

More information

MATHEMATICS AP Calculus (BC) Standard: Number, Number Sense and Operations

MATHEMATICS AP Calculus (BC) Standard: Number, Number Sense and Operations Standard: Number, Number Sense and Operations Computation and A. Develop an understanding of limits and continuity. 1. Recognize the types of nonexistence of limits and why they Estimation are nonexistent.

More information

= π + sin π = π + 0 = π, so the object is moving at a speed of π feet per second after π seconds. (c) How far does it go in π seconds?

= π + sin π = π + 0 = π, so the object is moving at a speed of π feet per second after π seconds. (c) How far does it go in π seconds? Mathematics 115 Professor Alan H. Stein April 18, 005 SOLUTIONS 1. Define what is meant by an antiderivative or indefinite integral of a function f(x). Solution: An antiderivative or indefinite integral

More information

AP Calculus BC Fall Final Part IIa

AP Calculus BC Fall Final Part IIa AP Calculus BC 18-19 Fall Final Part IIa Calculator Required Name: 1. At time t = 0, there are 120 gallons of oil in a tank. During the time interval 0 t 10 hours, oil flows into the tank at a rate of

More information

Math Review and Lessons in Calculus

Math Review and Lessons in Calculus Math Review and Lessons in Calculus Agenda Rules o Eponents Functions Inverses Limits Calculus Rules o Eponents 0 Zero Eponent Rule a * b ab Product Rule * 3 5 a / b a-b Quotient Rule 5 / 3 -a / a Negative

More information

AP Calculus BC. Free-Response Questions

AP Calculus BC. Free-Response Questions 017 AP Calculus BC Free-Response Questions 017 The College Board. College Board, Advanced Placement Program, AP, AP Central, and the acorn logo are registered trademarks of the College Board. 017 AP CALCULUS

More information

Mathematical Computing

Mathematical Computing IMT2b2β Department of Mathematics University of Ruhuna A.W.L. Pubudu Thilan Differential Equations Types of Differential Equations Differential equations can basically be classified as ordinary differential

More information

AP Calculus Curriculum Guide Dunmore School District Dunmore, PA

AP Calculus Curriculum Guide Dunmore School District Dunmore, PA AP Calculus Dunmore School District Dunmore, PA AP Calculus Prerequisite: Successful completion of Trigonometry/Pre-Calculus Honors Advanced Placement Calculus is the highest level mathematics course offered

More information

C min = Δ V O 2 / Δ T a -- for values below the lower limit of thermal neutrality (T ll ) So: C min = ABS[( ) ml O 2 / (g*h) / (0-10) o C]

C min = Δ V O 2 / Δ T a -- for values below the lower limit of thermal neutrality (T ll ) So: C min = ABS[( ) ml O 2 / (g*h) / (0-10) o C] Bio39 thanks to Dr. J.F. Anderson, Dept. Zoology Univ. of Florida, Gainesville Problem: Euthermy The following data were collected by measuring rates of metabolism in an endothermic homeotherm over a range

More information

Exploring the Derivative (2.7, 2.8) Prelab: Review Figure 1 (p. 141), Figure 6 (p. 143), Example 7 (p. 147) and Equation 2 (p.

Exploring the Derivative (2.7, 2.8) Prelab: Review Figure 1 (p. 141), Figure 6 (p. 143), Example 7 (p. 147) and Equation 2 (p. Exploring the Derivative (2.7, 2.8) Prelab: Review Figure (p. 4), Figure 6 (p. 43), Example 7 (p. 47) and Equation 2 (p. 52) I. Introduction: We begin by exploring a tangent line geometrically. Suppose

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

Greenwich Public Schools Mathematics Curriculum Objectives. Calculus

Greenwich Public Schools Mathematics Curriculum Objectives. Calculus Mathematics Curriculum Objectives Calculus June 30, 2006 NUMERICAL AND PROPORTIONAL REASONING Quantitative relationships can be expressed numerically in multiple ways in order to make connections and simplify

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

Slope Fields, Differential Equations... and Maybe Euler s Method, Too

Slope Fields, Differential Equations... and Maybe Euler s Method, Too Slope Fields, Differential Equations... and Maybe Euler s Method, Too Chuck Garner, Ph.D. Department of Mathematics Rockdale Magnet School for Science and Technology October 10, 2014 / Georgia DOE AP Content

More information

9.1 Solving Differential Equations

9.1 Solving Differential Equations 9.1 Solving Differential Equations What is a differential equation? Real-world examples: The order of a differential equation is the order of the that occurs in the equation. A differential equation is

More information

Final Exam Review Part I: Unit IV Material

Final Exam Review Part I: Unit IV Material Final Exam Review Part I: Unit IV Material Math114 Department of Mathematics, University of Kentucky April 26, 2017 Math114 Lecture 37 1/ 11 Outline 1 Conic Sections Math114 Lecture 37 2/ 11 Outline 1

More information

We saw in Section 5.1 that a limit of the form. arises when we compute an area.

We saw in Section 5.1 that a limit of the form. arises when we compute an area. INTEGRALS 5 INTEGRALS Equation 1 We saw in Section 5.1 that a limit of the form n lim f ( x *) x n i 1 i lim[ f ( x *) x f ( x *) x... f ( x *) x] n 1 2 arises when we compute an area. n We also saw that

More information

6x 2 8x + 5 ) = 12x 8. f (x) ) = d (12x 8) = 12

6x 2 8x + 5 ) = 12x 8. f (x) ) = d (12x 8) = 12 AMS/ECON 11A Class Notes 11/6/17 UCSC *) Higher order derivatives Example. If f = x 3 x + 5x + 1, then f = 6x 8x + 5 Observation: f is also a differentiable function... d f ) = d 6x 8x + 5 ) = 1x 8 dx

More information

Math-2A Lesson 13-3 (Analyzing Functions, Systems of Equations and Inequalities) Which functions are symmetric about the y-axis?

Math-2A Lesson 13-3 (Analyzing Functions, Systems of Equations and Inequalities) Which functions are symmetric about the y-axis? Math-A Lesson 13-3 (Analyzing Functions, Systems of Equations and Inequalities) Which functions are symmetric about the y-axis? f ( x) x x x x x x 3 3 ( x) x We call functions that are symmetric about

More information

1. How could you determine the average speed of an object whose motion is represented in the graphs above?

1. How could you determine the average speed of an object whose motion is represented in the graphs above? AP Physics Lesson 1 b Kinematics Graphical Analysis and Kinematic Equation Use Outcomes Interpret graphical evidence of motion (uniform speed & uniform acceleration). Apply an understanding of position

More information

Mathematics Lecture. 6 Chapter. 4 APPLICATIONS OF DERIVATIVES. By Dr. Mohammed Ramidh

Mathematics Lecture. 6 Chapter. 4 APPLICATIONS OF DERIVATIVES. By Dr. Mohammed Ramidh Mathematics Lecture. 6 Chapter. 4 APPLICATIONS OF DERIVATIVES By Dr. Mohammed Ramidh OVERVIEW: This chapter studies some of the important applications of derivatives. We learn how derivatives are used

More information

Computational Physics (6810): Session 8

Computational Physics (6810): Session 8 Computational Physics (6810): Session 8 Dick Furnstahl Nuclear Theory Group OSU Physics Department February 24, 2014 Differential equation solving Session 7 Preview Session 8 Stuff Solving differential

More information

HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK

HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK HUDSONVILLE HIGH SCHOOL COURSE FRAMEWORK COURSE / SUBJECT A P C a l c u l u s ( A B ) KEY COURSE OBJECTIVES/ENDURING UNDERSTANDINGS OVERARCHING/ESSENTIAL SKILLS OR QUESTIONS Limits and Continuity Derivatives

More information

5.1 Separable Differential Equations

5.1 Separable Differential Equations 5.1 Separable Differential Equations A differential equation is an equation that has one or more derivatives in it. The order of a differential equation is the highest derivative present in the equation.

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

Parametric Equations and Polar Coordinates

Parametric Equations and Polar Coordinates Parametric Equations and Polar Coordinates Parametrizations of Plane Curves In previous chapters, we have studied curves as the graphs of functions or equations involving the two variables x and y. Another

More information

Chapter 5: Quadratic Applications

Chapter 5: Quadratic Applications Algebra 2 and Trigonometry Honors Chapter 5: Quadratic Applications Name: Teacher: Pd: Table of Contents Day 1: Finding the roots of quadratic equations using various methods. SWBAT: Find the roots of

More information

Math 266: Ordinary Differential Equations

Math 266: Ordinary Differential Equations Math 266: Ordinary Differential Equations Long Jin Purdue University, Spring 2018 Basic information Lectures: MWF 8:30-9:20(111)/9:30-10:20(121), UNIV 103 Instructor: Long Jin (long249@purdue.edu) Office

More information

AP Calculus AB. Free-Response Questions

AP Calculus AB. Free-Response Questions 2018 AP Calculus AB Free-Response Questions College Board, Advanced Placement Program, AP, AP Central, and the acorn logo are registered trademarks of the College Board. AP Central is the official online

More information

Calculus for the Life Sciences

Calculus for the Life Sciences Improved Calculus for the Life Sciences ntial Equations Joseph M. Mahaffy, jmahaffy@mail.sdsu.edu Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences Research Center

More information

An object is launched straight upward so that its height, h, is a function of time, t, with

An object is launched straight upward so that its height, h, is a function of time, t, with WebAssign Lesson 13-3 Applications (Homework) Current Score : / 18 Due : Wednesday, April 30 2014 09:00 AM MDT Shari Dorsey Sp 14 Math 170, section 003, Spring 2014 Instructor: Shari Dorsey 1. /1 points

More information

AP Calculus AB Winter Break Packet Happy Holidays!

AP Calculus AB Winter Break Packet Happy Holidays! AP Calculus AB Winter Break Packet 04 Happy Holidays! Section I NO CALCULATORS MAY BE USED IN THIS PART OF THE EXAMINATION. Directions: Solve each of the following problems. After examining the form of

More information

The Fundamental Theorem of Calculus

The Fundamental Theorem of Calculus The Fundamental Theorem of Calculus Objectives Evaluate a definite integral using the Fundamental Theorem of Calculus. Understand and use the Mean Value Theorem for Integrals. Find the average value of

More information

dy dt = a by y = a b

dy dt = a by y = a b 12.3 Euler s method and numerical solutions First-Order Linear Differential Equation with y(0) = y 0 given. dy dt = a by Steady state solutions: 0 = dy dt = a by y = a b 12.3 Euler s method and numerical

More information

Unit 5 Applications of Antidifferentiation

Unit 5 Applications of Antidifferentiation Warmup 1) If f ( ) cos(ln ) for > 0, then f () (a) sin(ln ) (b) sin(ln ) (c) sin(ln ) (d) sin(ln ) (e) ln sin 2) If f ( ) 2, then f () (a) 2 ( ln 2) (b) 2 (1 ln 2) (c) 2 ln 2 (d) 2 (1 ln 2) (e) 2 (1 ln

More information