Internal
problem
ID
[22630]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
two.
First
order
and
simple
higher
order
ordinary
differential
equations.
A
Exercises
at
page
65
Problem
number
:
7
Date
solved
:
Thursday, October 02, 2025 at 08:56:56 PM
CAS
classification
:
[_separable]
ode:=s(t)^2*t*diff(s(t),t)+t^2+4 = 0; dsolve(ode,s(t), singsol=all);
ode=s[t]^2*t*D[s[t],t]+(t^2+4)==0; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(t**2 + t*s(t)**2*Derivative(s(t), t) + 4,0) ics = {} dsolve(ode,func=s(t),ics=ics)