Internal
problem
ID
[7548]
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
:
14
Date
solved
:
Tuesday, September 30, 2025 at 04:47:09 PM
CAS
classification
:
[_linear]
ode:=diff(x(t),t)-x(t)/(t-1) = t^2+2; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]- x[t]/(t-1) ==t^2+2; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t**2 + Derivative(x(t), t) - 2 - x(t)/(t - 1),0) ics = {} dsolve(ode,func=x(t),ics=ics)