Internal
problem
ID
[22409]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
1.
Differential
equations
in
general.
A
Exercises
at
page
12
Problem
number
:
1
(e)
Date
solved
:
Thursday, October 02, 2025 at 08:38:25 PM
CAS
classification
:
[[_homogeneous, `class G`]]
ode:=diff(r(t),t) = (r(t)*t)^(1/2); dsolve(ode,r(t), singsol=all);
ode=D[r[t],t]==Sqrt[r[t]*t]; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(-sqrt(t*r(t)) + Derivative(r(t), t),0) ics = {} dsolve(ode,func=r(t),ics=ics)