So far we have written a first order ordinary differential equation in general form
dydt=f(t,y)
Current differential equations used by engineers and scientists are too complex for one person or even a team of people to make all the computations necessary to solve them numerically. We rely on computers to make these computations for us instead of working them by hand. Therefore, it is necessary for us to understand more about our differential equation so that we know which algorithms and programs we may use to perform our computations. Differential equations are too vast a subject and we cannot expect a single system or program, even Wolfram Alpha , to be able to solve all of them without our direction. Fortunately, most of this course provides information about how to classify differential equations and recognize those properties that allow us to choose for the computer, " How to computationally solve the problem. "
Linearity is used frequently in the study of differential equations because the operations we use in calculus are in fact, linear . In the beginning of our calculus instruction we learned that the derivative operation and the integral operation were both linear. When we multiply a mathematical object by real (or complex) numbers we call the multiplication scaling the object. If we multiply it by 2 we make it twice as big; if we multiply by 12 we make it half the original size, and if we multiply by -1, we change the direction of the original object. We call the real number we use to scale the object a coefficient or a scalar .
When we multiply like mathematical objects by scalars and add them together we call the result
ax+by+cz
In English, these may be stated as
To a mathematician derivative and integral are not just operations; they are
operators
. At first our functions were functions of real variables. They had one real input and one real output. As our study of mathematics matured, we realized functions can have several real inputs and even several real outputs. In our general form of a differential equation
dydt=f(t,y)
Derivative can be thought of as a function that has a differentiable function as an input and the derivative of that function as the output
D[f(x)]=f′(x).
If we write an first order, linear ordinary differential equation in standard form; that is with all terms that contain the dependent variable on the left-hand side of the equations, and any remaining terms on the right-hand side of the equation then it will look like this
dydt+p(t)y=g(t).
The first two questions we have about all this new vocabulary and the new operator is,
Notice that we defined our operator L using derivative and scalar multiplication. The function p(t) is one of our familiar normal functions with one scale input and one scalar output so we can call this function a
scalar function
. What is
linear
about it is that we have our familiar linearity properties from algebra and differential calculus
L[αy]=ddt(αy)+p(t)(αy)=αddty+αp(t)y=α(dydt+p(t)y)=αL[y].
If we input a linear combination of differential functions αf(t)+βg(t) then the output we get is the same linear combination of the individual inputs f(t) and g(t)
L[αf(t)+βg(t)]=ddt(αf(t)+βg(t))+p(t)(αf(t)+βg(t))=ddt(αf(t))+ddt(βg(t))+p(t)(αf(t))+p(t)(βg(t))=αdfdt+βdgdt+αp(t)f+βp(t)g=α(dfdt+p(t)f)+β(dgdt+p(t)g)=αL[f]+βL[g]
In chapter one we wrote the differential equation in general form
y′(t)=f(t,y)
Theorem 2.4.1 ¶
Existence and Uniqueness for First Order Linear Differential Equations
Given the first order linear initial value problem
y′+p(t)y=g(t),y(t0)=y0
If the functions p and g are both continuous on an open interval I:a<t<b containing the point t = t_0, that is a<t0<b, then there is a unique function y=ϕ(t) that solves the initial value problem. That means ϕ(t) solves the differential equation
ϕ′(t)+p(t)ϕ(t)=g(t)
for every point t in I and ϕ satisfies the initial condition
ϕ(t0)=y0.
Determine without solving the differential equation an interval in which a unique solution of the given initial value problem is certain to exist
ty′+2ty=4,y(1)=2
First this differential equation is linear but not in standard form. If we divide both sides by t we obtain
y′+2y=4t
Determine without solving the differential equation an interval in which a unique solution of the given initial value problem is certain to exist
y′+(tan(t))y=sin(t),y(π)=0
If a differential operator is not linear then we simply say it is nonlinear. If a differential equation is not linear then it is a nonlinear differential equation. We looked at some rules for recognizing nonlinear differential equations. Nonlinear differential equations are usually much harder to solve. A theorem that guarantees us a unique solution will be similarly more difficult. We do not have a standard form for all possible nonlinear differential equations so the general form of a first order initial value problem will be used
y′=f(t,y),y(t0)=y0.
How do we compute the derivative of a function with two inputs? We resort to the definition of derivative
f′(x)=limh→0f(x+h)−f(x)h
We use the cross-product symbol × to represent the rectangle formed by an interval (a,b) on the horizontal axis and the interval (c,d) on the vertical axis denoting it R=(a,b)×(c,d). Keep in mind that any or all of the endpoints may by infinity. Using this notation the entire ty-plane is denoted (−∞,∞)×(−∞,∞).
How do we compute a derivative? We compute two different derivatives with respect to each variable one at a time. We compute the limit
limh→0f(t+h,y)−f(t,y)h
Since these two directions are only a part of all possible directions we travel and compute a derivative they are called
partial derivatives
and they are denoted with a special symbol call the
partial
, ∂. So, the partial derivative with respect to the first input t is given by
ft(t,y)=∂f∂t(t,y)=limh→0f(t+h,y)−f(t,y)h
When you want to compute the partial derivative of a function with respect to one variable, pretend the other variable is a constant.
Let's compute some partial derivatives:
∂∂t(ty2)=y2∂∂t(t)=y2∂∂y(ty2)=t∂∂y(y2)=t(2y)=2ty∂∂t(t2ety)=∂∂t(t2)ety+t2∂∂t(ety)=2tety+t2(yety)=2tety+t2yety∂∂y(t2ety)=t2∂∂y(ety)=t2(tety)=t3ety
Determining the interval of solution is more complicated too. To understand this let's look at the example of a curling wave at the shoreline of a beach.
Theorem 2.4.2 ¶
Existence and Uniqueness for First Order Nonlinear Differential Equations
Consider the possibly nonlinear first order initial value problem
y′=f(t,y),y(t0)=y0.
If the function f and ∂f∂y are both continuous in some rectangle a<t<b, c<y<d containing the point (t0,y0), then in some interval t0−h<t<t0+h contained in (a,b) for which there is a unique solution y=ϕ(t) that solves the initial value problem. That means ϕ solves the differential equation
dϕdt=f(t,ϕ)
on the interval (t0−h,t0+h), and ϕ satisfies the initial condition
ϕ(t0)=y0.
Recall that since the point (t0,y0) is contained in the rectangle R=(a,b)×(c,d) we have that a<t0<b and c<y0<d. Further since the interval (t0−h,t0+h) is contained in the interval (a,b) we have that a<t0−h<t0+h<b.
y′=y1/3,y(0)=0
This differential equation was constructed to illustrate how difficult nonlinear differential equation can get.
ϕ(t)=0
Determine without solving the differential equation a rectangle in the ty-plane where the hypotheses of Theorem 2.4.2 are satisfied.
y′=(t2+y2)3/2,y(2)=3.
Creative Commons Attribution-NonCommercial-ShareAlike 4.0
Attribution
You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
Noncommercial
You may not use the material for commercial purposes.
Share Alike
You are free to share, copy and redistribute the material in any medium or format. If you adapt, remix, transform, or build upon the material, you must distribute your contributions under the
same license
as the original.