Internal
problem
ID
[15468]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
45
Date
solved
:
Thursday, October 02, 2025 at 10:15:39 AM
CAS
classification
:
[_linear]
ode:=t-s(t)+t*diff(s(t),t) = 0; dsolve(ode,s(t), singsol=all);
ode=(t-s[t])+t*D[s[t],t]==0; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(t*Derivative(s(t), t) + t - s(t),0) ics = {} dsolve(ode,func=s(t),ics=ics)