I am trying to solve
$\qquad y''(t)=\frac{1}{y(t)^3}-\Big(\frac{y(t)^4+1}{y(t)^5}\Big)y'(t)^2$
When I try to evaluate
Dsolve[{y''[t] == 1/y[t]^3 - ((y[t]^4 + 1)/y[t]^5)y'[t]^2}, y[t], t]
I just get back
Dsolve[{true}, y[t], t]
How can I fix this?
Setcommand) instead of the double == sign (Equalcommand). To clear the condition either evaluateRemove[y]or quit the kernel and then re-evaluate theDSolveexpression. – LouisB Feb 22 '21 at 06:41DSolveand notDsolvescreen shotTrueinstead oftrue, then related: (40314), (46214) – Michael E2 Feb 22 '21 at 14:03