Internal
problem
ID
[22680]
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
:
57
Date
solved
:
Thursday, October 02, 2025 at 09:06:19 PM
CAS
classification
:
[[_homogeneous, `class C`], [_Abel, `2nd type`, `class C`], _dAlembert]
ode:=diff(s(t),t) = 1/(s(t)+t+1); dsolve(ode,s(t), singsol=all);
ode=D[s[t],t]==1/(s[t]+t+1); ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(Derivative(s(t), t) - 1/(t + s(t) + 1),0) ics = {} dsolve(ode,func=s(t),ics=ics)