SlideShare ist ein Scribd-Unternehmen logo
1 von 10
Downloaden Sie, um offline zu lesen
ContentsContents 
Differential Equations
19.1 Modelling with Differential Equations 2
19.2 First Order Differential Equations 11
19.3 Second Order Differential Equations 30
19.4 Applications of Differential Equations 51
Learning
In this Workbook you will learn what a differential equation is and how to recognise some
of the basic different types. You will learn how to apply some common techniques used
to obtain general solutions of differential equations and how to fit initial or boundary
conditions to obtain a unique solution. You will appreciate how differential equations
arise in applications and you will gain some experience in applying your knowledge to
model a number of engineering problems using differential equations.
outcomes
Modelling with
Differential Equations



19.1
Introduction
Many models of engineering systems involve the rate of change of a quantity. There is thus a need
to incorporate derivatives into the mathematical model. These mathematical models are examples
of differential equations.
Accompanying the differential equation will be one or more conditions that let us obtain a unique
solution to a particular problem. Often we solve the differential equation first to obtain a general
solution; then we apply the conditions to obtain the unique solution. It is important to know which
conditions must be specified in order to obtain a unique solution.
'

$
%
Prerequisites
Before starting this Section you should . . .
• be able to differentiate; ( 11)
• be able to integrate; ( 13)
9
8
6
7
Learning Outcomes
On completion you should be able to . . .
• understand the use of differential equations in
modelling engineering systems
• identify the order and type of a differential
equation
• recognise the nature of a general solution
• determine the nature of the appropriate
additional conditions which will give a unique
solution to the equation
2 HELM (2005):
Workbook 19: Differential Equations
1. Case study: Newton’s law of cooling
When a hot liquid is placed in a cooler environment, experimental observation shows that its tem-
perature decreases to approximately that of its surroundings. A typical graph of the temperature of
the liquid plotted against time is shown in Figure 1.
Time
Temperature
of Liquid
surrounding
temperature
Figure 1
After an initially rapid decrease the temperature changes progressively less rapidly and eventually the
curve appears to ‘flatten out’.
Newton’s law of cooling states that the rate of cooling of liquid is proportional to the difference
between its temperature and the temperature of its environment (the ambient temperature). To
convert this into mathematics, let t be the time elapsed (in seconds, s), θ the temperature of the
liquid (◦
C),and θ0 the temperature of the liquid at the start (t = 0). The temperature of the
surroundings is denoted by θs.
TaskTask
Write down the mathematical equation which is equivalent to Newton’s law of
cooling and state the accompanying condition.
First, find an expression for the rate of cooling, and an expression for the difference between the
liquid’s temperature and that of the environment:
Your solution
Answer
The rate of cooling is the rate of change of temperature with time:
dθ
dt
.
The temperature difference is θ − θs.
HELM (2005):
Section 19.1: Modelling with Differential Equations
3
Now formulate Newton’s law of cooling:
Your solution
Answer
You should obtain
dθ
dt
∝ (θ − θs) or, equivalently:
dθ
dt
= −k(θ − θs). k is a positive constant of
proportion and the negative sign is present because (θ−θs) is positive, whereas
dθ
dt
must be negative,
since θ decreases with time. The units of k are s−1
. The accompanying condition is θ = θ0 at t = 0
which simply states the temperature of the liquid when the cooling begins.
In the above Task we call t the independent variable and θ the dependent variable. Since the condition
is given at t = 0 we refer to it as an initial condition. For future reference, the solution of the above
differential equation which satisfies the initial condition is θ = θs + (θ0 − θs)e−kt
.
2. The general solution of a differential equation
Consider the equation y = Ae2x
where A is an arbitrary constant. If we differentiate it we obtain
dy
dx
= 2Ae2x
and so, since y = Ae2x
we obtain
dy
dx
= 2y.
Thus a differential equation satisfied by y is
dy
dx
= 2y.
Note that we have eliminated the arbitrary constant.
Now consider the equation
y = A cos 3x + B sin 3x
where A and B are arbitrary constants. Differentiating, we obtain
dy
dx
= −3A sin 3x + 3B cos 3x.
Differentiating a second time gives
d2
y
dx2
= −9 A cos 3x − 9 B sin 3x.
The right-hand side is simply (−9) times the expression for y. Hence y satisfies the differential
equation
d2
y
dx2
= −9y.
4 HELM (2005):
Workbook 19: Differential Equations
TaskTask
Find a differential equation satisfied by y = A cosh 2x + B sinh 2x where A and
B are arbitrary constants.
Your solution
Answer
Differentiating once we obtain
dy
dx
= 2A sinh 2x + 2B cosh 2x
Differentiating a second time we obtain
d2
y
dx2
= 4A cosh 2x + 4B sinh 2x
Hence
d2
y
dx2
= 4y
We have seen that an expression including one arbitrary constant required one differentiation to
obtain a differential equation which eliminated the arbitrary constant. Where two constants were
present, two differentiations were required. Is the converse true? For example, would a differential
equation involving
dy
dx
as the only derivative have a general solution with one arbitrary constant and
would a differential equation which had
d2
y
dx2
as the highest derivative produce a general solution with
two arbitrary constants? The answer is, usually, yes.
TaskTask
Integrate twice the differential equation
d2
y
dx2
=
w
2
( x − x2
),
where w and are constants, to find a general solution for y.
Your solution
Answer
Integrating once:
dy
dx
=
w
2
x2
2
−
x3
3
+ A where A is an arbitrary constant (of integration).
Integrating again: y =
w
2
x3
6
−
x4
12
+ A x + B where B is a second arbitrary constant.
HELM (2005):
Section 19.1: Modelling with Differential Equations
5
Consider the simple differential equation
dy
dx
= 2x.
On integrating, we obtain the general solution
y = x2
+ C
where C is an arbitrary constant. As C varies we get different solutions, each of which belongs to
the family of solutions. Figure 2 shows some examples.
y = x2
+1
y = x2
y = x2
−1
y = x2
−3
C = 1
C = 0
C = −1
C = −3
−3
−1
1
x
y
Figure 2
It can be shown that no two members of this family of graphs ever meet and that through each
point in the x-y plane passes one, and only one, of these graphs. Hence if we specify the boundary
condition y = 2 when x = 0, written y(0) = 2, then using y = x2
+ c:
2 = 0 + C so that C = 2
and y = x2
+ 2 is the unique solution.
TaskTask
Find the unique solution of the differential equation
dy
dx
= 3x2
which satisfies the
condition y(1) = 4.
Your solution
6 HELM (2005):
Workbook 19: Differential Equations
Answer
You should obtain y = x3
+ 3 since, by a single integration we have y = x3
+ C, where C is an
arbitrary constant. Now when x = 1, y = 4 so that 4 = 1 + C. Hence C = 3 and the unique
solution is y = x3
+ 3.
Example 1
Solve the differential equation
d2
y
dx2
= 6x subject to the conditions
(a) y(0) = 2 and y(1) = 3
(b) y(0) = 2 and y(1) = 5
(c) y(0) = 2 and
dy
dx
= 1 at x = 0.
Solution
(a) Integrating the differential equation once produces
dy
dx
= 3x2
+A. The general solution is found
by integrating a second time to give y = x3
+ A x + B, where A and B are arbitrary constants.
Imposing the conditions y(0) = 2 and y(1) = 3: at x = 0 we have y = 2 = 0 + 0 + B = B so that
B = 2, and at x = 1 we have y = 3 = 1 +A +B = 1 +A + 2. Therefore A = 0 and the solution is
y = x3
+ 2.
(b) Here the second condition is y(1) = 5 so at x = 1
y = 5 = 1 + A + 2 so that A = 2
and the solution in this case is
y = x3
+ 2x + 2.
(c) Here the second condition is
dy
dx
= 1 at x = 0 i.e. y (0) = 1
then since
dy
dx
= 3x2
+ A, putting x = 0 we get:
dy
dx
= 1 = 0 + A
so that A = 1 and the solution in this case is y = x3
+ x + 2.
HELM (2005):
Section 19.1: Modelling with Differential Equations
7
3. Classifying differential equations
When solving differential equations (either analytically or numerically) it is important to be able to
recognise the various kinds that can arise. We therefore need to introduce some terminology which
will help us to distinguish one kind of differential equation from another.
• An ordinary differential equation (ODE) is any relation between a function of a single
variable and its derivatives. (All differential equations studied in this workbook are ordinary.)
• The order of a differential equation is the order of the highest derivative in the equation.
• A differential equation is linear if the dependent variable and its derivatives occur to the first
power only and if there are no products involving the dependent variable or its derivatives.
Example 2
Classify the differential equations specifying the order and type (linear/non-linear)
(a)
d2
y
dx2
−
dy
dx
= x2
(b)
d2
x
dt2
=
dx
dt
3
+ 3x
(c)
dx
dt
− x = t2
(d)
dy
dt
+ cos y = 0
(e)
dy
dt
+ y2
= 4
Solution
(a) Second order, linear.
(b) Second order, non-linear (because of the cubic term).
(c) First order, linear.
(d) First order, non-linear (because of the cos y term).
(e) First order, non-linear (because of the y2
term).
Note that in (a) the independent variable is x whereas in the other cases it is t.
In (a), (d) and (e) the dependent variable is y and in (b) and (c) it is x.
8 HELM (2005):
Workbook 19: Differential Equations
Exercises
1. In this RL circuit the switch is closed at t = 0 and a constant voltage E is applied.
E
+ −
R L
i
The voltage across the resistor is iR where i is the current flowing in the circuit and R is
the (constant) resistance. The voltage across the inductance is L
di
dt
where L is the constant
inductance.
Kirchhoff’s law of voltages states that the applied voltage is the sum of the other voltages in
the circuit. Write down a differential equation for the current i and state the initial condition.
2. The diagram below shows the graph of i against t (from Exercise 1). What information does
this graph convey?
E
R
t
i
3. In the LCR circuit below the voltage across the capacitor is q/C where q is the charge on the
capacitor, and C is the capacitance. Note that
dq
dt
= i. Find a differential equation for i and
write down the initial conditions if the initial charge is zero and the switch is closed at t = 0.
E
+ −
RL
i C
4. Find differential equations satisfied by
(a) y = A cos 4x + B sin 4x
(b) x = A e−2t
(c) y = A sin x + B sinh x + C cos x + D cosh x (harder)
5. Find the family of solutions of the differential equation
dy
dx
= −2x. Sketch the curves of some
members of the family on the same axes. What is the solution if y(1) = 3?
6. (a) Find the general solution of the differential equation y = 12x2
.
(b) Find the solution which satisfies y(0) = 2, y(1) = 8
(c) Find the solution which satisfies y(0) = 1, y (0) = −2.
7. Classify the differential equations
(a)
d2
x
dt2
+3
dx
dt
= x (b)
d3
y
dx3
=
dy
dx
2
+
dy
dx
(c)
dy
dx
+y = sin x (d)
d2
y
dx2
+y
dy
dx
= 2.
HELM (2005):
Section 19.1: Modelling with Differential Equations
9
Answers
1. L
di
dt
+ R i = E ; i = 0 at t = 0.
2. Current increases rapidly at first, then less rapidly and tends to the value
E
R
which is what
it would be in the absence of L.
3. L
d2
q
dt2
+ R
dq
dt
+
q
C
= E; q = 0 and i =
dq
dt
= 0 at t = 0.
4. (a)
d2
y
dx2
= −16y (b)
dx
dt
= −2x (c)
d4
y
dx4
= y
5. y = −x2
+ C
y = 1 − x2
y = −x2
y = −1 − x2
C = −1
C = 0
C = 1
− 1
1
x
y
If 3 = −1 + C then C = 4 and y = −x2
+ 4.
6.
(a) y = x4
+ A x + B
(b) When x = 0, y = 2 = B; hence B = 2. When x = 1, y = 8 = 1 + A + B = 3 + A
hence A = 5 and y = x4
+ 5x + 2.
(c) When x = 0 y = 1 = B. Hence B = 1;
dy
dx
= y = 4x3
+ A, so at x = 0, y = −2 = A.
Therefore y = x4
− 2x + 1
7. (a) Second order, linear
(b) Third order, non-linear (squared term)
(c) First order, linear
(d) Second order, non-linear (product term)
10 HELM (2005):
Workbook 19: Differential Equations

Weitere ähnliche Inhalte

Was ist angesagt?

Odepowerpointpresentation1
Odepowerpointpresentation1 Odepowerpointpresentation1
Odepowerpointpresentation1 Pokarn Narkhede
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equationNofal Umair
 
Persamaan Differensial Biasa 2014
Persamaan Differensial Biasa 2014 Persamaan Differensial Biasa 2014
Persamaan Differensial Biasa 2014 Rani Sulvianuri
 
Automobile 3rd sem aem ppt.2016
Automobile 3rd sem aem ppt.2016Automobile 3rd sem aem ppt.2016
Automobile 3rd sem aem ppt.2016kalpeshvaghdodiya
 
Ordinary differential equations
Ordinary differential equationsOrdinary differential equations
Ordinary differential equationsAhmed Haider
 
Exact & non differential equation
Exact & non differential equationExact & non differential equation
Exact & non differential equationSiddhi Shrivas
 
Differential equations of first order
Differential equations of first orderDifferential equations of first order
Differential equations of first orderUzair Saiyed
 
Simultaneous differential equations
Simultaneous differential equationsSimultaneous differential equations
Simultaneous differential equationsShubhi Jain
 
Elementary differential equation
Elementary differential equationElementary differential equation
Elementary differential equationAngeli Castillo
 
Lecture3 ode (1) lamia
Lecture3 ode (1) lamiaLecture3 ode (1) lamia
Lecture3 ode (1) lamiamalkinh
 
Second order homogeneous linear differential equations
Second order homogeneous linear differential equations Second order homogeneous linear differential equations
Second order homogeneous linear differential equations Viraj Patel
 
02 first order differential equations
02 first order differential equations02 first order differential equations
02 first order differential equationsvansi007
 
Integrating factors found by inspection
Integrating factors found by inspectionIntegrating factors found by inspection
Integrating factors found by inspectionShin Kaname
 
Ma 104 differential equations
Ma 104 differential equationsMa 104 differential equations
Ma 104 differential equationsarvindpt1
 

Was ist angesagt? (20)

Odepowerpointpresentation1
Odepowerpointpresentation1 Odepowerpointpresentation1
Odepowerpointpresentation1
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equation
 
19 2
19 219 2
19 2
 
Persamaan Differensial Biasa 2014
Persamaan Differensial Biasa 2014 Persamaan Differensial Biasa 2014
Persamaan Differensial Biasa 2014
 
Automobile 3rd sem aem ppt.2016
Automobile 3rd sem aem ppt.2016Automobile 3rd sem aem ppt.2016
Automobile 3rd sem aem ppt.2016
 
Ordinary differential equations
Ordinary differential equationsOrdinary differential equations
Ordinary differential equations
 
Exact & non differential equation
Exact & non differential equationExact & non differential equation
Exact & non differential equation
 
Differential equations of first order
Differential equations of first orderDifferential equations of first order
Differential equations of first order
 
Ch03 1
Ch03 1Ch03 1
Ch03 1
 
Ch04 2
Ch04 2Ch04 2
Ch04 2
 
Simultaneous differential equations
Simultaneous differential equationsSimultaneous differential equations
Simultaneous differential equations
 
Differential equations
Differential equationsDifferential equations
Differential equations
 
Elementary differential equation
Elementary differential equationElementary differential equation
Elementary differential equation
 
Lecture3 ode (1) lamia
Lecture3 ode (1) lamiaLecture3 ode (1) lamia
Lecture3 ode (1) lamia
 
Second order homogeneous linear differential equations
Second order homogeneous linear differential equations Second order homogeneous linear differential equations
Second order homogeneous linear differential equations
 
02 first order differential equations
02 first order differential equations02 first order differential equations
02 first order differential equations
 
Integrating factors found by inspection
Integrating factors found by inspectionIntegrating factors found by inspection
Integrating factors found by inspection
 
19 3
19 319 3
19 3
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
 
Ma 104 differential equations
Ma 104 differential equationsMa 104 differential equations
Ma 104 differential equations
 

Andere mochten auch

Toastmasters 2015 Conference - Make the Difference, Be the Difference
Toastmasters 2015 Conference - Make the Difference, Be the DifferenceToastmasters 2015 Conference - Make the Difference, Be the Difference
Toastmasters 2015 Conference - Make the Difference, Be the DifferenceNadeerah Franklin
 
Bring your Ideas to Life
Bring your Ideas to LifeBring your Ideas to Life
Bring your Ideas to LifeLabSharegroup
 
техника презентаций
техника презентацийтехника презентаций
техника презентацийMikhailSazhin73
 
Selected Portfolio Work
Selected Portfolio WorkSelected Portfolio Work
Selected Portfolio WorkButler Evers
 
Women securityapp
Women securityappWomen securityapp
Women securityappreshugowda
 
Presentación padres lectores
Presentación padres lectoresPresentación padres lectores
Presentación padres lectoresmisshermy2912
 
Breaking Bias v1.3
Breaking Bias v1.3Breaking Bias v1.3
Breaking Bias v1.3Gerard Chiva
 
PR Campaign for Goodwill Industries of Central North Carolina, Inc.
PR Campaign for Goodwill Industries of Central North Carolina, Inc.PR Campaign for Goodwill Industries of Central North Carolina, Inc.
PR Campaign for Goodwill Industries of Central North Carolina, Inc.gcundiff
 

Andere mochten auch (12)

Toastmasters 2015 Conference - Make the Difference, Be the Difference
Toastmasters 2015 Conference - Make the Difference, Be the DifferenceToastmasters 2015 Conference - Make the Difference, Be the Difference
Toastmasters 2015 Conference - Make the Difference, Be the Difference
 
Longitud
Longitud Longitud
Longitud
 
Bring your Ideas to Life
Bring your Ideas to LifeBring your Ideas to Life
Bring your Ideas to Life
 
Game sense ppt
Game sense pptGame sense ppt
Game sense ppt
 
A Divine Search
A Divine SearchA Divine Search
A Divine Search
 
Nncc m4 u2_proyectofinal
Nncc m4 u2_proyectofinalNncc m4 u2_proyectofinal
Nncc m4 u2_proyectofinal
 
техника презентаций
техника презентацийтехника презентаций
техника презентаций
 
Selected Portfolio Work
Selected Portfolio WorkSelected Portfolio Work
Selected Portfolio Work
 
Women securityapp
Women securityappWomen securityapp
Women securityapp
 
Presentación padres lectores
Presentación padres lectoresPresentación padres lectores
Presentación padres lectores
 
Breaking Bias v1.3
Breaking Bias v1.3Breaking Bias v1.3
Breaking Bias v1.3
 
PR Campaign for Goodwill Industries of Central North Carolina, Inc.
PR Campaign for Goodwill Industries of Central North Carolina, Inc.PR Campaign for Goodwill Industries of Central North Carolina, Inc.
PR Campaign for Goodwill Industries of Central North Carolina, Inc.
 

Ähnlich wie 19 1

Ähnlich wie 19 1 (20)

MRS EMMAH.pdf
MRS EMMAH.pdfMRS EMMAH.pdf
MRS EMMAH.pdf
 
ORDINARY DIFFERENTIAL EQUATION
ORDINARY DIFFERENTIAL EQUATION ORDINARY DIFFERENTIAL EQUATION
ORDINARY DIFFERENTIAL EQUATION
 
UNIT-III.pdf
UNIT-III.pdfUNIT-III.pdf
UNIT-III.pdf
 
Differential equations
Differential equationsDifferential equations
Differential equations
 
Week 8 [compatibility mode]
Week 8 [compatibility mode]Week 8 [compatibility mode]
Week 8 [compatibility mode]
 
formulation of first order linear and nonlinear 2nd order differential equation
formulation of first order linear and nonlinear 2nd order differential equationformulation of first order linear and nonlinear 2nd order differential equation
formulation of first order linear and nonlinear 2nd order differential equation
 
Top Schools in delhi NCR
Top Schools in delhi NCRTop Schools in delhi NCR
Top Schools in delhi NCR
 
19 4
19 419 4
19 4
 
differentiol equation.pptx
differentiol equation.pptxdifferentiol equation.pptx
differentiol equation.pptx
 
Diffy Q Paper
Diffy Q PaperDiffy Q Paper
Diffy Q Paper
 
Solutions Of De (08 Ee 09)
Solutions Of De (08 Ee 09)Solutions Of De (08 Ee 09)
Solutions Of De (08 Ee 09)
 
microproject@math (1).pdf
microproject@math (1).pdfmicroproject@math (1).pdf
microproject@math (1).pdf
 
veer gadling.pptx
veer gadling.pptxveer gadling.pptx
veer gadling.pptx
 
1st order differential equations
1st order differential equations1st order differential equations
1st order differential equations
 
19 6
19 619 6
19 6
 
Differential equations of first order
Differential equations of first orderDifferential equations of first order
Differential equations of first order
 
Week 7
Week 7Week 7
Week 7
 
Sol83
Sol83Sol83
Sol83
 
Sol83
Sol83Sol83
Sol83
 
LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
 LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
LINEAR RECURRENCE RELATIONS WITH CONSTANT COEFFICIENTS
 

Kürzlich hochgeladen

Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 

Kürzlich hochgeladen (20)

Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 

19 1

  • 1. ContentsContents  Differential Equations 19.1 Modelling with Differential Equations 2 19.2 First Order Differential Equations 11 19.3 Second Order Differential Equations 30 19.4 Applications of Differential Equations 51 Learning In this Workbook you will learn what a differential equation is and how to recognise some of the basic different types. You will learn how to apply some common techniques used to obtain general solutions of differential equations and how to fit initial or boundary conditions to obtain a unique solution. You will appreciate how differential equations arise in applications and you will gain some experience in applying your knowledge to model a number of engineering problems using differential equations. outcomes
  • 2. Modelling with Differential Equations 19.1 Introduction Many models of engineering systems involve the rate of change of a quantity. There is thus a need to incorporate derivatives into the mathematical model. These mathematical models are examples of differential equations. Accompanying the differential equation will be one or more conditions that let us obtain a unique solution to a particular problem. Often we solve the differential equation first to obtain a general solution; then we apply the conditions to obtain the unique solution. It is important to know which conditions must be specified in order to obtain a unique solution. ' $ % Prerequisites Before starting this Section you should . . . • be able to differentiate; ( 11) • be able to integrate; ( 13) 9 8 6 7 Learning Outcomes On completion you should be able to . . . • understand the use of differential equations in modelling engineering systems • identify the order and type of a differential equation • recognise the nature of a general solution • determine the nature of the appropriate additional conditions which will give a unique solution to the equation 2 HELM (2005): Workbook 19: Differential Equations
  • 3. 1. Case study: Newton’s law of cooling When a hot liquid is placed in a cooler environment, experimental observation shows that its tem- perature decreases to approximately that of its surroundings. A typical graph of the temperature of the liquid plotted against time is shown in Figure 1. Time Temperature of Liquid surrounding temperature Figure 1 After an initially rapid decrease the temperature changes progressively less rapidly and eventually the curve appears to ‘flatten out’. Newton’s law of cooling states that the rate of cooling of liquid is proportional to the difference between its temperature and the temperature of its environment (the ambient temperature). To convert this into mathematics, let t be the time elapsed (in seconds, s), θ the temperature of the liquid (◦ C),and θ0 the temperature of the liquid at the start (t = 0). The temperature of the surroundings is denoted by θs. TaskTask Write down the mathematical equation which is equivalent to Newton’s law of cooling and state the accompanying condition. First, find an expression for the rate of cooling, and an expression for the difference between the liquid’s temperature and that of the environment: Your solution Answer The rate of cooling is the rate of change of temperature with time: dθ dt . The temperature difference is θ − θs. HELM (2005): Section 19.1: Modelling with Differential Equations 3
  • 4. Now formulate Newton’s law of cooling: Your solution Answer You should obtain dθ dt ∝ (θ − θs) or, equivalently: dθ dt = −k(θ − θs). k is a positive constant of proportion and the negative sign is present because (θ−θs) is positive, whereas dθ dt must be negative, since θ decreases with time. The units of k are s−1 . The accompanying condition is θ = θ0 at t = 0 which simply states the temperature of the liquid when the cooling begins. In the above Task we call t the independent variable and θ the dependent variable. Since the condition is given at t = 0 we refer to it as an initial condition. For future reference, the solution of the above differential equation which satisfies the initial condition is θ = θs + (θ0 − θs)e−kt . 2. The general solution of a differential equation Consider the equation y = Ae2x where A is an arbitrary constant. If we differentiate it we obtain dy dx = 2Ae2x and so, since y = Ae2x we obtain dy dx = 2y. Thus a differential equation satisfied by y is dy dx = 2y. Note that we have eliminated the arbitrary constant. Now consider the equation y = A cos 3x + B sin 3x where A and B are arbitrary constants. Differentiating, we obtain dy dx = −3A sin 3x + 3B cos 3x. Differentiating a second time gives d2 y dx2 = −9 A cos 3x − 9 B sin 3x. The right-hand side is simply (−9) times the expression for y. Hence y satisfies the differential equation d2 y dx2 = −9y. 4 HELM (2005): Workbook 19: Differential Equations
  • 5. TaskTask Find a differential equation satisfied by y = A cosh 2x + B sinh 2x where A and B are arbitrary constants. Your solution Answer Differentiating once we obtain dy dx = 2A sinh 2x + 2B cosh 2x Differentiating a second time we obtain d2 y dx2 = 4A cosh 2x + 4B sinh 2x Hence d2 y dx2 = 4y We have seen that an expression including one arbitrary constant required one differentiation to obtain a differential equation which eliminated the arbitrary constant. Where two constants were present, two differentiations were required. Is the converse true? For example, would a differential equation involving dy dx as the only derivative have a general solution with one arbitrary constant and would a differential equation which had d2 y dx2 as the highest derivative produce a general solution with two arbitrary constants? The answer is, usually, yes. TaskTask Integrate twice the differential equation d2 y dx2 = w 2 ( x − x2 ), where w and are constants, to find a general solution for y. Your solution Answer Integrating once: dy dx = w 2 x2 2 − x3 3 + A where A is an arbitrary constant (of integration). Integrating again: y = w 2 x3 6 − x4 12 + A x + B where B is a second arbitrary constant. HELM (2005): Section 19.1: Modelling with Differential Equations 5
  • 6. Consider the simple differential equation dy dx = 2x. On integrating, we obtain the general solution y = x2 + C where C is an arbitrary constant. As C varies we get different solutions, each of which belongs to the family of solutions. Figure 2 shows some examples. y = x2 +1 y = x2 y = x2 −1 y = x2 −3 C = 1 C = 0 C = −1 C = −3 −3 −1 1 x y Figure 2 It can be shown that no two members of this family of graphs ever meet and that through each point in the x-y plane passes one, and only one, of these graphs. Hence if we specify the boundary condition y = 2 when x = 0, written y(0) = 2, then using y = x2 + c: 2 = 0 + C so that C = 2 and y = x2 + 2 is the unique solution. TaskTask Find the unique solution of the differential equation dy dx = 3x2 which satisfies the condition y(1) = 4. Your solution 6 HELM (2005): Workbook 19: Differential Equations
  • 7. Answer You should obtain y = x3 + 3 since, by a single integration we have y = x3 + C, where C is an arbitrary constant. Now when x = 1, y = 4 so that 4 = 1 + C. Hence C = 3 and the unique solution is y = x3 + 3. Example 1 Solve the differential equation d2 y dx2 = 6x subject to the conditions (a) y(0) = 2 and y(1) = 3 (b) y(0) = 2 and y(1) = 5 (c) y(0) = 2 and dy dx = 1 at x = 0. Solution (a) Integrating the differential equation once produces dy dx = 3x2 +A. The general solution is found by integrating a second time to give y = x3 + A x + B, where A and B are arbitrary constants. Imposing the conditions y(0) = 2 and y(1) = 3: at x = 0 we have y = 2 = 0 + 0 + B = B so that B = 2, and at x = 1 we have y = 3 = 1 +A +B = 1 +A + 2. Therefore A = 0 and the solution is y = x3 + 2. (b) Here the second condition is y(1) = 5 so at x = 1 y = 5 = 1 + A + 2 so that A = 2 and the solution in this case is y = x3 + 2x + 2. (c) Here the second condition is dy dx = 1 at x = 0 i.e. y (0) = 1 then since dy dx = 3x2 + A, putting x = 0 we get: dy dx = 1 = 0 + A so that A = 1 and the solution in this case is y = x3 + x + 2. HELM (2005): Section 19.1: Modelling with Differential Equations 7
  • 8. 3. Classifying differential equations When solving differential equations (either analytically or numerically) it is important to be able to recognise the various kinds that can arise. We therefore need to introduce some terminology which will help us to distinguish one kind of differential equation from another. • An ordinary differential equation (ODE) is any relation between a function of a single variable and its derivatives. (All differential equations studied in this workbook are ordinary.) • The order of a differential equation is the order of the highest derivative in the equation. • A differential equation is linear if the dependent variable and its derivatives occur to the first power only and if there are no products involving the dependent variable or its derivatives. Example 2 Classify the differential equations specifying the order and type (linear/non-linear) (a) d2 y dx2 − dy dx = x2 (b) d2 x dt2 = dx dt 3 + 3x (c) dx dt − x = t2 (d) dy dt + cos y = 0 (e) dy dt + y2 = 4 Solution (a) Second order, linear. (b) Second order, non-linear (because of the cubic term). (c) First order, linear. (d) First order, non-linear (because of the cos y term). (e) First order, non-linear (because of the y2 term). Note that in (a) the independent variable is x whereas in the other cases it is t. In (a), (d) and (e) the dependent variable is y and in (b) and (c) it is x. 8 HELM (2005): Workbook 19: Differential Equations
  • 9. Exercises 1. In this RL circuit the switch is closed at t = 0 and a constant voltage E is applied. E + − R L i The voltage across the resistor is iR where i is the current flowing in the circuit and R is the (constant) resistance. The voltage across the inductance is L di dt where L is the constant inductance. Kirchhoff’s law of voltages states that the applied voltage is the sum of the other voltages in the circuit. Write down a differential equation for the current i and state the initial condition. 2. The diagram below shows the graph of i against t (from Exercise 1). What information does this graph convey? E R t i 3. In the LCR circuit below the voltage across the capacitor is q/C where q is the charge on the capacitor, and C is the capacitance. Note that dq dt = i. Find a differential equation for i and write down the initial conditions if the initial charge is zero and the switch is closed at t = 0. E + − RL i C 4. Find differential equations satisfied by (a) y = A cos 4x + B sin 4x (b) x = A e−2t (c) y = A sin x + B sinh x + C cos x + D cosh x (harder) 5. Find the family of solutions of the differential equation dy dx = −2x. Sketch the curves of some members of the family on the same axes. What is the solution if y(1) = 3? 6. (a) Find the general solution of the differential equation y = 12x2 . (b) Find the solution which satisfies y(0) = 2, y(1) = 8 (c) Find the solution which satisfies y(0) = 1, y (0) = −2. 7. Classify the differential equations (a) d2 x dt2 +3 dx dt = x (b) d3 y dx3 = dy dx 2 + dy dx (c) dy dx +y = sin x (d) d2 y dx2 +y dy dx = 2. HELM (2005): Section 19.1: Modelling with Differential Equations 9
  • 10. Answers 1. L di dt + R i = E ; i = 0 at t = 0. 2. Current increases rapidly at first, then less rapidly and tends to the value E R which is what it would be in the absence of L. 3. L d2 q dt2 + R dq dt + q C = E; q = 0 and i = dq dt = 0 at t = 0. 4. (a) d2 y dx2 = −16y (b) dx dt = −2x (c) d4 y dx4 = y 5. y = −x2 + C y = 1 − x2 y = −x2 y = −1 − x2 C = −1 C = 0 C = 1 − 1 1 x y If 3 = −1 + C then C = 4 and y = −x2 + 4. 6. (a) y = x4 + A x + B (b) When x = 0, y = 2 = B; hence B = 2. When x = 1, y = 8 = 1 + A + B = 3 + A hence A = 5 and y = x4 + 5x + 2. (c) When x = 0 y = 1 = B. Hence B = 1; dy dx = y = 4x3 + A, so at x = 0, y = −2 = A. Therefore y = x4 − 2x + 1 7. (a) Second order, linear (b) Third order, non-linear (squared term) (c) First order, linear (d) Second order, non-linear (product term) 10 HELM (2005): Workbook 19: Differential Equations