Internal
problem
ID
[23111]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
4.
Linear
equations
of
the
first
order.
Exercise
4b
at
page
64
Problem
number
:
4
Date
solved
:
Thursday, October 02, 2025 at 09:22:57 PM
CAS
classification
:
[_linear]
ode:=diff(y(x),x)+y(x)/x*ln(x) = 2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+y[x]/x*Log[x]==2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - 2 + y(x)*log(x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)