Internal
problem
ID
[4297]
Book
:
An
introduction
to
the
solution
and
applications
of
differential
equations,
J.W.
Searl,
1966
Section
:
Chapter
4,
Ex.
4.1
Problem
number
:
3
Date
solved
:
Sunday, March 30, 2025 at 02:52:44 AM
CAS
classification
:
[_linear]
ode:=ln(x)*diff(y(x),x)+(x+y(x))/x = 0; dsolve(ode,y(x), singsol=all);
ode=Log[x]*D[y[x],x]+(x+y[x])/x==0; DSolve[ode,y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(log(x)*Derivative(y(x), x) + (x + y(x))/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)