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