Internal
problem
ID
[21538]
Book
:
The
Differential
Equations
Problem
Solver.
VOL.
I.
M.
Fogiel
director.
REA,
NY.
1978.
ISBN
78-63609
Section
:
Chapter
5.
Integrating
factors.
Page
72.
Problem
number
:
5-25
Date
solved
:
Thursday, October 02, 2025 at 07:47:09 PM
CAS
classification
:
[`y=_G(x,y')`]
ode:=diff(y(x),x) = (-x*y(x)+ln(x^2))/(x^2+x*exp(y(x))); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] ==(-x*y[x]+Log[x^2])/(x^2+x*Exp[ y[x]]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (-x*y(x) + log(x**2))/(x**2 + x*exp(y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-x*y(x) + log(x**2))/(x*(x + exp(y(x)))) cannot be solved by the factorable group method