Internal
problem
ID
[7541]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Review
problems.
page
79
Problem
number
:
7
Date
solved
:
Tuesday, September 30, 2025 at 04:45:08 PM
CAS
classification
:
[_separable]
ode:=t^3*y(t)^2+t^4/y(t)^6*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=t^3*y[t]^2+t^4/(y[t]^6)*D[y[t],t]==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t**4*Derivative(y(t), t)/y(t)**6 + t**3*y(t)**2,0) ics = {} dsolve(ode,func=y(t),ics=ics)
Timed Out