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