Internal
problem
ID
[22662]
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
:
39
Date
solved
:
Thursday, October 02, 2025 at 09:03:12 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
With initial conditions
ode:=diff(s(t),t) = ((1-t)/(1-s(t)))^(1/2); ic:=[s(1) = 0]; dsolve([ode,op(ic)],s(t), singsol=all);
ode=D[s[t],{t,1}]==Sqrt[ (1-t)/(1-s[t])]; ic={s[1]==0}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(-sqrt((1 - t)/(1 - s(t))) + Derivative(s(t), t),0) ics = {s(1): 0} dsolve(ode,func=s(t),ics=ics)