Warning: This site may not display properly on devices or windows with a small amount of screen width. While everthing is still accessible, be aware that sometimes parts will be hidden and require scrolling horizontally. It is recommended you view this in a larger window or in landscape mode

First order homogeneous ordinary differential equations

Next type of equation were going to solve is a Homogeneous Equation

These equations have the form

dydx=F(yx)

The Two Requirements for it to be a homogeneous equation are
- All degrees of the variables are the same
- all variables are in the form ofyx

Once we get it into its "standard" form (rearranged to meet the above criteria) we're going to use the substitution

v=yx

and rearranged for y we get

y=vx

then using implicit differentiation and the product rule

ddx(y=vx)
dydx=v+xdvdx

substitute the dydx into the original equation

dydx=F(yx)
v+xdvdx=F(v)

with some algebra we can rearrange this into a first order separable ODE

v+xdvdx=F(v)
F(v)v=xdvdx
F(v)vx=dvdx
dxx=dvF(v)v
dxx=dvF(v)v

Don't forget to re-substitute your yx's back in for your v's after integration


Examples

(3y2xy)dx+x2dy=0

using algebra to isolate the differential

(3y2xy)dx=x2dy
dydx=3y2xyx2

Splitting the fraction and canceling terms

dydx=3y2x2yx

using the v-substitution

v=yxy=vx
dydx=v+xdvdx

and substituting it in

v+xdvdx=3v2+v

subtracting the v from a side cancels it giving us

xdvdx=3v2

this can be a separable equation, rearanging it with algebra and integrating...

dv3v2=dxx
13v=ln|x|+c

substituting yx back in for v

x3y=ln|x|+c

Finally rearranging it into an implicit form by solving for y, we get our final answer

y=x3ln|x|+c
dxdt=2x2+t8t2+x22tx

Here we're going to fully go through an example that is difficult to get into the correct form, lets start by separating the fraction

dxdt=2x22tx+t8t2+x22tx

canceling terms gives us

dxdt=xt+8t2+x22x

next to deal with the squared terms in the radical were going to factor out a t2 from both terms. When we are factoring we are just dividing by the term we are 'pulling out' so we get

dxdt=xt+t2(8+x2t2)2x

This lets us pull out the t2 from the radical giving us

dxdt=xt+t(8+x2t2)2x

and finally using the property a/(b/c)=(ac/b) in the reverse order1 we would normally do, we can bring the t into the denominator of the denominator giving us

dxdt=xt+(8+x2t2)2xt

Now we can use the substitutions

v=xttv=x
dxdt=v+tdvdt

Substituting this in we get

v+tdvdt=v+8+v22v

subtracting a v gives us

tdvdt=8+v22v

We now have a separable equation, using algebra to split the differential and integrating

2v8+v2dv=dtt

to solve the left side we'll use the u-substitution method

u=8+v2du=2vdv
duu12=ln|t|+c
2u=ln|t|+c

re-subbing back in the v from the u-sub

28+v2=ln|t|+c

re-subbing back in the xt from v-sub

28+(xt)2=ln|t|+c

Now, finally we have our answer given in explicit form


<-- Bernoulli ODE

Differential Equation Index
Home


  1. would this be considered 'complexify'-ing it?