Internal
problem
ID
[3000]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
11,
page
45
Problem
number
:
19
Date
solved
:
Tuesday, September 30, 2025 at 06:15:16 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(y)]`]]
With initial conditions
ode:=diff(y(x),x) = x*(1-exp(2*y(x)-x^2)); ic:=[y(0) = 0]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=D[y[x],x]==x*(1-Exp[2*y[x]-x^2]); ic={y[0]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*(1 - exp(-x**2 + 2*y(x))) + Derivative(y(x), x),0) ics = {y(0): 0} dsolve(ode,func=y(x),ics=ics)