Differential Equations: Separable Equations

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
8 replies · 2K views
KallKoll
Messages
4
Reaction score
0

Homework Statement


Solve the equation

dy/dx = x/(y^2√(1+x))


Homework Equations





The Attempt at a Solution


I separated them:
y^2 dy = dx/√(1+x)

I then integrated the dy side, I got (1/3)y^3 + C. I am stuck at integrating the dx side. Thanks in advance!
 
Physics news on Phys.org
KallKoll said:

Homework Statement


Solve the equation

dy/dx = x/(y^2√(1+x))


Homework Equations





The Attempt at a Solution


I separated them:
y^2 dy = dx/√(1+x)

I then integrated the dy side, I got (1/3)y^3 + C. I am stuck at integrating the dx side. Thanks in advance!

Shouldn't that be ##\int y^2dy = \int \frac{x}{\sqrt{1+x}}dx##?

For the RHS, try ##u^2 = 1 + x##.
 
KallKoll said:

Homework Statement


Solve the equation

dy/dx = x/(y^2√(1+x))


Homework Equations





The Attempt at a Solution


I separated them:
y^2 dy = dx/√(1+x)

I then integrated the dy side, I got (1/3)y^3 + C. I am stuck at integrating the dx side. Thanks in advance!


You dropped an x from the numerator on the right side.
 
Yes that should be, thank you. How does the u^2 work?
 
Curious3141 said:
Shouldn't that be ##\int y^2dy = \int \frac{x}{\sqrt{1+x}}dx##?

For the RHS, try ##u^2 = 1 + x##.

Curious3141 said:
Did you try it? Post what you have. Latex formatted please.

Well, I set [itex]\sqrt{1+x}[/itex] = u. Then I set u2 = 1 + x. But I don't understand how to get du from that or how that helps with getting rid of the x on top.
 
KallKoll said:
Well, I set [itex]\sqrt{1+x}[/itex] = u. Then I set u2 = 1 + x. But I don't understand how to get du from that or how that helps with getting rid of the x on top.

[tex] \frac{x}{\sqrt{1 +x}} = \frac{u^2 - 1}{u} = u - \frac1u \\[/tex]
 
KallKoll said:
Well, I set [itex]\sqrt{1+x}[/itex] = u. Then I set u2 = 1 + x. But I don't understand how to get du from that or how that helps with getting rid of the x on top.
From [itex]u^2= 1+ x[/itex], [itex]x= u^2- 1[/itex] and [itex]2u du= dx[/itex] so
[tex]\int \frac{xdx}{\sqrt{1+ x}}= \int \frac{(u^2- 1)(2udu)}{u}= 2\int (u^2- 1) du[/tex]
 
  • Like
Likes   Reactions: 1 person
HallsofIvy said:
From [itex]u^2= 1+ x[/itex], [itex]x= u^2- 1[/itex] and [itex]2u du= dx[/itex] so
[tex]\int \frac{xdx}{\sqrt{1+ x}}= \int \frac{(u^2- 1)(2udu)}{u}= 2\int (u^2- 1) du[/tex]

Thank you so much!