Internal
problem
ID
[22407]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
1.
Differential
equations
in
general.
A
Exercises
at
page
12
Problem
number
:
1
(b)
Date
solved
:
Thursday, October 02, 2025 at 08:38:25 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(x),x),x)-4*diff(y(x),x)-5*y(x) = exp(3*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]-4*D[y[x],x]-5*y[x]==Exp[3*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-5*y(x) - exp(3*x) - 4*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)