Internal
problem
ID
[7567]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Review
problems.
page
79
Problem
number
:
33
Date
solved
:
Tuesday, September 30, 2025 at 04:53:13 PM
CAS
classification
:
[[_linear, `class A`]]
With initial conditions
ode:=t+x(t)+3+diff(x(t),t) = 0; ic:=[x(0) = 1]; dsolve([ode,op(ic)],x(t), singsol=all);
ode=(t+x[t]+3)+D[x[t],t]== 0; ic={x[0]==1}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(t + x(t) + Derivative(x(t), t) + 3,0) ics = {x(0): 1} dsolve(ode,func=x(t),ics=ics)