Sie sind auf Seite 1von 4

MATH2352 Differential Equations and Applications

Tutorial Notes 1
Samsung, SUM Sung Fung
15 June, 2012

Tutor: Samsung, SUM Sung Fung


Email: delamath@ust.hk
Tel: 2358-7468
Office: Rm 3215 (Lift 19, 3/F)
URL: http://ihome.ust.hk/~delamath

1 Terminology
1. Differential Equations (DEs):
Equations involving one or more functions and their derivatives.
e.g. fxy (x, y, z) + 3f 2 (x, y, z) = 0, u (t) + u(t) = 0
2. Ordinary DEs (ODEs):
DEs of single variable functions.
e.g. v (4) () + v 2 () + 2 = 0

3. Partial DEs (ODEs):


DEs of multi-variable functions.
e.g. utt (x, t) 4uxx (x, t) + u(x, t)ux (x, t) = 0
4. Systems of DEs:
Similar to simultaneous equations of multiple unknowns in high school, we also have simultaneous
differential equations of multiple functions.
e.g. 
x (t) = x 4xy
y (t) = 2y + 3xy

5. Order of a DE:
The order of the highest derivative in the DE.
e.g. v (4) () + v 2 () + 2 = 0 is of forth order, fxy (x, y, z) + 3f 2 (x, y, z) = 0 is of second order.
6. Solution of a DE:
A function z(t) is called a solution of a DE, F (t, y(t), y (t), , y (n) (t)) = 0, if the DE still holds
when we put z(t) into the positions of y(t). i.e. F (t, z(t), z (t), , z (n) (t)) = 0
e.g. 5 sin t is a solution to the DE u (t) + u(t) = 0.
7. Homogeneous and Inhomogeneous Equations:
A DE of the form F (t, y(t), y (t), , y (n) (t)) = 0 is said to be homogeneous if zero is a solution.
Otherwise, we say it is inhomogeneous.
e.g. v (4) () + v 2 () + 2 = 0 is inhomogeneous, fxy (x, y, z) + 3f 2 (x, y, z) = 0 is homogeneous.

1
8. Linear and Nonlinear Equation:
A DE of the form F (t, y(t), y (t), , y (n) (t)) = 0 is said to be linear if F is a linear function of
y(t), y (t), , y (n) (t),
i.e.
F (t, y(t), y (t), , y (n) (t)) = p(t) + 0 (t)y(t) + 1 (t)y (t) + + n (t)y (n) (t)
Otherwise, we say it is nonlinear. p
e.g. x2 fxx (x, y) + fxy (x, y) + xy 3 f (x, y) + y 2 = 0 is linear, 1 + u(t)u (t) + t = 0 is nonlinear.
9. Initial Condition (IC):
In order to have a unique solution of an n-th order DE, one need to have n extra equations called
initial conditions to fix the integration constants obtained. e.g.

x (t) = 4x(t) DE
x(0) = 0 IC

x (0) = 1 IC

2 Separable Equations
For First Order Equations ONLY!!
Given a first order linear equation and an IC, of the following form:

y (x) = F (x, y)
y(x0 ) = C

where x0 , C are some numbers.


Suppose the DE can be manipulated into the following form

M (x) + N (y)y = 0 M (x) dx + N (y) dy = 0

then the differential equation is said to be Separable, i.e. we can integrate both sides to obtain the
solution. Z Z
N (y) dy + M (x) dx + D = 0

The integration constant D can be determined by substitution of the given initial condition.

Example:

 p
xy (x) = 1 y2 x>0
y(1) = 0
After some rearrangements, the DE can be expressed as
dy dx
p =
1y 2 x

Integrating both sides, we have


Z Z
dy dx
p = +D
1 y2 x

arcsin y = ln x + D

Substituting y(1) = 0 into the result yields D = 0, hence the solution of the IVP is

y = sin (ln x)

2
3 Exact Equations
For First Order Equations ONLY!!
Given a first order linear equation and an IC, of the following form:

y (x) = F (x, y)
y(x0 ) = C

where x0 , C are some numbers.


Suppose the DE can be manipulated into the following form

M (x, y) dx + N (x, y) dy = 0

and if we found that


My (x, y) = Nx (x, y)
then the differential equation is said to be Exact.

There is a function (x, y) with M = x and N = y , such that

d = M (x, y) dx + N (x, y) dy = 0 (x, y) = D

The constant D can be determined by substitution of the given initial condition.

Example:


(2xy 2 + 2y) + (2x2 y + 2x)y (x) = 0
y(1) = 5
After some rearrangements, the DE can be expressed as

(2xy 2 + 2y) dx + (2x2 y + 2x) dy = 0


| {z } | {z }
M N

Check:
My = 4xy + 2 = Nx
The function (x, y) can be found by direct integrations:

x2 y 2 + 2xy + f (y) = x2 y 2 + 2xy + g(x)


| R
{z } | R
{z }
= M dx+f (y) = N dy+g(x)

(x, y) = x2 y 2 + 2xy + C

So the general solution is x2 y 2 + 2xy = D


Substituting y(1) = 5 into the result yields D = 35, hence the solution of the IVP is

x2 y 2 + 2xy 35 = 0

3
4 Method of Integrating Factor
For First Order Linear Equation ONLY!!
Given any first order linear equation and an IC, of the following form:

x (t) + p(t)x(t) = q(t)
x(t0 ) = C

where p(t), q(t) are some given functions and t0 , C are some numbers.
Procedures:
1. Multiply both sides of the DE by some function (t):

(t)x (t) + (t)p(t)x(t) = (t)q(t)

2. Assume (t)p(t) = (t), so that the new DE becomes

d
[(t)x(t)] = (t)q(t)
dt

3. Solve (t)p(t) = (t) to obtain R


p(t) dt
(t) = e
d
4. Solve dt [(t)x(t)] = (t)q(t) by integration.
5. Find out the integrating constant by the IC x(t0 ) = C.
Example:


y (x) + 3y = ex
y(0) = 1
Multiplying both sides of the DE by some function (x) yields

(x)y (x) + 3(x)y(x) = ex

Let (x) = 3(x), and the integration factor is found to be

(x) = e3x

Thus, the new DE becomes


d  3x 
e y(x) = e3x ex = e4x
dx
Integration and simplification gives
Z 
4x 1
y(x) = e 3x
e dx + c = ex + ce3x
4

Plugging in y(0) = 1 gives c = 34 , so the solution of the IVP is

1 x 3 3x
y(x) = e + e
4 4

Das könnte Ihnen auch gefallen