Internal
problem
ID
[12098]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
801
Date
solved
:
Wednesday, October 01, 2025 at 12:32:33 AM
CAS
classification
:
[_Abel]
ode:=diff(y(x),x) = 1/2*(y(x)*exp(-1/4*x^2)*x+2+2*y(x)^2*exp(-1/2*x^2)+2*y(x)^3*exp(-3/4*x^2))*exp(1/4*x^2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (E^(x^2/4)*(2 + (x*y[x])/E^(x^2/4) + (2*y[x]^2)/E^(x^2/2) + (2*y[x]^3)/E^((3*x^2)/4)))/2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-x*y(x)*exp(-x**2/4) - 2*y(x)**3*exp(-3*x**2/4) - 2*y(x)**2*exp(-x**2/2) - 2)*exp(x**2/4)/2 + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out