Internal
problem
ID
[16046]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.5,
page
64
Problem
number
:
40
Date
solved
:
Monday, March 31, 2025 at 02:36:13 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
With initial conditions
ode:=t*y(t)^3-(t^4+y(t)^4)*diff(y(t),t) = 0; ic:=y(1) = 1; dsolve([ode,ic],y(t), singsol=all);
ode=(t*y[t]^3)-(t^4+y[t]^4)*D[y[t],t]==0; ic={y[1]==1}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*y(t)**3 - (t**4 + y(t)**4)*Derivative(y(t), t),0) ics = {y(1): 1} dsolve(ode,func=y(t),ics=ics)