Internal
problem
ID
[2511]
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
:
4
Date
solved
:
Sunday, March 30, 2025 at 12:06:00 AM
CAS
classification
:
[_exact]
ode:=1+(1+t*y(t))*exp(t*y(t))+(1+t^2*exp(t*y(t)))*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=(1+(1+t*y[t])*Exp[t*y[t]])+(1+t^2*Exp[t*y[t]])*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