Internal
problem
ID
[7372]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
12,
Series
Solutions
of
Differential
Equations.
Section
1.
Miscellaneous
problems.
page
564
Problem
number
:
1,
using
elementary
method
Date
solved
:
Tuesday, September 30, 2025 at 04:29:59 PM
CAS
classification
:
[_separable]
ode:=x*diff(y(x),x) = x*y(x)+y(x); dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]==x*y[x]+y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*y(x) + x*Derivative(y(x), x) - y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)