Internal
problem
ID
[7504]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.6,
Substitutions
and
Transformations.
Exercises.
page
76
Problem
number
:
5
Date
solved
:
Tuesday, September 30, 2025 at 04:40:32 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=t*diff(y(t),t)-y(t) = (t*y(t))^(1/2); dsolve(ode,y(t), singsol=all);
ode=t*D[y[t],t]-y[t]==Sqrt[t*y[t]]; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*Derivative(y(t), t) - sqrt(t*y(t)) - y(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)