Internal
problem
ID
[2345]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.9.
Page
66
Problem
number
:
10
Date
solved
:
Saturday, March 29, 2025 at 11:57:17 PM
CAS
classification
:
[_exact]
With initial conditions
ode:=2*t-2*exp(t*y(t))*sin(2*t)+exp(t*y(t))*cos(2*t)*y(t)+(-3+exp(t*y(t))*t*cos(2*t))*diff(y(t),t) = 0; ic:=y(0) = 0; dsolve([ode,ic],y(t), singsol=all);
ode=2*t-2*Exp[t*y[t]]*Sin[2*t]+Exp[t*y[t]]*Cos[2*t]*y[t]+(-3+Exp[t*y[t]]*t*Cos[2*t])*D[y[t],t] == 0; ic=y[0]==0; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(2*t + (t*exp(t*y(t))*cos(2*t) - 3)*Derivative(y(t), t) + y(t)*exp(t*y(t))*cos(2*t) - 2*exp(t*y(t))*sin(2*t),0) ics = {y(0): 0} dsolve(ode,func=y(t),ics=ics)
Timed Out