Internal
problem
ID
[23112]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
4.
Linear
equations
of
the
first
order.
Exercise
4b
at
page
64
Problem
number
:
5
Date
solved
:
Thursday, October 02, 2025 at 09:22:58 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(y(x),x)+4*y(x) = exp(k*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]+4*y[x]==Exp[k*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") k = symbols("k") y = Function("y") ode = Eq(4*y(x) - exp(k*x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)