Internal
problem
ID
[8980]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
5.0
Problem
number
:
19
Date
solved
:
Sunday, March 30, 2025 at 01:57:50 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries]]
ode:=diff(y(x),x) = y(x)/(2*y(x)*ln(y(x))+y(x)-x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==y[x]/(2*y[x]*Log[y[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) - y(x)/(-x + 2*y(x)*log(y(x)) + y(x)),0) ics = {} dsolve(ode,func=y(x),ics=ics)