Internal
problem
ID
[23152]
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
5c
at
page
83
Problem
number
:
5
Date
solved
:
Thursday, October 02, 2025 at 09:23:32 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(x(z),z),z)-6*diff(x(z),z)-7*x(z) = 4*z-7; dsolve(ode,x(z), singsol=all);
ode=D[x[z],{z,2}]-6*D[x[z],z]-7*x[z]==4*z-7; ic={}; DSolve[{ode,ic},x[z],z,IncludeSingularSolutions->True]
from sympy import * z = symbols("z") x = Function("x") ode = Eq(-4*z - 7*x(z) - 6*Derivative(x(z), z) + Derivative(x(z), (z, 2)) + 7,0) ics = {} dsolve(ode,func=x(z),ics=ics)