I'm trying to solve a differential equation but I get to the point in which I have to solve this:
$$\int {\frac {y(x)' (1-y(x)^2)}{y(x)^3}} dx$$
I don't understand how to do it. I think it's related to some property I don't know, but the $y(x)'$ is throwing me off. I tried looking at Wolfram's step by step but I don't understand it.
Thanks for any help.
Context: Original function to solve is $(v^3) du + (u^3-uv^2) dv = 0$.
I used a variable change: $y = \dfrac uv$. I'm not sure if it's correct or anything though.
2026-03-30 03:38:01.1774841881
On
Integrate this how? $\int {\frac {y(x)' (1-y(x)^2)}{y(x)^3}} dx$
93 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
There are 2 best solutions below
2
On
The differential equation simplifies a lot if you use $$u(v)=\frac{v}{y(v)}$$ (which is basically the reciprocal of what you chose).
After replacement and simplifications (there are several), you should arrive to $$1-v y(v) \frac{dy(v)}{dv}=0$$ for which the solution is simply $$y(v)= \sqrt{c_1+2\log (v)}$$ from which $$u(v)=\frac{v}{\sqrt{c_1+2 \log (v)}}$$
Using the obvious change of variables $y=y(x) \implies dy=y'(x)\,dx$, your integral becomes:
$$\int {\frac {y(x)' (1-y(x)^2)}{y(x)^3}} dx=\int {\frac {1-y^2}{y^3}} dy\\ =\int y^{-3}dy-\int y^{-1}dy\\ =-\frac12 y^{-2}-\log{y}+constant$$