Internal
problem
ID
[15456]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
16
Date
solved
:
Thursday, October 02, 2025 at 10:15:05 AM
CAS
classification
:
[_separable]
ode:=1+s(t)^2-t^(1/2)*diff(s(t),t) = 0; dsolve(ode,s(t), singsol=all);
ode=(1+s[t]^2)-Sqrt[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(-sqrt(t)*Derivative(s(t), t) + s(t)**2 + 1,0) ics = {} dsolve(ode,func=s(t),ics=ics)