Internal
problem
ID
[15006]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
8,
Separable
equations.
Exercises
page
72
Problem
number
:
8.3
Date
solved
:
Thursday, October 02, 2025 at 09:58:26 AM
CAS
classification
:
[_separable]
ode:=x*diff(y(x),x) = k*y(x); dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]==k*y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") k = symbols("k") y = Function("y") ode = Eq(-k*y(x) + x*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)