Internal
problem
ID
[11931]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
633
Date
solved
:
Tuesday, September 30, 2025 at 11:44:41 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], [_Abel, `2nd type`, `class C`]]
ode:=diff(y(x),x) = 1/(y(x)*exp(-2/3*x)+1)*exp(2/3*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == E^((2*x)/3)/(1 + y[x]/E^((2*x)/3)); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - exp(2*x/3)/(y(x)*exp(-2*x/3) + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - exp(2*x/3)*exp(x)**(2/3)/(y(x) + exp(x)**(2/3)) cannot be solved by the factorable group method