Internal
problem
ID
[6333]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.4,
Exact
equations.
Exercises.
page
64
Problem
number
:
13
Date
solved
:
Sunday, March 30, 2025 at 10:51:56 AM
CAS
classification
:
[_linear]
ode:=exp(t)*(y(t)-t)+(1+exp(t))*diff(y(t),t) = 0; dsolve(ode,y(t), singsol=all);
ode=Exp[t]*(y[t]-t)+(1+Exp[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))*exp(t) + (exp(t) + 1)*Derivative(y(t), t),0) ics = {} dsolve(ode,func=y(t),ics=ics)