Internal
problem
ID
[7580]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Review
problem.
(J)
Asymptotic
Behavior.
page
88
Problem
number
:
9
Date
solved
:
Tuesday, September 30, 2025 at 04:54:33 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(y(x),x)+a*y(x) = Q(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+a*y[x]==Q[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") q = Function("q") ode = Eq(a*y(x) - q(x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)