Internal
problem
ID
[17827]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
19
(page
30)
Date
solved
:
Monday, March 31, 2025 at 04:34:37 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=diff(y(x),x) = y(x)/x*(1+ln(y(x))-ln(x)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==y[x]/x*(1+Log[y[x]]-Log[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) - (-log(x) + log(y(x)) + 1)*y(x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)