Solve 1st Order Diff Eq Using Integrating Factor: 2y/x + dy/dx = 1-2/x

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 3K views
Bucky
Messages
79
Reaction score
0

Homework Statement


Use the integrating factor to solve the first order differential equation

dy/dx + (2/x)y = 1 - 2/x

subject to the initial condition y(1) = 2

The Attempt at a Solution



I have the full answer (it's an example), but my lecturer is notorious for omitting steps, to my constant irritation. It might be fine for pure mathmaticians, but for some of us comp sci fakers, it makes everything much more difficult :wink:
[itex] P = \frac{2}{x}[/itex]
[itex] Q = 1-\frac{2}{x}? or just \frac{2}{x} ?[/itex]
Integrating factor is therefore
[itex]F = e^{2 \int \frac{1}{x}}<br /> ...<br /> F = x^2[/itex]

Upon multiplying by [itex]F = x^2[/itex], we find

[itex]x^2 \frac{dy}{dx} + 2xy= x^2 - 2x[/itex]

Where does the 2xy go?
[itex] ((x^2) y)' = x^2 + 2x[/itex]
so that
[itex] x^2 y = \int (x^2 - 2x) dx[/itex]

[itex] x^2y = \frac{x^3}{3} - x^2 + C[/itex]
when x = 1, y = 2

[itex] x^2 y = \frac{x^3}{3} - x^2 + C<br /> 2 = \frac{1}{3} -1 + C<br /> C = \frac{8}{3}[/itex]

therefore, sollution is
[itex] y = \frac{x}{3} - x + \frac {8}{3x^2}[/itex]

where did the x^2 come from at the end?
 
Last edited:
Physics news on Phys.org
Bucky said:

Homework Statement


Use the integrating factor to solve the first order differential equation

dy/dx + (2/x)y = 1 - 2/x

subject to the initial condition y(1) = 2

The Attempt at a Solution



I have the full answer (it's an example), but my lecturer is notorious for
omitting steps, to my constant irritation. It might be fine for pure mathmaticians, but for some of us comp sci fakers, it makes everything much more difficult :wink:
[itex] P = \frac{2}{x}[/itex]
[itex] Q = 1-\frac{2}{x}? or just \frac{2}{x} ?[/itex]
Integrating factor is therefore
[itex]F = e^{2 \int \frac{1}{x}}<br /> ...<br /> F = x^2[/itex]

Upon multiplying by [itex]F = x^2[/itex], we find

[itex]x^2 \frac{dy}{dx} + 2xy= x^2 - 2x[/itex]

Where does the 2xy go?
...
where did the x^2 come from at the end?

The point of the integrating factor is that you make the LHS of the equation look like the total derivative with respect to x of something. Consider this function:
[tex] f=yx^2[/tex]
y is a function of x, and x^2 is a function of x. what is the derivative of f? Use the product rule:
[tex] \frac{df}{dx}=\frac{dy}{dx}x^2+y\frac{d(x^2)}{dx}[/tex]
but of course I know the derivative of x^2 with respect to x, it's just 2x. I.e.
[tex] \frac{df}{dx}=\frac{dy}{dx}x^2+y2x[/tex]

In other words, I can rewrite
[tex] \frac{dy}{dx}x^2+2xy[/tex]
as
[tex] \frac{d(yx^2)}{dx}[/tex]

...that's where the 2x went.
 
...so, now I have
[tex] \frac{d(yx^2)}{dx}=x^2-2x[/tex]
then the integral of the LHS is trivial
[tex] yx^2=\int (x^2-2x)[/tex]
...and, well, the integral of the RHS is easy too
[tex] yx^2=\frac{x^3}{3}-x^2+C[/tex]

so then, dividing both sides by x^2 I find
[tex] y=\frac{x}{3}-1+\frac{C}{x^2}[/tex]

with C=8/3 this is
[tex] y=\frac{x}{3}-1+\frac{8}{3x^2}[/tex]

which would agree with your answer if you had divided by x^2 correctly. cheers.
 
Last edited: