Internal
problem
ID
[4293]
Book
:
Differential
equations
with
applications
and
historial
notes,
George
F.
Simmons.
Second
edition.
1971
Section
:
Chapter
2,
End
of
chapter,
page
61
Problem
number
:
24
Date
solved
:
Tuesday, March 04, 2025 at 06:08:33 PM
CAS
classification
:
[_exact]
ode:=(x*exp(y(x))+y(x)-x^2)*diff(y(x),x) = 2*x*y(x)-exp(y(x))-x; dsolve(ode,y(x), singsol=all);
ode=(x*Exp[y[x]]+y[x]-x^2)*D[y[x],x]==(2*x*y[x] -Exp[y[x]]-x); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x*y(x) + x + (-x**2 + x*exp(y(x)) + y(x))*Derivative(y(x), x) + exp(y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out