Internal
problem
ID
[2338]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.9.
Page
66
Problem
number
:
3
Date
solved
:
Saturday, March 29, 2025 at 11:56:42 PM
CAS
classification
:
[_exact]
ode:=2*t*sin(y(t))+exp(t)*y(t)^3+(t^2*cos(y(t))+3*exp(t)*y(t)^2)*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=2*t*Sin[y[t]]+Exp[t]*y[t]^3+(t^2*Cos[y[t]]+3*Exp[t]*y[t]^2)*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(2*t*sin(y(t)) + (t**2*cos(y(t)) + 3*y(t)**2*exp(t))*Derivative(y(t), t) + y(t)**3*exp(t),0) ics = {} dsolve(ode,func=y(t),ics=ics)
Timed Out