Methods to solve First Order Differential Equations

What are First Order Differential Equations?

The highest derivative in a first order differential equation is the first derivative (i.e. $\frac{dy}{dx}$).

There’s no one size fits all method to solve all kinds of Differential Equations. There are many, and we have to learn through practice which method to use in a given scenario.

But let’s not put the cart before the horse. We should get to know the various methods at our disposal first.

Various Methods for solving First Order Differential Equations

Separation of Variables

In this method, we separate the variables and then integrate.

So, obviously we can use this method only if we can move all x and dx terms to one side of the equation, and all y and dy terms to the other side.

Q. Solve $\frac{dy}{dx} = \frac{k}{y}$, where k is a constant.

Explanation:

Let’s separate the x and y variables.

$\frac{dy}{dx} = \frac{k}{y}$

or y dy = k dx

Now, we can integrate both sides of the above equation separately.

∫ y dy = $\frac{y^2}{2}$ + c
(where c is a constant)

∫ k dx = kx + d
(where c is a constant)

So, $\frac{y^2}{2}$ + c = kx + d
or $\frac{y^2}{2}$ = kx + m
(where m = d - c)

or y = $\sqrt{2(kx + m)}$


Typical method for solving First Order Linear Differential Equations

What are Linear Differential Equations?

Differential Equation is linear if no variable or derivative in it has exponent other than one (i.e. no $y^2$, no $\sqrt{y}$, no $\frac{d^2y}{dx^2}$, etc). Also, there should be no functions in it, e.g. cos y, log y, etc.

A linear Differential Equation can only have y, and $\frac{dy}{dx}$.

General form of Linear Differential Equation: $\frac{dy}{dx}$ + F(x) y = G(x)
For example, 2y + 5$\frac{dy}{dx}$ = 3x

First order differential equation is one in which the highest derivative is the first derivative (i.e. $\frac{dy}{dx}$). It doesn’t matter what exponents/powers y or $\frac{dy}{dx}$ have.

To solve First Order Linear Differential Equations, we can use a special method. Let’s see.

We create two new functions of x, called u and v, such that y = uv. Now, we just need to find the values of u and v.

Let’s see this method in detail.

Step 1: As y = uv.
So, $\frac{dy}{dx} = u \frac{dv}{dx} + v \frac{du}{dx}$ (from Product Rule of derivatives)

We will substitute this in the standard form of Linear Differential Equation, i.e. $\frac{dy}{dx}$ + F(x) y = G(x)

Step 2: We separate the parts containing v.

Step 3: Put v term equal to 0.

Step 4: Solve the differential equation in u and x (that we got in the last step), using separation of variables method. Find the value of u.

Step 5: Place the value of u in the equation that we got in Step 2. Solve it to find v.

Step 6: Now, as we know both u and v, just find the value of y (as y = uv).

Things will become clearer if we see an example.

Q. Solve $\frac{dy}{dx} = \frac{y}{x} + 3$

Explanation:

We need to reconstruct the given equation in this form: $\frac{dy}{dx}$ + F(x) y = G(x)

$\frac{dy}{dx} = \frac{y}{x} + 3$
or $\frac{dy}{dx} - \frac{y}{x} = 3$

$\frac{dy}{dx} - \frac{y}{x}$ means that at many point of the curve, slope - $\frac{y}{x}$ will be equal to 3.

Step 1: Substitute y = uv, and $\frac{dy}{dx} = u \frac{dv}{dx} + v \frac{du}{dx}$ in this equation.

$\frac{dy}{dx} - \frac{y}{x} = 3$
or $u \frac{dv}{dx} + v \frac{du}{dx} - \frac{uv}{x} = 3$

Step 2: We separate the parts containing v.

$u \frac{dv}{dx} + v \frac{du}{dx} - \frac{uv}{x} = 3$
or $u \frac{dv}{dx} + v (\frac{du}{dx} - \frac{u}{x}) = 3$

Step 3: Put v term equal to 0.

So, $\frac{du}{dx} - \frac{u}{x}$ = 0
or $\frac{du}{dx} = \frac{u}{x}$

Step 4: Solve the differential equation in u and x (that we got in the last step), using separation of variables method. Find the value of u.

$\frac{du}{dx} = \frac{u}{x}$
or $\frac{du}{u} = \frac{dx}{x}$

Now, on integrating them, we get:
ln u = ln x + c (where c is a constant)
or ln u = ln x + ln k (where ln k is a constant)
or u = kx

Step 5: Place the value of u in the equation that we got in Step 2. Solve it to find v.

$u \frac{dv}{dx} + v (\frac{du}{dx} - \frac{u}{x}) = 3$
or $kx \frac{dv}{dx} = 3$ (v term is already zero, so we can ignore that part.)

Now, solve it using separation of variables method.
$kx \frac{dv}{dx} = 3$
or $k dv = 3\frac{dx}{x}$

Now, on integrating them, we get:
kv = 3 ln x + ln c
or kv = ln (c$x^3$)
or v = $\frac{ln (c x^3)}{k}$

Step 6: Now, as we know both u and v, just find the value of y (as y = uv).

y = uv = (kx) $\frac{ln (c x^3)}{k}$ = x $ln (c x^3)$


Homogeneous Equations

$\frac{dy}{dx}$ = F ($\frac{y}{x}$)

In such a case, we can replace $\frac{y}{x}$ by another variable (say v), and then solve it using Separation of Variables method.

So, v = $\frac{y}{x}$ (i.e. y = vx)

And $\frac{dy}{dx} = \frac{d(vx)}{dx} = v \frac{dx}{dx} + x \frac{dv}{dx} = v + x \frac{dv}{dx}$

Substitute these values in the original equation and solve for v. Now, put v = $\frac{y}{x}$, and simplify.

Convert Non-linear differential equation into Linear differential equation

We can sometimes convert a non-linear Bernoulli differential equation into a linear differential equation. Then it becomes easy to solve it.

General form of Bernoulli Differential Equation: $\frac{dy}{dx} + F(x) y = G(x) y^n$
(Where n can be any real number, except 0 or 1)

We can substitute u = $y^{1 - n}$ in the above equation, and thus turn it into a linear differential equation, which is easier to solve.

$\frac{dy}{dx} + F(x) y = G(x) y^n$

  • When n = 0, then the above equation becomes a Linear Differential Equation.

  • When n = 1, the the above equation can easily be solved using Separation of Variables method.

In other cases, we can use the method given above.

Q. Solve $\frac{dy}{dx} + x^3y = x^3 y^3$

Explanation:

It’s a Bernoulli Differential Equation of the form: $\frac{dy}{dx} + F(x) y = G(x) y^n$

Here, F(x) = $x^3$, G(x) = $x^3$, n = 3

So, u = $y^{1 - n} = y^{-2}$
or y = $u^{-1/2}$

So, $\frac{dy}{dx} = (-1/2) u^{-3/2} \frac{du}{dx}$

Now, substitute the values of y and $\frac{dy}{dx}$ in the original equation.
$\frac{dy}{dx} + x^3y = x^3 y^3$
or $(-1/2) u^{-3/2} \frac{du}{dx} + x^3 u^{-1/2} = x^3 (u^{-1/2})^3$

To simplify it, let us multiply the equation by -2 $u^{3/2}$.

$\frac{du}{dx} - 2 u x^3 = -2 x^3$

Now, we can easily solve this equation.

$\frac{du}{dx} = x^3 (2u - 2)$
or $\frac{du}{u - 1} = 2 x^3 dx$

Now, we can integrate both sides.
$∫ \frac{1}{u - 1} du = ∫ 2 x^3 dx$
or ln (u - 1) = 2 $\frac{x^4}{4}$ + c (where c is a constant)
or ln (u - 1) = $\frac{x^4}{2}$ + c
or u - 1 = $e^{(\frac{x^4}{2} + c)}$
or u = $e^{(\frac{x^4}{2} + c)}$ + 1

As we know that y = $u^{-1/2}$, so we can substitute it in the above equation now.

Short Cut

We know that, Bernoulli Differential Equation: $\frac{dy}{dx} + F(x) y = G(x) y^n$, where n ≠ 0 or 1

This can be rewritten as: $\frac{du}{dx} + (1 − n) u F(x) = (1 − n) G(x)$

Solve it, and then just substitute y = $u^{(\frac{-1}{n - 1})}$


Exact Equations and Integrating Factors

This method can be used for a first-order differential equation.

In order for us to use this method, we need to find a function I(x, y) whose partial derivatives can be put in place of M and N in the following equation:

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

That is, $\frac{∂I}{∂x} dx + \frac{∂I}{∂y}$ dy = 0

Obviously, for this method to work, such a function I(x, y) should exist first of all.

Previous
Share on: