Internal
problem
ID
[2504]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.4
separable
equations.
Excercises
page
24
Problem
number
:
17
Date
solved
:
Sunday, March 30, 2025 at 12:04:48 AM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=(t-(t*y(t))^(1/2))*diff(y(t),t) = y(t); dsolve(ode,y(t), singsol=all);
ode=(t-Sqrt[t*y[t]])*D[y[t],t]==y[t]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq((t - sqrt(t*y(t)))*Derivative(y(t), t) - y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)