Internal
problem
ID
[22492]
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.
B
Exercises
at
page
37
Problem
number
:
4
Date
solved
:
Sunday, October 12, 2025 at 05:52:29 AM
CAS
classification
:
[_rational, [_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=diff(U(s),s) = (U(s)+1)/(s^(1/2)+(s*U(s))^(1/2)); dsolve(ode,U(s), singsol=all);
ode=D[U[s],s]== (U[s]+1)/( Sqrt[s]+Sqrt[s*U[s]] ); ic={}; DSolve[{ode,ic},U[s],s,IncludeSingularSolutions->True]
from sympy import * s = symbols("s") U = Function("U") ode = Eq(Derivative(U(s), s) - (U(s) + 1)/(sqrt(s) + sqrt(s*U(s))),0) ics = {} dsolve(ode,func=U(s),ics=ics)
Timed Out