Math 315: Differential Equations Lecture Notes Patrick Torres

Size: px
Start display at page:

Download "Math 315: Differential Equations Lecture Notes Patrick Torres"

Transcription

1 Introduction What is a Differential Equation? A differential equation (DE) is an equation that relates a function (usually unknown) to its own derivatives. Example 1: The equation + y3 unknown function, y = f(x), and one of its derivatives,. = x 2 is a differential equation since it includes an Example 2: Another example of a differential equation (a more complicated one) is ( ) d 3 2 y + 3 et ty = cos t. When solving equations in an algebra course, you typically start with an equation such as x 2 6x = 8 in which the goal is to find all (real or complex) numbers of the variable (x, in this case) such that the equation holds. On the other hand, to solve a differential equation means to determine all possible functions that satisfy the equation. Example 3: Consider the differential equation + 2y = 1. Claim: A solution of this DE is y = Ce 2x, where C is an arbitrary constant. We can verify that this is a solution simply by plugging it back into the equation: Therefore, y = Ce 2x = = 2Ce 2x. ( ) 1 + 2y = 1 = 2Ce 2x Ce 2x = 1 = 2Ce 2x Ce 2x = 1 = 1 = 1 which is a true statement. In this course, we will learn of several different techniques used to analytically solve certain types of differential equations. 1

2 Why Do We Stu Differential Equations? ˆ DEs have many applications (e.g. in physics, chemistry, engineering, finance, and the biological sciences, just to name a few). ˆ DEs describe and capture how things move, change, and evolve. For example, the motion of the earth around the sun is described by a DE. The way species interact with each other (e.g. mice and owls) is also described by a DE. The way temperature changes over time (in a particular space or through some object) is described by a DE. In problems involving population growth, it is often assumed that the growth rate is proportional to the size of the population. In other words, if P (t) represents the population at time t and P (t) > 0, then P (t) = rp (t), where r is the proportionality constant, is the differential equation that describes how the population grows over time. (r is also called the growth rate.) The population function P (t) that satisfies the DE is P (t) = P 0 e rt, where P 0 = P (0) represents the population at t = 0 (usually called the initial population). This tells us that the population grows exponentially over time. 2

3 Section 1.1: Some Basic Mathematical Models; Direction Fields Mathematical Modeling Definition 1: A mathematical model is a differential equation that describes some physical process. Example 1: The DE dp = rp, where dp > 0 and r > 0, models population growth. Note: This is an accurate model for populations with unlimited resources. Realistically, r is not necessarily constant. The assumption that r is constant actually works for small populations. If we consider what happens in the long term, we must take into account the fact that resources of food and space are limited. A better model would be dp = r ( 1 P K where r and K are constants (K is also known as the carrying capacity of the environment). This differential equation is commonly called the logistic equation. Example 2: Newton s Law of Cooling This law is used to model the change in temperature of an object (with some temperature at time t) placed in an environment having a different temperature. For example, think about how the temperature of a coffee mug filled with hot coffee changes when the mug is placed in a refrigerator. Newton s Law of Cooling states that dt = k(t R) where T is the temperature of the object at time t, R is the temperature of the surrounding environment (constant), and k is the constant of proportionality. Example 3: Spread of a Disease Suppose that we analyze the spread of a contagious disease, such as a flu virus. It is assumed that the rate at which the virus spreads is jointly proportional to the number of people who have contracted the disease (call this number x(t)) and the number of people who have not been exposed to the disease (call this number y(t)). Mathematically, this means that = kxy where is the rate at which the disease spreads and k is the constant of proportionality. ) P 3

4 Example 4: Falling Bo Suppose that an object with mass m is thrown upward from the roof of a building. If s(t) represents the object s position from the ground at time t, then the object s acceleration is d2 s. Let the upward direction be positive and assume that the force of gravity is the 2 only force that acts on the object. Then by Newton s second law of motion (i.e. the net force on the object is proportional to the object s acceleration where m is the constant of proportionality) yields the differential equation m d2 s = mg = d2 s 2 = g. 2 where g is the acceleration due to gravity at the earth s surface. Notice the minus sign in the equation. This is due to the fact that the weight, mg, of the object is a force directed downward which is opposite of the positive direction. Example 5: Series Circuits Consider a single-loop series circuit consisting of a resistor, an inductor, and a capacitor. Let i(t) represent the current in the circuit after a switch is closed and let q(t) represent the charge on the capacitor at time t. Note that R denotes resistance, L denotes inductance, and C denotes capacitance. According to Kirchoff s second law, the impressed voltage E(t) on a closed loop equals the sum of the voltage drops in the loop. Since i(t) is related to q(t) on the capacitor by i = dq/, we add the following voltage drops inductor = L di = d2 q 2 resistor = ir capacitor = 1 C q = R dq and equate the sum to E(t) to obtain the differential equation L d2 q 2 + Rdq + 1 C q = E(t). Figure 1: An RLC series circuit. 4

5 Direction Fields (Slope Fields) Before we learn how to solve differential equations analytically, let s stu what happens geometrically when we solve a differential equation in which the only derivative that appears is the first derivative. Example 6: Consider the differential equation = x. Let s focus on the actual meaning y of this equation. If a solution exists and passes through a point (x 0, y 0 ) in the xy-plane, then the DE gives the derivative at that point. Thus, at (x 0, y 0 ), we can draw a tangent vector which indicates the direction of the solution curve at that point. The following table lists several selected points and the derivative at each point. The figure next to the table shows the tangent vectors placed at their designated points. Two different solution curves, which happen to be semicircles, are also shown. x y ± ± Figure 2: Tangent vectors at specific points. Definition 2: A direction field is a collection of tangent vectors through all points in the xy-plane. Direction fields allow us to visualize the solution curve through a specific point even if we cannot analytically determine the form of the solution. Since drawing tangent vectors by hand can be a very tedious task, we usually rely on numerical software (such as MAPLE) to sketch direction fields. 5

6 Example 7: The following is a direction field (generated by MAPLE) for the differential equation in Example 6. MAPLE Commands: > with(plots): > fieldplot([1,-x/y],x=-4..4,y=-4..4, arrows=line, fieldstrength=fixed(0.5), grid=[17,17]); Example 8: The following is a direction field (generated by MAPLE) for the differential equation = cos y cos t. 6

7 MAPLE Commands: > with(detools): > eq:= diff(y(t),t) = cos(y(t))-cos(t); > DEplot(eq,y(t),t=-6..6,y=-6..6); Example 9: The following is a direction field for the differential equation = y(4 y). MAPLE Commands: > with(detools): > eq:= diff(y(t),t) = y(t)*(4-y(t)); > DEplot(eq,y(t),t=-1..1,y=-1..5,color=black); 7

8 Isoclines A more efficient way to sketch direction fields by hand is to use what are called isoclines. Definition 3: An isocline is a set of points in a direction field for which there is a constant c such that = c at these points. Therefore, for a differential equation = f(x, y), any member of the family f(x, y) = c is an isocline, which literally means a curve along which the inclination of the tangents is the same. Example 10: Consider the differential equation = y = c Here, f(x, y) = y. Thus, y = c represents a one-parameter family of horizontal lines. Example 11: Consider the differential equation in Example 6: Then, = x y x y = c = y = 1 c x (isoclines) Note that y = 1 x is a one-parameter family of lines that pass through the origin and have c slope 1. For c = 1, the isocline is y = x. This means that every point on the line y = x c must have a tangent vector with slope 1 (since = c = 1). For c = 1, the isocline is y = x, and thus, every point on the line y = x must have a tangent vector with slope 1. Note: Isoclines are not necessarily solution curves. Definition 4: An isocline corresponding to c = 0 is called a nullcline. Example 12: In Example 11, the line x = 0 is a nullcline. 8

It is convenient to think that solutions of differential equations consist of a family of functions (just like indefinite integrals ).

It is convenient to think that solutions of differential equations consist of a family of functions (just like indefinite integrals ). Section 1.1 Direction Fields Key Terms/Ideas: Mathematical model Geometric behavior of solutions without solving the model using calculus Graphical description using direction fields Equilibrium solution

More information

sections June 11, 2009

sections June 11, 2009 sections 3.2-3.5 June 11, 2009 Population growth/decay When we model population growth, the simplest model is the exponential (or Malthusian) model. Basic ideas: P = P(t) = population size as a function

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

Boyce/DiPrima 10 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields

Boyce/DiPrima 10 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields Boyce/DiPrima 10 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields Elementary Differential Equations and Boundary Value Problems, 10 th edition, by William E. Boyce and Richard C. DiPrima, 2013

More information

MATH 312 Section 3.1: Linear Models

MATH 312 Section 3.1: Linear Models MATH 312 Section 3.1: Linear Models Prof. Jonathan Duncan Walla Walla College Spring Quarter, 2007 Outline 1 Population Growth 2 Newton s Law of Cooling 3 Kepler s Law Second Law of Planetary Motion 4

More information

Applications of First Order Differential Equation

Applications of First Order Differential Equation Dr Mansoor Alshehri King Saud University MATH204-Differential Equations Center of Excellence in Learning and Teaching 1 / 39 Orthogonal Trajectories How to Find Orthogonal Trajectories Growth and Decay

More information

First-order transient

First-order transient EIE209 Basic Electronics First-order transient Contents Inductor and capacitor Simple RC and RL circuits Transient solutions Constitutive relation An electrical element is defined by its relationship between

More information

Modeling with differential equations

Modeling with differential equations Mathematical Modeling Lia Vas Modeling with differential equations When trying to predict the future value, one follows the following basic idea. Future value = present value + change. From this idea,

More information

Chapter 28. Direct Current Circuits

Chapter 28. Direct Current Circuits Chapter 28 Direct Current Circuits Circuit Analysis Simple electric circuits may contain batteries, resistors, and capacitors in various combinations. For some circuits, analysis may consist of combining

More information

Inductance, Inductors, RL Circuits & RC Circuits, LC, and RLC Circuits

Inductance, Inductors, RL Circuits & RC Circuits, LC, and RLC Circuits Inductance, Inductors, RL Circuits & RC Circuits, LC, and RLC Circuits Self-inductance A time-varying current in a circuit produces an induced emf opposing the emf that initially set up the timevarying

More information

Elementary Differential Equations

Elementary Differential Equations Elementary Differential Equations George Voutsadakis 1 1 Mathematics and Computer Science Lake Superior State University LSSU Math 310 George Voutsadakis (LSSU) Differential Equations January 2014 1 /

More information

CHAPTER 1. First-Order Differential Equations and Their Applications. 1.1 Introduction to Ordinary Differential Equations

CHAPTER 1. First-Order Differential Equations and Their Applications. 1.1 Introduction to Ordinary Differential Equations CHAPTER 1 First-Order Differential Equations and Their Applications 1.1 Introduction to Ordinary Differential Equations Differential equations are found in many areas of mathematics, science, and engineering.

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

Chapter 6. Second order differential equations

Chapter 6. Second order differential equations Chapter 6. Second order differential equations A second order differential equation is of the form y = f(t, y, y ) where y = y(t). We shall often think of t as parametrizing time, y position. In this case

More information

Solutions to the Review Questions

Solutions to the Review Questions Solutions to the Review Questions Short Answer/True or False. True or False, and explain: (a) If y = y + 2t, then 0 = y + 2t is an equilibrium solution. False: This is an isocline associated with a slope

More information

Solving Differential Equations: First Steps

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

More information

Direct-Current Circuits. Physics 231 Lecture 6-1

Direct-Current Circuits. Physics 231 Lecture 6-1 Direct-Current Circuits Physics 231 Lecture 6-1 esistors in Series and Parallel As with capacitors, resistors are often in series and parallel configurations in circuits Series Parallel The question then

More information

Physics 101 Discussion Week 3 Explanation (2011)

Physics 101 Discussion Week 3 Explanation (2011) Physics 101 Discussion Week 3 Explanation (2011) D3-1. Velocity and Acceleration A. 1: average velocity. Q1. What is the definition of the average velocity v? Let r(t) be the total displacement vector

More information

(1 2t), y(1) = 2 y. dy dt = t. e t y, y(0) = 1. dr, r(1) = 2 (r = r(θ)) y = t(t2 + 1) 4y 3, y(0) = 1. 2t y + t 2 y, y(0) = 2. 2t 1 + 2y, y(2) = 0

(1 2t), y(1) = 2 y. dy dt = t. e t y, y(0) = 1. dr, r(1) = 2 (r = r(θ)) y = t(t2 + 1) 4y 3, y(0) = 1. 2t y + t 2 y, y(0) = 2. 2t 1 + 2y, y(2) = 0 MATH 307 Due: Problem 1 Text: 2.2.9-20 Solve the following initial value problems (this problem should mainly be a review of MATH 125). 1. y = (1 2t)y 2, y(0) = 1/6 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12.

More information

RLC Series Circuit. We can define effective resistances for capacitors and inductors: 1 = Capacitive reactance:

RLC Series Circuit. We can define effective resistances for capacitors and inductors: 1 = Capacitive reactance: RLC Series Circuit In this exercise you will investigate the effects of changing inductance, capacitance, resistance, and frequency on an RLC series AC circuit. We can define effective resistances for

More information

Section 11.1 What is a Differential Equation?

Section 11.1 What is a Differential Equation? 1 Section 11.1 What is a Differential Equation? Example 1 Suppose a ball is dropped from the top of a building of height 50 meters. Let h(t) denote the height of the ball after t seconds, then it is known

More information

SPS Mathematical Methods Lecture #7 - Applications of First-order Differential Equations

SPS Mathematical Methods Lecture #7 - Applications of First-order Differential Equations 1. Linear Models SPS 2281 - Mathematical Methods Lecture #7 - Applications of First-order Differential Equations (a) Growth and Decay (b) Half-life of Radioactive (c) Carbon Dating (d) Newton s Law of

More information

Math 225 Differential Equations Notes Chapter 1

Math 225 Differential Equations Notes Chapter 1 Math 225 Differential Equations Notes Chapter 1 Michael Muscedere September 9, 2004 1 Introduction 1.1 Background In science and engineering models are used to describe physical phenomena. Often these

More information

REUNotes08-CircuitBasics May 28, 2008

REUNotes08-CircuitBasics May 28, 2008 Chapter One Circuits (... introduction here... ) 1.1 CIRCUIT BASICS Objects may possess a property known as electric charge. By convention, an electron has one negative charge ( 1) and a proton has one

More information

Chapter 6 DIRECT CURRENT CIRCUITS. Recommended Problems: 6,9,11,13,14,15,16,19,20,21,24,25,26,28,29,30,31,33,37,68,71.

Chapter 6 DIRECT CURRENT CIRCUITS. Recommended Problems: 6,9,11,13,14,15,16,19,20,21,24,25,26,28,29,30,31,33,37,68,71. Chapter 6 DRECT CURRENT CRCUTS Recommended Problems: 6,9,,3,4,5,6,9,0,,4,5,6,8,9,30,3,33,37,68,7. RESSTORS N SERES AND N PARALLEL - N SERES When two resistors are connected together as shown we said that

More information

Compartmental Analysis

Compartmental Analysis Compartmental Analysis Math 366 - Differential Equations Material Covering Lab 3 We now learn how to model some physical phonomena through DE. General steps for modeling (you are encouraged to find your

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

Boyce/DiPrima/Meade 11 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields

Boyce/DiPrima/Meade 11 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields Boyce/DiPrima/Meade 11 th ed, Ch 1.1: Basic Mathematical Models; Direction Fields Elementary Differential Equations and Boundary Value Problems, 11 th edition, by William E. Boyce, Richard C. DiPrima,

More information

dy dx dx = 7 1 x dx dy = 7 1 x dx e u du = 1 C = 0

dy dx dx = 7 1 x dx dy = 7 1 x dx e u du = 1 C = 0 1. = 6x = 6x = 6 x = 6 x x 2 y = 6 2 + C = 3x2 + C General solution: y = 3x 2 + C 3. = 7 x = 7 1 x = 7 1 x General solution: y = 7 ln x + C. = e.2x = e.2x = e.2x (u =.2x, du =.2) y = e u 1.2 du = 1 e u

More information

Inductance, RL Circuits, LC Circuits, RLC Circuits

Inductance, RL Circuits, LC Circuits, RLC Circuits Inductance, R Circuits, C Circuits, RC Circuits Inductance What happens when we close the switch? The current flows What does the current look like as a function of time? Does it look like this? I t Inductance

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES 3.8 Exponential Growth and Decay In this section, we will: Use differentiation to solve real-life problems involving exponentially growing quantities. EXPONENTIAL

More information

AP Calculus Worksheet: Chapter 2 Review Part I

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

More information

Solutions to the Review Questions

Solutions to the Review Questions Solutions to the Review Questions Short Answer/True or False. True or False, and explain: (a) If y = y + 2t, then 0 = y + 2t is an equilibrium solution. False: (a) Equilibrium solutions are only defined

More information

Electrical Engineering Fundamentals for Non-Electrical Engineers

Electrical Engineering Fundamentals for Non-Electrical Engineers Electrical Engineering Fundamentals for Non-Electrical Engineers by Brad Meyer, PE Contents Introduction... 3 Definitions... 3 Power Sources... 4 Series vs. Parallel... 9 Current Behavior at a Node...

More information

DIFFERENTIAL EQUATIONS

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

More information

Math Applied Differential Equations

Math Applied Differential Equations Math 256 - Applied Differential Equations Notes Existence and Uniqueness The following theorem gives sufficient conditions for the existence and uniqueness of a solution to the IVP for first order nonlinear

More information

XXIX Applications of Differential Equations

XXIX Applications of Differential Equations MATHEMATICS 01-BNK-05 Advanced Calculus Martin Huard Winter 015 1. Suppose that the rate at which a population of size yt at time t changes is proportional to the amount present. This gives rise to the

More information

Name: Date: Honors Physics

Name: Date: Honors Physics Name: Date: Honors Physics Worksheet on Position, Velocity, and Acceleration Graphs when acceleration is constant Suppose you have an object that moves with a constant acceleration. Your task is to create

More information

Physics 115. General Physics II. Session 24 Circuits Series and parallel R Meters Kirchoff s Rules

Physics 115. General Physics II. Session 24 Circuits Series and parallel R Meters Kirchoff s Rules Physics 115 General Physics II Session 24 Circuits Series and parallel R Meters Kirchoff s Rules R. J. Wilkes Email: phy115a@u.washington.edu Home page: http://courses.washington.edu/phy115a/ 5/15/14 Phys

More information

Inductance, RL and RLC Circuits

Inductance, RL and RLC Circuits Inductance, RL and RLC Circuits Inductance Temporarily storage of energy by the magnetic field When the switch is closed, the current does not immediately reach its maximum value. Faraday s law of electromagnetic

More information

Mixing Problems. Solution of concentration c 1 grams/liter flows in at a rate of r 1 liters/minute. Figure 1.7.1: A mixing problem.

Mixing Problems. Solution of concentration c 1 grams/liter flows in at a rate of r 1 liters/minute. Figure 1.7.1: A mixing problem. page 57 1.7 Modeling Problems Using First-Order Linear Differential Equations 57 For Problems 33 38, use a differential equation solver to determine the solution to each of the initial-value problems and

More information

AC vs. DC Circuits. Constant voltage circuits. The voltage from an outlet is alternating voltage

AC vs. DC Circuits. Constant voltage circuits. The voltage from an outlet is alternating voltage Circuits AC vs. DC Circuits Constant voltage circuits Typically referred to as direct current or DC Computers, logic circuits, and battery operated devices are examples of DC circuits The voltage from

More information

Math 308 Exam I Practice Problems

Math 308 Exam I Practice Problems Math 308 Exam I Practice Problems This review should not be used as your sole source of preparation for the exam. You should also re-work all examples given in lecture and all suggested homework problems..

More information

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

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

More information

Solutions to Section 1.1

Solutions to Section 1.1 Solutions to Section True-False Review: FALSE A derivative must involve some derivative of the function y f(x), not necessarily the first derivative TRUE The initial conditions accompanying a differential

More information

Solution to Homework 2

Solution to Homework 2 Solution to Homework. Substitution and Nonexact Differential Equation Made Exact) [0] Solve dy dx = ey + 3e x+y, y0) = 0. Let u := e x, v = e y, and hence dy = v + 3uv) dx, du = u)dx, dv = v)dy = u)dv

More information

Definition of differential equations and their classification. Methods of solution of first-order differential equations

Definition of differential equations and their classification. Methods of solution of first-order differential equations Introduction to differential equations: overview Definition of differential equations and their classification Solutions of differential equations Initial value problems Existence and uniqueness Mathematical

More information

MA 226 FINAL EXAM. Show Your Work. Problem Possible Actual Score

MA 226 FINAL EXAM. Show Your Work. Problem Possible Actual Score Name: MA 226 FINAL EXAM Show Your Work Problem Possible Actual Score 1 36 2 8 3 8 4 8 5 8 6 8 7 8 8 8 9 8 TOTAL 100 1.) 30 points (3 each) Short Answer: The answers to these questions need only consist

More information

Applications of Second-Order Differential Equations

Applications of Second-Order Differential Equations Applications of Second-Order Differential Equations ymy/013 Building Intuition Even though there are an infinite number of differential equations, they all share common characteristics that allow intuition

More information

Lecture 39. PHYC 161 Fall 2016

Lecture 39. PHYC 161 Fall 2016 Lecture 39 PHYC 161 Fall 016 Announcements DO THE ONLINE COURSE EVALUATIONS - response so far is < 8 % Magnetic field energy A resistor is a device in which energy is irrecoverably dissipated. By contrast,

More information

Homework 2 Solutions Math 307 Summer 17

Homework 2 Solutions Math 307 Summer 17 Homework 2 Solutions Math 307 Summer 17 July 8, 2017 Section 2.3 Problem 4. A tank with capacity of 500 gallons originally contains 200 gallons of water with 100 pounds of salt in solution. Water containing

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

Integration, Separation of Variables

Integration, Separation of Variables Week #1 : Integration, Separation of Variables Goals: Introduce differential equations. Review integration techniques. Solve first-order DEs using separation of variables. 1 Sources of Differential Equations

More information

Discussion Session 6 Newton s Second & Third Laws Week 07. The Plan

Discussion Session 6 Newton s Second & Third Laws Week 07. The Plan PHYS 100 Discussion Session 6 Newton s Second & Third Laws Week 07 The Plan This week we use Newton s Third Law ( F A on B = F B on A ) to relate the forces between two different objects. We can use this

More information

(x! 4) (x! 4)10 + C + C. 2 e2x dx = 1 2 (1 + e 2x ) 3 2e 2x dx. # 8 '(4)(1 + e 2x ) 3 e 2x (2) = e 2x (1 + e 2x ) 3 & dx = 1

(x! 4) (x! 4)10 + C + C. 2 e2x dx = 1 2 (1 + e 2x ) 3 2e 2x dx. # 8 '(4)(1 + e 2x ) 3 e 2x (2) = e 2x (1 + e 2x ) 3 & dx = 1 33. x(x - 4) 9 Let u = x - 4, then du = and x = u + 4. x(x - 4) 9 = (u + 4)u 9 du = (u 0 + 4u 9 )du = u + 4u0 0 = (x! 4) + 2 5 (x! 4)0 (x " 4) + 2 5 (x " 4)0 ( '( = ()(x - 4)0 () + 2 5 (0)(x - 4)9 () =

More information

Do not fill out the information below until instructed to do so! Name: Signature: Section Number:

Do not fill out the information below until instructed to do so! Name: Signature:   Section Number: Do not fill out the information below until instructed to do so! Name: Signature: E-mail: Section Number: No calculators are allowed in the test. Be sure to put a box around your final answers and clearly

More information

APPLICATIONS OF DIFFERENTIATION

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

More information

2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM FREE-RESPONSE QUESTIONS

2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM FREE-RESPONSE QUESTIONS 2005 AP PHYSICS C: ELECTRICITY AND MAGNETISM In the circuit shown above, resistors 1 and 2 of resistance R 1 and R 2, respectively, and an inductor of inductance L are connected to a battery of emf e and

More information

Electromagnetic Induction (Chapters 31-32)

Electromagnetic Induction (Chapters 31-32) Electromagnetic Induction (Chapters 31-3) The laws of emf induction: Faraday s and Lenz s laws Inductance Mutual inductance M Self inductance L. Inductors Magnetic field energy Simple inductive circuits

More information

Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies

Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies Ch. 23 Electromagnetic Induction, AC Circuits, And Electrical Technologies Induced emf - Faraday s Experiment When a magnet moves toward a loop of wire, the ammeter shows the presence of a current When

More information

1.2. Introduction to Modeling. P (t) = r P (t) (b) When r > 0 this is the exponential growth equation.

1.2. Introduction to Modeling. P (t) = r P (t) (b) When r > 0 this is the exponential growth equation. G. NAGY ODE January 9, 2018 1 1.2. Introduction to Modeling Section Objective(s): Review of Exponential Growth. The Logistic Population Model. Competing Species Model. Overview of Mathematical Models.

More information

Section 1.1 Differential Equation Models. Key Terms:

Section 1.1 Differential Equation Models. Key Terms: Section 1.1 Differential Equation Models Key Terms: Rate of change Mechanics o Newton s second law o Universal law of gravitation Mathematical model Vectors Population models Fixed reproductive rate Variable

More information

Homework #4 Solutions

Homework #4 Solutions MAT 303 Spring 03 Problems Section.: 0,, Section.:, 6,, Section.3:,, 0,, 30 Homework # Solutions..0. Suppose that the fish population P(t) in a lake is attacked by a disease at time t = 0, with the result

More information

Physics 240 Fall 2005: Exam #3. Please print your name: Please list your discussion section number: Please list your discussion instructor:

Physics 240 Fall 2005: Exam #3. Please print your name: Please list your discussion section number: Please list your discussion instructor: Physics 240 Fall 2005: Exam #3 Please print your name: Please list your discussion section number: Please list your discussion instructor: Form #1 Instructions 1. Fill in your name above 2. This will be

More information

Example (#1) Example (#1) Example (#2) Example (#2) dv dt

Example (#1) Example (#1) Example (#2) Example (#2) dv dt 1. Become familiar with a definition of and terminology involved with differential equations Calculus - Santowski. Solve differential equations with and without initial conditions 3. Apply differential

More information

Math Assignment 6

Math Assignment 6 Math 2280 - Assignment 6 Dylan Zwick Fall 2013 Section 3.7-1, 5, 10, 17, 19 Section 3.8-1, 3, 5, 8, 13 Section 4.1-1, 2, 13, 15, 22 Section 4.2-1, 10, 19, 28 1 Section 3.7 - Electrical Circuits 3.7.1 This

More information

As light level increases, resistance decreases. As temperature increases, resistance decreases. Voltage across capacitor increases with time LDR

As light level increases, resistance decreases. As temperature increases, resistance decreases. Voltage across capacitor increases with time LDR LDR As light level increases, resistance decreases thermistor As temperature increases, resistance decreases capacitor Voltage across capacitor increases with time Potential divider basics: R 1 1. Both

More information

Chapter 11 Packet & 11.2 What is a Differential Equation and What are Slope Fields

Chapter 11 Packet & 11.2 What is a Differential Equation and What are Slope Fields Chapter 11 Packet 11.1 & 11. What is a Differential Equation and What are Slope Fields What is a differential equation? An equation that gives information about the rate of change of an unknown function

More information

1 What is a differential equation

1 What is a differential equation Math 10B - Calculus by Hughes-Hallett, et al. Chapter 11 - Differential Equations Prepared by Jason Gaddis 1 What is a differential equation Remark 1.1. We have seen basic differential equations already

More information

Physics 196 Final Test Point

Physics 196 Final Test Point Physics 196 Final Test - 120 Point Name You need to complete six 5-point problems and six 10-point problems. Cross off one 5-point problem and one 10-point problem. 1. Two small silver spheres, each with

More information

Laboratory 7: Charging and Discharging a Capacitor Prelab

Laboratory 7: Charging and Discharging a Capacitor Prelab Phys 132L Fall 2018 Laboratory 7: Charging and Discharging a Capacitor Prelab Consider a capacitor with capacitance C connected in series to a resistor with resistance R as shown in Fig. 1. Theory predicts

More information

Honors Differential Equations

Honors Differential Equations MIT OpenCourseWare http://ocw.mit.edu 18.034 Honors Differential Equations Spring 009 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms. LECTURE 7. MECHANICAL

More information

Math 2214 Solution Test 1D Spring 2015

Math 2214 Solution Test 1D Spring 2015 Math 2214 Solution Test 1D Spring 2015 Problem 1: A 600 gallon open top tank initially holds 300 gallons of fresh water. At t = 0, a brine solution containing 3 lbs of salt per gallon is poured into the

More information

Homework #5 Solutions

Homework #5 Solutions Homework #5 Solutions Math 123: Mathematical Modeling, Spring 2019 Instructor: Dr. Doreen De Leon 1. Exercise 7.2.5. Stefan-Boltzmann s Law of Radiation states that the temperature change dt/ of a body

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

P202 Practice Exam 2 Spring 2004 Instructor: Prof. Sinova

P202 Practice Exam 2 Spring 2004 Instructor: Prof. Sinova P202 Practice Exam 2 Spring 2004 Instructor: Prof. Sinova Name: Date: (5)1. How many electrons flow through a battery that delivers a current of 3.0 A for 12 s? A) 4 B) 36 C) 4.8 10 15 D) 6.4 10 18 E)

More information

Exam 2, Phy 2049, Spring Solutions:

Exam 2, Phy 2049, Spring Solutions: Exam 2, Phy 2049, Spring 2017. Solutions: 1. A battery, which has an emf of EMF = 10V and an internal resistance of R 0 = 50Ω, is connected to three resistors, as shown in the figure. The resistors have

More information

INDUCTANCE Self Inductance

INDUCTANCE Self Inductance NDUTANE 3. Self nductance onsider the circuit shown in the Figure. When the switch is closed the current, and so the magnetic field, through the circuit increases from zero to a specific value. The increasing

More information

2.4 Harmonic Oscillator Models

2.4 Harmonic Oscillator Models 2.4 Harmonic Oscillator Models In this section we give three important examples from physics of harmonic oscillator models. Such models are ubiquitous in physics, but are also used in chemistry, biology,

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

Chapter 26 Direct-Current Circuits

Chapter 26 Direct-Current Circuits Chapter 26 Direct-Current Circuits 1 Resistors in Series and Parallel In this chapter we introduce the reduction of resistor networks into an equivalent resistor R eq. We also develop a method for analyzing

More information

Unit 1: Mechanical Equilibrium

Unit 1: Mechanical Equilibrium Unit 1: Mechanical Equilibrium Chapter: Two Mechanical Equilibrium Big Idea / Key Concepts Student Outcomes 2.1: Force 2.2: Mechanical Equilibrium 2.3: Support Force 2.4: Equilibrium for Moving Objects

More information

Electric Charge and Electric field

Electric Charge and Electric field Electric Charge and Electric field ConcepTest 16.1a Electric Charge I Two charged balls are repelling each other as they hang from the ceiling. What can you say about their charges? 1) one is positive,

More information

Differential Equations

Differential Equations Chapter 7 Differential Equations 7. An Introduction to Differential Equations Motivating Questions In this section, we strive to understand the ideas generated by the following important questions: What

More information

Chapter 26 Direct-Current Circuits

Chapter 26 Direct-Current Circuits Chapter 26 Direct-Current Circuits 1 Resistors in Series and Parallel In this chapter we introduce the reduction of resistor networks into an equivalent resistor R eq. We also develop a method for analyzing

More information

Chapter 2. Motion in One Dimension. AIT AP Physics C

Chapter 2. Motion in One Dimension. AIT AP Physics C Chapter 2 Motion in One Dimension Kinematics Describes motion while ignoring the agents that caused the motion For now, will consider motion in one dimension Along a straight line Will use the particle

More information

Chapter 27. Circuits

Chapter 27. Circuits Chapter 27 Circuits 1 1. Pumping Chagres We need to establish a potential difference between the ends of a device to make charge carriers follow through the device. To generate a steady flow of charges,

More information

1 2 U CV. K dq I dt J nqv d J V IR P VI

1 2 U CV. K dq I dt J nqv d J V IR P VI o 5 o T C T F 3 9 T K T o C 73.5 L L T V VT Q mct nct Q F V ml F V dq A H k TH TC L pv nrt 3 Ktr nrt 3 CV R ideal monatomic gas 5 CV R ideal diatomic gas w/o vibration V W pdv V U Q W W Q e Q Q e Carnot

More information

AP Physics Electromagnetic Wrap Up

AP Physics Electromagnetic Wrap Up AP Physics Electromagnetic Wrap Up Here are the glorious equations for this wonderful section. This is the equation for the magnetic force acting on a moving charged particle in a magnetic field. The angle

More information

Exam 2 Solutions. Note that there are several variations of some problems, indicated by choices in parentheses.

Exam 2 Solutions. Note that there are several variations of some problems, indicated by choices in parentheses. Exam 2 Solutions Note that there are several variations of some problems, indicated by choices in parentheses. Problem 1 Part of a long, straight insulated wire carrying current i is bent into a circular

More information

2.4 Models of Oscillation

2.4 Models of Oscillation 2.4 Models of Oscillation In this section we give three examples of oscillating physical systems that can be modeled by the harmonic oscillator equation. Such models are ubiquitous in physics, but are

More information

AP Physics C: Electricity and Magnetism

AP Physics C: Electricity and Magnetism 18 AP Physics C: Electricity and Magnetism Scoring Guidelines College Board, Advanced Placement Program, AP, AP Central, and the acorn logo are registered trademarks of the College Board. AP Central is

More information

Discussion Question 6A

Discussion Question 6A Discussion Question 6 P212, Week 6 Two Methods for Circuit nalysis Method 1: Progressive collapsing of circuit elements In last week s discussion, we learned how to analyse circuits involving batteries

More information

07/13/07 Name, Roster # Physics 152 Midterm 1

07/13/07 Name, Roster # Physics 152 Midterm 1 The figure to the right showing two positive point charges pertains to questions 1-3 1. If q1 and q2 are the same amount of charge, which arrow best represents the direction of the net electric field at

More information

Bees and Flowers. Unit 1: Qualitative and Graphical Approaches

Bees and Flowers. Unit 1: Qualitative and Graphical Approaches Bees and Flowers Often scientists use rate of change equations in their stu of population growth for one or more species. In this problem we stu systems of rate of change equations designed to inform us

More information

The Fundamental Theorem of Calculus: Suppose f continuous on [a, b]. 1.) If G(x) = x. f(t)dt = F (b) F (a) where F is any antiderivative

The Fundamental Theorem of Calculus: Suppose f continuous on [a, b]. 1.) If G(x) = x. f(t)dt = F (b) F (a) where F is any antiderivative 1 Calulus pre-requisites you must know. Derivative = slope of tangent line = rate. Integral = area between curve and x-axis (where area can be negative). The Fundamental Theorem of Calculus: Suppose f

More information

P441 Analytical Mechanics - I. RLC Circuits. c Alex R. Dzierba. In this note we discuss electrical oscillating circuits: undamped, damped and driven.

P441 Analytical Mechanics - I. RLC Circuits. c Alex R. Dzierba. In this note we discuss electrical oscillating circuits: undamped, damped and driven. Lecture 10 Monday - September 19, 005 Written or last updated: September 19, 005 P441 Analytical Mechanics - I RLC Circuits c Alex R. Dzierba Introduction In this note we discuss electrical oscillating

More information

Physics 2020 Lab 5 Intro to Circuits

Physics 2020 Lab 5 Intro to Circuits Physics 2020 Lab 5 Intro to Circuits Name Section Tues Wed Thu 8am 10am 12pm 2pm 4pm Introduction In this lab, we will be using The Circuit Construction Kit (CCK). CCK is a computer simulation that allows

More information

a. Clockwise. b. Counterclockwise. c. Out of the board. d. Into the board. e. There will be no current induced in the wire

a. Clockwise. b. Counterclockwise. c. Out of the board. d. Into the board. e. There will be no current induced in the wire Physics 1B Winter 2012: Final Exam For Practice Version A 1 Closed book. No work needs to be shown for multiple-choice questions. The first 10 questions are the makeup Quiz. The remaining questions are

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