Internal
problem
ID
[7503]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.6,
Substitutions
and
Transformations.
Exercises.
page
76
Problem
number
:
4
Date
solved
:
Tuesday, September 30, 2025 at 04:40:17 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=(t+x(t)+2)*diff(x(t),t)+3*t-x(t)-6 = 0; dsolve(ode,x(t), singsol=all);
ode=(t+x[t]+2)*D[x[t],t]+(3*t-x[t]-6)==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(3*t + (t + x(t) + 2)*Derivative(x(t), t) - x(t) - 6,0) ics = {} dsolve(ode,func=x(t),ics=ics)