Internal
problem
ID
[8946]
Book
:
An
introduction
to
Ordinary
Differential
Equations.
Earl
A.
Coddington.
Dover.
NY
1961
Section
:
Chapter
2.
Linear
equations
with
constant
coefficients.
Page
89
Problem
number
:
1(b)
Date
solved
:
Tuesday, September 30, 2025 at 06:00:24 PM
CAS
classification
:
[[_3rd_order, _with_linear_symmetries]]
ode:=diff(diff(diff(y(x),x),x),x)-8*y(x) = exp(I*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]-8*y[x]==Exp[I*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-8*y(x) - exp(x*complex(0, 1)) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)