Internal
problem
ID
[8799]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
86
Date
solved
:
Wednesday, March 05, 2025 at 06:50:15 AM
CAS
classification
:
[[_2nd_order, _exact, _nonlinear], [_2nd_order, _with_linear_symmetries], [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_y_y1], [_2nd_order, _reducible, _mu_xy]]
ode:=diff(diff(y(x),x),x) = 1/y(x)-x/y(x)^2*diff(y(x),x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]==1/y[x]-x/y[x]^2*D[y[x],x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*Derivative(y(x), x)/y(x)**2 + Derivative(y(x), (x, 2)) - 1/y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-y(x)*Derivative(y(x), (x, 2)) + 1)*y(x)/x cannot be solved by the factorable group method