Internal
problem
ID
[14101]
Book
:
DIFFERENTIAL
and
INTEGRAL
CALCULUS.
VOL
I.
by
N.
PISKUNOV.
MIR
PUBLISHERS,
Moscow
1969.
Section
:
Chapter
8.
Differential
equations.
Exercises
page
595
Problem
number
:
44
Date
solved
:
Wednesday, March 05, 2025 at 10:33:02 PM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=2*(s(t)*t)^(1/2)-s(t)+t*diff(s(t),t) = 0; dsolve(ode,s(t), singsol=all);
ode=(2*Sqrt[s[t]*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) + 2*sqrt(t*s(t)) - s(t),0) ics = {} dsolve(ode,func=s(t),ics=ics)