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