Internal
problem
ID
[1228]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Miscellaneous
problems,
end
of
chapter
2.
Page
133
Problem
number
:
11
Date
solved
:
Tuesday, September 30, 2025 at 04:30:12 AM
CAS
classification
:
[_exact]
ode:=x^2+y(x)+(exp(y(x))+x)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=x^2+y[x]+(Exp[y[x]]+x)*D[y[x],x] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x**2 + (x + exp(y(x)))*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (-x**2 - y(x))/(x + exp(y(x))) cannot be solved by the factorable group method