Internal
problem
ID
[25080]
Book
:
Ordinary
Differential
Equations.
By
William
Adkins
and
Mark
G
Davidson.
Springer.
NY.
2010.
ISBN
978-1-4614-3617-1
Section
:
Chapter
1.
First
order
differential
equations.
Exercises
at
page
41
Problem
number
:
16
Date
solved
:
Thursday, October 02, 2025 at 11:49:32 PM
CAS
classification
:
[_separable]
ode:=diff(y(t),t) = t^m*y(t)^n; dsolve(ode,y(t), singsol=all);
ode=D[y[t],{t,1}] ==t^m*y[t]^n; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") n = symbols("n") m = symbols("m") y = Function("y") ode = Eq(-t**m*y(t)**n + Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)