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