Internal
problem
ID
[23067]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
3.
Some
standard
types
of
differential
equations.
Exercise
3b
at
page
43
Problem
number
:
5
Date
solved
:
Thursday, October 02, 2025 at 09:18:38 PM
CAS
classification
:
[_separable]
ode:=diff(x(t),t) = x(t)/t; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==x[t]/t; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(Derivative(x(t), t) - x(t)/t,0) ics = {} dsolve(ode,func=x(t),ics=ics)