Internal
problem
ID
[21998]
Book
:
Differential
Equations
By
Kaj
L.
Nielsen.
Second
edition
1966.
Barnes
and
nobel.
66-28306
Section
:
Chapter
VI.
Linear
equations
with
constant
coefficients.
Ex.
XIII
at
page
106
Problem
number
:
9
Date
solved
:
Thursday, October 02, 2025 at 08:21:32 PM
CAS
classification
:
[[_3rd_order, _with_linear_symmetries]]
ode:=diff(diff(diff(y(x),x),x),x)-3*diff(diff(y(x),x),x)+3*diff(y(x),x)-y(x) = 2*x^2-3*x-17; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]-3*D[y[x],{x,2}]+3*D[y[x],x]-y[x]==2*x^2-3*x-17; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*x**2 + 3*x - y(x) + 3*Derivative(y(x), x) - 3*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)) + 17,0) ics = {} dsolve(ode,func=y(x),ics=ics)