Internal
problem
ID
[13884]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
2,
First
Order
Equations.
Problems
page
149
Problem
number
:
Problem
1(h)
Date
solved
:
Monday, March 31, 2025 at 08:16:16 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x) = x*exp(y(x)^2-x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==x*Exp[y[x]^2-x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*exp(-x + y(x)**2) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)