Internal
problem
ID
[2514]
Book
:
Differential
equations
and
their
applications,
4th
ed.,
M.
Braun
Section
:
Chapter
1.
First
order
differential
equations.
Section
1.9.
Exact
equations.
Excercises
page
66
Problem
number
:
7
Date
solved
:
Sunday, March 30, 2025 at 12:06:21 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=2*t*y(t)^3+3*t^2*y(t)^2*diff(y(t),t) = 0; ic:=y(1) = 1; dsolve([ode,ic],y(t), singsol=all);
ode=(2*t*y[t]^3)+(3*t^2*y[t]^2)*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(3*t**2*y(t)**2*Derivative(y(t), t) + 2*t*y(t)**3,0) ics = {y(1): 1} dsolve(ode,func=y(t),ics=ics)