Internal
problem
ID
[23168]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
5.
Linear
equations
of
the
second
order
with
constant
coefficients.
Exercise
5e
at
page
91
Problem
number
:
8
Date
solved
:
Thursday, October 02, 2025 at 09:23:43 PM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=diff(diff(z(x),x),x)+2*diff(z(x),x) = 3*sin(x); dsolve(ode,z(x), singsol=all);
ode=D[z[x],{x,2}]+2*D[z[x],x]==3*Sin[x]; ic={}; DSolve[{ode,ic},z[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") z = Function("z") ode = Eq(-3*sin(x) + 2*Derivative(z(x), x) + Derivative(z(x), (x, 2)),0) ics = {} dsolve(ode,func=z(x),ics=ics)