Internal
problem
ID
[10725]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
727
Date
solved
:
Friday, March 14, 2025 at 02:25:45 AM
CAS
classification
:
[`x=_G(y,y')`]
ode:=diff(y(x),x) = (2*x+2+y(x))/(ln(y(x))+2*x-1)*y(x)/(1+x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (y[x]*(2 + 2*x + y[x]))/((1 + x)*(-1 + 2*x + Log[y[x]])); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (2*x + y(x) + 2)*y(x)/((x + 1)*(2*x + log(y(x)) - 1)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out