Internal
problem
ID
[10717]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
719
Date
solved
:
Sunday, March 30, 2025 at 06:26:17 PM
CAS
classification
:
[_Bernoulli]
ode:=diff(y(x),x) = y(x)*(-exp(x)+ln(2*x)*x^2*y(x)-ln(2*x)*x)/x/exp(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (y[x]*(-E^x - x*Log[2*x] + x^2*Log[2*x]*y[x]))/(E^x*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) - (x**2*y(x)*log(2*x) - x*log(2*x) - exp(x))*y(x)*exp(-x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)