Math 132 Lab 3: Differential Equations

Size: px
Start display at page:

Download "Math 132 Lab 3: Differential Equations"

Transcription

1 Math 132 Lab 3: Differential Equations Instructions. Follow the directions in each part of the lab. The lab report is due Monday, April 19. You need only hand in these pages. Answer each lab question in the space provided. Part I: Slope Fields In this part of the lab you will use the program DFIELD, by John Polking, to investigate the qualitative behavior of some differential equations. To access the program, open a web browser and go to the following address: Next, click on the button that says DFIELD to start the applet. Several windows should open. One window shows the plot of a slope field. Click on any point in the screen to plot the solution which passes through that point. Another window shows the differential equation, in the form x = f(t, x), along with the range of t and x values that will appear in the slope field plot. The unknown function here is x(t), so x means. To change the equation, just enter the new dt f(t, x) on the right hand side of the equation. You may also change x to y and t to x if you prefer to use the notation in our text. 1. Plot the slope field for dt = tx 1 over the domain 2 t 2, 4 x 4. Plot the solution that satisfies the initial condition x(0) = 1. Question 1. For this solution, what is x(1), approximately? What is lim t x(t)? Solution. x(1) 0.25 and lim t x(t) = Plot the solution that satisfies the initial condition x(0) = 2. Question 2. For this solution, what is x(1), approximately? What is lim t x(t)? Solution. x(1) 1.88 and lim t x(t) = + 1

2 2. Plot the slope field for dt = t3 t over the domain 2 t 2, 4 x 4. Plot several solutions. Question 3. How are the solution curves related to one another? What feature of the differential equation explains this relationship? (Hint: Can you find the exact solution?) Solution. The solutions all differ by a constant. This is because the right hand side of the equation does not depend on y. The solutions can be found by integrating, to get x(t) = 1t t3 + t + C. 3. The differential equation = 0.1x(60 x) 50 dt is a model for the growth of a population (e.g. fish in a pond) which is being harvested (e.g. people fishing). Plot its slope field for 0 t 4 and 0 x 80. Plot several solutions. Question 4. How do the solutions behave as t? In particular, do they go to + or, or level off at some value? How does this behavior depend on the initial condition (t 0, x 0 )? Interpret your findings in terms of the population. Solution. If x 0 > 10 the solution approaches 50 as t. If x 0 < 10, the solution approaches as t. This means that an initial population of less than 10 will become extinct, while an initial population of greater than 10 will survive and eventually level off at 50 in the long run. 2

3 Part II: Euler s Method In this part of the lab, you will investigate the error in Euler s method. Given an initial value problem dy = f(x, y) y(x 0 ) = y 0 and a step size x, recall that Euler s method proceeds by setting x 1 = x 0 + x x 2 = x 1 + x. y 1 = y 0 + f(x 0, y 0 ) x y 2 = y 1 + f(x 1, y 1 ) x. This can be implemented in Maple as follows. First, enter the step size and the function f(x, y). For example, if we want x = 0.2 and f(x, y) = x + y, type :=0.2; f:=(x,y)->x+y; Next, enter the initial condition. For example, if the initial condition is y(0) = 1, type x[0]:=0; y[0]:=1; Next define the values x 1, x 2, etc. One way to do this is to type x[1]:=x[0]+; x[2]:=x[1]+; and so on. Another is to use a loop. Suppose we want to define x 1 through x 5 all at once. We would then type for i from 1 to 5 do x[i]:=x[i-1]+ end do; Likewise, there are two ways to define the values y 1, y 2, etc. One at a time, y[1]:=y[0]+f(x[0],y[0])*; y[2]:=y[1]+f(x[1],y[1])*; or all at once in a loop for i from 1 to 5 do y[i]:=y[i-1]+f(x[i-1],y[i-1])* end do; You should obtain the following results: k x k y k

4 This table forms an approximate solution of the initial value problem dy = x + y y(0) = 1 on the interval 0 x 1. We will now compare this approximation with the exact solution. Question 5. Verify that y = 2e x x 1 is the exact solution of the initial value problem above. Solution. Since dy = 2ex 1 and x + y = 2e x 1, y satisfies the differential equation. Since y(0) = 2 1 = 1, y also satisfies the initial condition. Now let s plot the Euler approximation and the exact solution. To plot the Euler approximation, we need to put the x and y coordinates in a nice form for Maple to use. Type z:=[seq([x[i],y[i]],i=0..5)]; Now we can plot these points: with(plots); plot(z,style=point); Now let s compare this with the exact solution. First, we give this plot a name: plot1:=plot(z,style=point); Now we do the same with the exact solution, and then display them together. plot2:=plot(2*exp(x)-x-1,x=0..1); display(plot1,plot2); WOW! Now let s compute the error in the approximation at the right endpoint x = 1. The exact value is y(1) = 2e 2 = , so the error is E = = You will now investigate how the error changes as x is decreased. 4

5 Question 6. Repeat the procedure above (plotting optional), using x = 0.1 and x = Fill in the tables below with the results. x = 0.1 x = 0.05 k x k y k k x k y k k x k y k Question 7. Use the results from of the previous question to calculate the error at x = 1. Put your results in the table below. x Error at x = Question 8. What happens (approximately) to the error each time x is halved? Solution. The error is halved. 5

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

MATH 215/255 Solutions to Additional Practice Problems April dy dt

MATH 215/255 Solutions to Additional Practice Problems April dy dt . For the nonlinear system MATH 5/55 Solutions to Additional Practice Problems April 08 dx dt = x( x y, dy dt = y(.5 y x, x 0, y 0, (a Show that if x(0 > 0 and y(0 = 0, then the solution (x(t, y(t of the

More information

Using web-based Java pplane applet to graph solutions of systems of differential equations

Using web-based Java pplane applet to graph solutions of systems of differential equations Using web-based Java pplane applet to graph solutions of systems of differential equations Our class project for MA 341 involves using computer tools to analyse solutions of differential equations. This

More information

Math 232, Final Test, 20 March 2007

Math 232, Final Test, 20 March 2007 Math 232, Final Test, 20 March 2007 Name: Instructions. Do any five of the first six questions, and any five of the last six questions. Please do your best, and show all appropriate details in your solutions.

More information

Exam Two. Phu Vu. test Two. Take home group test April 13 ~ April 18. Your group alias: Your group members: Student name

Exam Two. Phu Vu. test Two. Take home group test April 13 ~ April 18. Your group alias: Your group members: Student name Exam Two Take home group test April 3 ~ April 8 Your group alias: Your group members: (leave it blank if you work alone on this test) Your test score Problem Score Total page /7 Problem : (chapter 9, applications

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

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

Math 308 Week 8 Solutions

Math 308 Week 8 Solutions Math 38 Week 8 Solutions There is a solution manual to Chapter 4 online: www.pearsoncustom.com/tamu math/. This online solutions manual contains solutions to some of the suggested problems. Here are solutions

More information

Find the indicated derivative. 1) Find y(4) if y = 3 sin x. A) y(4) = 3 cos x B) y(4) = 3 sin x C) y(4) = - 3 cos x D) y(4) = - 3 sin x

Find the indicated derivative. 1) Find y(4) if y = 3 sin x. A) y(4) = 3 cos x B) y(4) = 3 sin x C) y(4) = - 3 cos x D) y(4) = - 3 sin x Assignment 5 Name Find the indicated derivative. ) Find y(4) if y = sin x. ) A) y(4) = cos x B) y(4) = sin x y(4) = - cos x y(4) = - sin x ) y = (csc x + cot x)(csc x - cot x) ) A) y = 0 B) y = y = - csc

More information

This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus II.

This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus II. MTH 142 Practice Exam Chapters 9-11 Calculus II With Analytic Geometry Fall 2011 - University of Rhode Island This practice exam is intended to help you prepare for the final exam for MTH 142 Calculus

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

ENGI Partial Differentiation Page y f x

ENGI Partial Differentiation Page y f x ENGI 344 4 Partial Differentiation Page 4-0 4. Partial Differentiation For functions of one variable, be found unambiguously by differentiation: y f x, the rate of change of the dependent variable can

More information

MAT 311 Midterm #1 Show your work! 1. The existence and uniqueness theorem says that, given a point (x 0, y 0 ) the ODE. y = (1 x 2 y 2 ) 1/3

MAT 311 Midterm #1 Show your work! 1. The existence and uniqueness theorem says that, given a point (x 0, y 0 ) the ODE. y = (1 x 2 y 2 ) 1/3 MAT 3 Midterm # Show your work!. The existence and uniqueness theorem says that, given a point (x 0, y 0 ) the ODE y = ( x 2 y 2 ) /3 has a unique (local) solution with initial condition y(x 0 ) = y 0

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

13.4 Differentiability, linearization and differentials

13.4 Differentiability, linearization and differentials 13.4 Differentiability, linearization and differentials Theorem [The Increment Theorem for Functions of Two Variables] Suppose that the first partial derivatives of f ( xy, ) are defined throughout an

More information

APS 1030 Astronomy Lab 79 Kepler's Laws KEPLER'S LAWS

APS 1030 Astronomy Lab 79 Kepler's Laws KEPLER'S LAWS APS 1030 Astronomy Lab 79 Kepler's Laws KEPLER'S LAWS SYNOPSIS: Johannes Kepler formulated three laws that described how the planets orbit around the Sun. His work paved the way for Isaac Newton, who derived

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

4 3A : Increasing and Decreasing Functions and the First Derivative. Increasing and Decreasing. then

4 3A : Increasing and Decreasing Functions and the First Derivative. Increasing and Decreasing. then 4 3A : Increasing and Decreasing Functions and the First Derivative Increasing and Decreasing! If the following conditions both occur! 1. f (x) is a continuous function on the closed interval [ a,b] and

More information

Differential equations

Differential equations Differential equations Math 27 Spring 2008 In-term exam February 5th. Solutions This exam contains fourteen problems numbered through 4. Problems 3 are multiple choice problems, which each count 6% of

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

Differential Equations Handout A

Differential Equations Handout A Differential Equations Handout A Math 1b November 11, 2005 These are problems for the differential equations unit of the course, some topics of which are not covered in the main textbook. Some of these

More information

Homework Solutions: , plus Substitutions

Homework Solutions: , plus Substitutions Homework Solutions: 2.-2.2, plus Substitutions Section 2. I have not included any drawings/direction fields. We can see them using Maple or by hand, so we ll be focusing on getting the analytic solutions

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 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

AP Calculus Chapter 3 Testbank (Mr. Surowski)

AP Calculus Chapter 3 Testbank (Mr. Surowski) AP Calculus Chapter 3 Testbank (Mr. Surowski) Part I. Multiple-Choice Questions (5 points each; please circle the correct answer.). If f(x) = 0x 4 3 + x, then f (8) = (A) (B) 4 3 (C) 83 3 (D) 2 3 (E) 2

More information

Math 2250 Lab 08 Lab Section: Class ID: Name/uNID: Due Date: 3/23/2017

Math 2250 Lab 08 Lab Section: Class ID: Name/uNID: Due Date: 3/23/2017 Math 2250 Lab 08 Lab Section: Class ID: Name/uNID: Due Date: 3/23/2017 TA: Instructions: Unless stated otherwise, please show all your work and explain your reasoning when necessary, as partial credit

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

Chain Rule. MATH 311, Calculus III. J. Robert Buchanan. Spring Department of Mathematics

Chain Rule. MATH 311, Calculus III. J. Robert Buchanan. Spring Department of Mathematics 3.33pt Chain Rule MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Spring 2019 Single Variable Chain Rule Suppose y = g(x) and z = f (y) then dz dx = d (f (g(x))) dx = f (g(x))g (x)

More information

Math 251 December 14, 2005 Answer Key to Final Exam. 1 18pt 2 16pt 3 12pt 4 14pt 5 12pt 6 14pt 7 14pt 8 16pt 9 20pt 10 14pt Total 150pt

Math 251 December 14, 2005 Answer Key to Final Exam. 1 18pt 2 16pt 3 12pt 4 14pt 5 12pt 6 14pt 7 14pt 8 16pt 9 20pt 10 14pt Total 150pt Name Section Math 51 December 14, 5 Answer Key to Final Exam There are 1 questions on this exam. Many of them have multiple parts. The point value of each question is indicated either at the beginning

More information

Math 108, Solution of Midterm Exam 3

Math 108, Solution of Midterm Exam 3 Math 108, Solution of Midterm Exam 3 1 Find an equation of the tangent line to the curve x 3 +y 3 = xy at the point (1,1). Solution. Differentiating both sides of the given equation with respect to x,

More information

Math 2250 Lab 3 Due Date : 2/2/2017

Math 2250 Lab 3 Due Date : 2/2/2017 Math 2250 Lab Due Date : 2/2/2017 Name: UID: Unless stated otherwise, show all your work and explain your reasoning. You are allowed to use any results from lecture or the text as long as they are referenced

More information

Exam A. Exam 3. (e) Two critical points; one is a local maximum, the other a local minimum.

Exam A. Exam 3. (e) Two critical points; one is a local maximum, the other a local minimum. 1.(6 pts) The function f(x) = x 3 2x 2 has: Exam A Exam 3 (a) Two critical points; one is a local minimum, the other is neither a local maximum nor a local minimum. (b) Two critical points; one is a local

More information

Math 180C, Spring Supplement on the Renewal Equation

Math 180C, Spring Supplement on the Renewal Equation Math 18C Spring 218 Supplement on the Renewal Equation. These remarks supplement our text and set down some of the material discussed in my lectures. Unexplained notation is as in the text or in lecture.

More information

Lab 5: Nonlinear Systems

Lab 5: Nonlinear Systems Lab 5: Nonlinear Systems Goals In this lab you will use the pplane6 program to study two nonlinear systems by direct numerical simulation. The first model, from population biology, displays interesting

More information

Activity 8b - Electric Field Exploration

Activity 8b - Electric Field Exploration Name Date Activity 8b - Electric Field Exploration Pd Go to the following website: http://phet.colorado.edu Find the heading Run our Simulations and click On Line. Under the Simulations heading, select

More information

M311 Functions of Several Variables. CHAPTER 1. Continuity CHAPTER 2. The Bolzano Weierstrass Theorem and Compact Sets CHAPTER 3.

M311 Functions of Several Variables. CHAPTER 1. Continuity CHAPTER 2. The Bolzano Weierstrass Theorem and Compact Sets CHAPTER 3. M311 Functions of Several Variables 2006 CHAPTER 1. Continuity CHAPTER 2. The Bolzano Weierstrass Theorem and Compact Sets CHAPTER 3. Differentiability 1 2 CHAPTER 1. Continuity If (a, b) R 2 then we write

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK What is SIMULINK? SIMULINK is a software package for modeling, simulating, and analyzing

More information

Project 2: Using linear systems for numerical solution of boundary value problems

Project 2: Using linear systems for numerical solution of boundary value problems LINEAR ALGEBRA, MATH 124 Instructor: Dr. T.I. Lakoba Project 2: Using linear systems for numerical solution of boundary value problems Goal Introduce one of the most important applications of Linear Algebra

More information

VANDERBILT UNIVERSITY. MATH 2300 MULTIVARIABLE CALCULUS Practice Test 1 Solutions

VANDERBILT UNIVERSITY. MATH 2300 MULTIVARIABLE CALCULUS Practice Test 1 Solutions VANDERBILT UNIVERSITY MATH 2300 MULTIVARIABLE CALCULUS Practice Test 1 Solutions Directions. This practice test should be used as a study guide, illustrating the concepts that will be emphasized in the

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

Numerical Methods for Ordinary Differential Equations

Numerical Methods for Ordinary Differential Equations CHAPTER 1 Numerical Methods for Ordinary Differential Equations In this chapter we discuss numerical method for ODE. We will discuss the two basic methods, Euler s Method and Runge-Kutta Method. 1. Numerical

More information

Lecture 13 - Wednesday April 29th

Lecture 13 - Wednesday April 29th Lecture 13 - Wednesday April 29th jacques@ucsdedu Key words: Systems of equations, Implicit differentiation Know how to do implicit differentiation, how to use implicit and inverse function theorems 131

More information

(a) x cos 3x dx We apply integration by parts. Take u = x, so that dv = cos 3x dx, v = 1 sin 3x, du = dx. Thus

(a) x cos 3x dx We apply integration by parts. Take u = x, so that dv = cos 3x dx, v = 1 sin 3x, du = dx. Thus Math 128 Midterm Examination 2 October 21, 28 Name 6 problems, 112 (oops) points. Instructions: Show all work partial credit will be given, and Answers without work are worth credit without points. You

More information

7.1 Indefinite Integrals Calculus

7.1 Indefinite Integrals Calculus 7.1 Indefinite Integrals Calculus Learning Objectives A student will be able to: Find antiderivatives of functions. Represent antiderivatives. Interpret the constant of integration graphically. Solve differential

More information

Math 116 Practice for Exam 2

Math 116 Practice for Exam 2 Math 6 Practice for Exam 2 Generated November 9, 206 Name: Instructor: Section Number:. This exam has 0 questions. Note that the problems are not of equal difficulty, so you may want to skip over and return

More information

LAURENTIAN UNIVERSITY UNIVERSITÉ LAURENTIENNE

LAURENTIAN UNIVERSITY UNIVERSITÉ LAURENTIENNE Page 1 of 15 LAURENTIAN UNIVERSITY UNIVERSITÉ LAURENTIENNE Wednesday, December 13 th Course and No. 2006 MATH 2066 EL Date................................... Cours et no........................... Total

More information

Chapter 1 Handout: Descriptive Statistics

Chapter 1 Handout: Descriptive Statistics Preview Chapter 1 Handout: Descriptive Statistics Describing a Single Data Variable o Introduction to Distributions o Measure of the Distribution Center: Mean (Average) o Measures of the Distribution Spread:

More information

Problem set 7 Math 207A, Fall 2011 Solutions

Problem set 7 Math 207A, Fall 2011 Solutions Problem set 7 Math 207A, Fall 2011 s 1. Classify the equilibrium (x, y) = (0, 0) of the system x t = x, y t = y + x 2. Is the equilibrium hyperbolic? Find an equation for the trajectories in (x, y)- phase

More information

Computer Labs for. Differential Equations & Linear Algebra

Computer Labs for. Differential Equations & Linear Algebra Computer Labs for Differential Equations & Linear Algebra Contents Preface............................... i Lab 1: Slope Fields and Solution Curves................. 1 Lab 2: Numerical Methods of Euler...................

More information

Math Assignment 2

Math Assignment 2 Math 2280 - Assignment 2 Dylan Zwick Spring 2014 Section 1.5-1, 15, 21, 29, 38, 42 Section 1.6-1, 3, 13, 16, 22, 26, 31, 36, 56 Section 2.1-1, 8, 11, 16, 29 Section 2.2-1, 10, 21, 23, 24 1 Section 1.5

More information

Problem List MATH 5173 Spring, 2014

Problem List MATH 5173 Spring, 2014 Problem List MATH 5173 Spring, 2014 The notation p/n means the problem with number n on page p of Perko. 1. 5/3 [Due Wednesday, January 15] 2. 6/5 and describe the relationship of the phase portraits [Due

More information

Math 2930 Worksheet Introduction to Differential Equations. What is a Differential Equation and what are Solutions?

Math 2930 Worksheet Introduction to Differential Equations. What is a Differential Equation and what are Solutions? Math 2930 Worksheet Introduction to Differential Equations Week 1 January 25, 2019 What is a Differential Equation and what are Solutions? A differential equation is an equation that relates an unknown

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

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

Math Applied Differential Equations

Math Applied Differential Equations Math 256 - Applied Differential Equations Notes Basic Definitions and Concepts A differential equation is an equation that involves one or more of the derivatives (first derivative, second derivative,

More information

SOLUTIONS TO EXAM II, MATH f(x)dx where a table of values for the function f(x) is given below.

SOLUTIONS TO EXAM II, MATH f(x)dx where a table of values for the function f(x) is given below. SOLUTIONS TO EXAM II, MATH 56 Use Simpson s rule with n = 6 to approximate the integral f(x)dx where a table of values for the function f(x) is given below x 5 5 75 5 5 75 5 5 f(x) - - x 75 5 5 75 5 5

More information

Examples of the Accumulation Function (ANSWERS) dy dx. This new function now passes through (0,2). Make a sketch of your new shifted graph.

Examples of the Accumulation Function (ANSWERS) dy dx. This new function now passes through (0,2). Make a sketch of your new shifted graph. Eamples of the Accumulation Function (ANSWERS) Eample. Find a function y=f() whose derivative is that f()=. dy d tan that satisfies the condition We can use the Fundamental Theorem to write a function

More information

Math 116 Second Midterm March 20, 2013

Math 116 Second Midterm March 20, 2013 Math 6 Second Mierm March, 3 Name: EXAM SOLUTIONS Instructor: Section:. Do not open this exam until you are told to do so.. This exam has 3 pages including this cover. There are 8 problems. Note that the

More information

Speed and Velocity: Recall from Calc 1: If f (t) gives the position of an object at time t, then. velocity at time t = f (t) speed at time t = f (t)

Speed and Velocity: Recall from Calc 1: If f (t) gives the position of an object at time t, then. velocity at time t = f (t) speed at time t = f (t) Speed and Velocity: Recall from Calc 1: If f (t) gives the position of an object at time t, then velocity at time t = f (t) speed at time t = f (t) Math 36-Multi (Sklensky) In-Class Work January 8, 013

More information

Name Student ID # Instructor Lab Period Date Due. Lab 5 Continuity

Name Student ID # Instructor Lab Period Date Due. Lab 5 Continuity Name Student ID # Instructor Lab Period Date Due Lab 5 Continuity Objectives 1. To visually represent the concept of continuity. 2. To develop an informal intuition for continuity. Continuity A fuction

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

Computer simulation of radioactive decay

Computer simulation of radioactive decay Computer simulation of radioactive decay y now you should have worked your way through the introduction to Maple, as well as the introduction to data analysis using Excel Now we will explore radioactive

More information

Practice Questions From Calculus II. 0. State the following calculus rules (these are many of the key rules from Test 1 topics).

Practice Questions From Calculus II. 0. State the following calculus rules (these are many of the key rules from Test 1 topics). Math 132. Practice Questions From Calculus II I. Topics Covered in Test I 0. State the following calculus rules (these are many of the key rules from Test 1 topics). (Trapezoidal Rule) b a f(x) dx (Fundamental

More information

D(f/g)(P ) = D(f)(P )g(p ) f(p )D(g)(P ). g 2 (P )

D(f/g)(P ) = D(f)(P )g(p ) f(p )D(g)(P ). g 2 (P ) We first record a very useful: 11. Higher derivatives Theorem 11.1. Let A R n be an open subset. Let f : A R m and g : A R m be two functions and suppose that P A. Let λ A be a scalar. If f and g are differentiable

More information

Solution: (a) Before opening the parachute, the differential equation is given by: dv dt. = v. v(0) = 0

Solution: (a) Before opening the parachute, the differential equation is given by: dv dt. = v. v(0) = 0 Math 2250 Lab 4 Name/Unid: 1. (25 points) A man bails out of an airplane at the altitute of 12,000 ft, falls freely for 20 s, then opens his parachute. Assuming linear air resistance ρv ft/s 2, taking

More information

1 h 9 e $ s i n t h e o r y, a p p l i c a t i a n

1 h 9 e $ s i n t h e o r y, a p p l i c a t i a n T : 99 9 \ E \ : \ 4 7 8 \ \ \ \ - \ \ T \ \ \ : \ 99 9 T : 99-9 9 E : 4 7 8 / T V 9 \ E \ \ : 4 \ 7 8 / T \ V \ 9 T - w - - V w w - T w w \ T \ \ \ w \ w \ - \ w \ \ w \ \ \ T \ w \ w \ w \ w \ \ w \

More information

MATH 2554 (Calculus I)

MATH 2554 (Calculus I) MATH 2554 (Calculus I) Dr. Ashley K. University of Arkansas February 21, 2015 Table of Contents Week 6 1 Week 6: 16-20 February 3.5 Derivatives as Rates of Change 3.6 The Chain Rule 3.7 Implicit Differentiation

More information

Math 1310 Final Exam

Math 1310 Final Exam Math 1310 Final Exam December 11, 2014 NAME: INSTRUCTOR: Write neatly and show all your work in the space provided below each question. You may use the back of the exam pages if you need additional space

More information

Section Properties of Rational Expressions

Section Properties of Rational Expressions 88 Section. - Properties of Rational Expressions Recall that a rational number is any number that can be written as the ratio of two integers where the integer in the denominator cannot be. Rational Numbers:

More information

SOLUTIONS to Exercises from Optimization

SOLUTIONS to Exercises from Optimization SOLUTIONS to Exercises from Optimization. Use the bisection method to find the root correct to 6 decimal places: 3x 3 + x 2 = x + 5 SOLUTION: For the root finding algorithm, we need to rewrite the equation

More information

Math Homework 3 Solutions. (1 y sin x) dx + (cos x) dy = 0. = sin x =

Math Homework 3 Solutions. (1 y sin x) dx + (cos x) dy = 0. = sin x = 2.6 #10: Determine if the equation is exact. If so, solve it. Math 315-01 Homework 3 Solutions (1 y sin x) dx + (cos x) dy = 0 Solution: Let P (x, y) = 1 y sin x and Q(x, y) = cos x. Note P = sin x = Q

More information

Infinite series, improper integrals, and Taylor series

Infinite series, improper integrals, and Taylor series Chapter 2 Infinite series, improper integrals, and Taylor series 2. Introduction to series In studying calculus, we have explored a variety of functions. Among the most basic are polynomials, i.e. functions

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

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

MAT01A1: Inverse Functions

MAT01A1: Inverse Functions MAT01A1: Inverse Functions Dr Craig 27 February 2018 Introduction Who: Dr Craig What: Lecturer & course coordinator for MAT01A1 Where: C-Ring 508 acraig@uj.ac.za Web: http://andrewcraigmaths.wordpress.com

More information

Allen Zhang Bobby Laudone Dima Kuzmenko Geoff Bentsen Jaeun Park. James Hanson Julia Lindberg Mao Li Polly Yu Qiao He

Allen Zhang Bobby Laudone Dima Kuzmenko Geoff Bentsen Jaeun Park. James Hanson Julia Lindberg Mao Li Polly Yu Qiao He MATH 222 (Lectures 2,3, and 4) Fall 2017 Practice Midterm 2.1 Name: Circle your TA s name from the following list. Allen Zhang Bobby Laudone Dima Kuzmenko Geoff Bentsen Jaeun Park James Hanson Julia Lindberg

More information

Practice Final Exam Solutions

Practice Final Exam Solutions Important Notice: To prepare for the final exam, one should study the past exams and practice midterms (and homeworks, quizzes, and worksheets), not just this practice final. A topic not being on the practice

More information

Example. 171S Introduction to Graphing. January 06, Introduction to Graphing. Cartesian Coordinate System

Example. 171S Introduction to Graphing. January 06, Introduction to Graphing. Cartesian Coordinate System MAT 171 Dr. Claude Moore, CFCC CHAPTER 1: Graphs, Functions, and Models 1.1 Introduction to Graphing 1.2 Functions and Graphs 1.3 Linear Functions, Slope, and Applications 1.4 Equations of Lines and Modeling

More information

A population of fish is modeled by the logistic equation modified to account for harvesting: 4

A population of fish is modeled by the logistic equation modified to account for harvesting: 4 Partial solution key A population of fish is modeled by the logistic equation modified to account for harvesting: dddd dddd =.pp pp aa or equivalently dddd dddd = 6 pp + pp aa. What are the equilibrium

More information

Math 116 Second Midterm November 14, 2012

Math 116 Second Midterm November 14, 2012 Math 6 Second Midterm November 4, Name: EXAM SOLUTIONS Instructor: Section:. Do not open this exam until you are told to do so.. This exam has pages including this cover. There are 8 problems. Note that

More information

3. Identify and find the general solution of each of the following first order differential equations.

3. Identify and find the general solution of each of the following first order differential equations. Final Exam MATH 33, Sample Questions. Fall 7. y = Cx 3 3 is the general solution of a differential equation. Find the equation. Answer: y = 3y + 9 xy. y = C x + C x is the general solution of a differential

More information

2015 Math Camp Calculus Exam Solution

2015 Math Camp Calculus Exam Solution 015 Math Camp Calculus Exam Solution Problem 1: x = x x +5 4+5 = 9 = 3 1. lim We also accepted ±3, even though it is not according to the prevailing convention 1. x x 4 x+4 =. lim 4 4+4 = 4 0 = 4 0 = We

More information

Computers, Lies and the Fishing Season

Computers, Lies and the Fishing Season 1/47 Computers, Lies and the Fishing Season Liz Arnold May 21, 23 Introduction Computers, lies and the fishing season takes a look at computer software programs. As mathematicians, we depend on computers

More information

ẋ = f(x, y), ẏ = g(x, y), (x, y) D, can only have periodic solutions if (f,g) changes sign in D or if (f,g)=0in D.

ẋ = f(x, y), ẏ = g(x, y), (x, y) D, can only have periodic solutions if (f,g) changes sign in D or if (f,g)=0in D. 4 Periodic Solutions We have shown that in the case of an autonomous equation the periodic solutions correspond with closed orbits in phase-space. Autonomous two-dimensional systems with phase-space R

More information

1 The relation between a second order linear ode and a system of two rst order linear odes

1 The relation between a second order linear ode and a system of two rst order linear odes Math 1280 Spring, 2010 1 The relation between a second order linear ode and a system of two rst order linear odes In Chapter 3 of the text you learn to solve some second order linear ode's, such as x 00

More information

Name: October 24, 2014 ID Number: Fall Midterm I. Number Total Points Points Obtained Total 40

Name: October 24, 2014 ID Number: Fall Midterm I. Number Total Points Points Obtained Total 40 Math 307O: Introduction to Differential Equations Name: October 24, 204 ID Number: Fall 204 Midterm I Number Total Points Points Obtained 0 2 0 3 0 4 0 Total 40 Instructions.. Show all your work and box

More information

MAC Find the x-value that maximizes the area of the shaded rectangle inscribed in a right triangle below.

MAC Find the x-value that maximizes the area of the shaded rectangle inscribed in a right triangle below. MAC 23. Find the x-value that maximizes the area of the shaded rectangle inscribed in a right triangle below. (x, y) y = 3 x + 4 a. x = 6 b. x = 4 c. x = 2 d. x = 5 e. x = 3 2. Consider the area of the

More information

The Princeton Review AP Calculus BC Practice Test 2

The Princeton Review AP Calculus BC Practice Test 2 0 The Princeton Review AP Calculus BC Practice Test CALCULUS BC SECTION I, Part A Time 55 Minutes Number of questions 8 A CALCULATOR MAY NOT BE USED ON THIS PART OF THE EXAMINATION Directions: Solve each

More information

Purdue University Study Guide for MA Credit Exam

Purdue University Study Guide for MA Credit Exam Purdue University Study Guide for MA 60 Credit Exam Students who pass the credit exam will gain credit in MA60. The credit exam is a twohour long exam with 5 multiple choice questions. No books or notes

More information

Practice Problems for Final Exam

Practice Problems for Final Exam Math 1280 Spring 2016 Practice Problems for Final Exam Part 2 (Sections 6.6, 6.7, 6.8, and chapter 7) S o l u t i o n s 1. Show that the given system has a nonlinear center at the origin. ẋ = 9y 5y 5,

More information

Solution to Review Problems for Midterm II

Solution to Review Problems for Midterm II Solution to Review Problems for Midterm II Midterm II: Monday, October 18 in class Topics: 31-3 (except 34) 1 Use te definition of derivative f f(x+) f(x) (x) lim 0 to find te derivative of te functions

More information

Math 106 Answers to Exam 3a Fall 2015

Math 106 Answers to Exam 3a Fall 2015 Math 6 Answers to Exam 3a Fall 5.. Consider the curve given parametrically by x(t) = cos(t), y(t) = (t 3 ) 3, for t from π to π. (a) (6 points) Find all the points (x, y) where the graph has either a vertical

More information

First Order Linear DEs, Applications

First Order Linear DEs, Applications Week #2 : First Order Linear DEs, Applications Goals: Classify first-order differential equations. Solve first-order linear differential equations. Use first-order linear DEs as models in application problems.

More information

Math 116 Second Midterm November 17, 2010

Math 116 Second Midterm November 17, 2010 Math 6 Second Midterm November 7, Name: EXAM SOLUTIONS Instructor: Section:. Do not open this exam until you are told to do so.. This exam has pages including this cover. There are problems. Note that

More information

Math Spring Practice for the Second Exam.

Math Spring Practice for the Second Exam. Math 4 - Spring 27 - Practice for the Second Exam.. Let X be a random variable and let F X be the distribution function of X: t < t 2 t < 4 F X (t) : + t t < 2 2 2 2 t < 4 t. Find P(X ), P(X ), P(X 2),

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

Driven Harmonic Oscillator

Driven Harmonic Oscillator Driven Harmonic Oscillator Physics 6B Lab Experiment 1 APPARATUS Computer and interface Mechanical vibrator and spring holder Stands, etc. to hold vibrator Motion sensor C-209 spring Weight holder and

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

MATH 10550, EXAM 2 SOLUTIONS. 1. Find an equation for the tangent line to. f(x) = sin x cos x. 2 which is the slope of the tangent line at

MATH 10550, EXAM 2 SOLUTIONS. 1. Find an equation for the tangent line to. f(x) = sin x cos x. 2 which is the slope of the tangent line at MATH 100, EXAM SOLUTIONS 1. Find an equation for the tangent line to at the point ( π 4, 0). f(x) = sin x cos x f (x) = cos(x) + sin(x) Thus, f ( π 4 ) = which is the slope of the tangent line at ( π 4,

More information

Acid/Base Interactions

Acid/Base Interactions Acid/Base Interactions Name Lab Section Log on to the Internet. Type the following address into the location-input line of your browser: http://cheminfo.chem.ou.edu/~mra/ccli2004/acids+bm.htm This will

More information