Internal
problem
ID
[2183]
Book
:
Elementary
differential
equations
with
boundary
value
problems.
William
F.
Trench.
Brooks/Cole
2001
Section
:
Chapter
9
Introduction
to
Linear
Higher
Order
Equations.
Section
9.3.
Undetermined
Coefficients
for
Higher
Order
Equations.
Page
495
Problem
number
:
section
9.3,
problem
36
Date
solved
:
Tuesday, March 04, 2025 at 01:51:17 PM
CAS
classification
:
[[_3rd_order, _missing_y]]
ode:=diff(diff(diff(y(x),x),x),x)-6*diff(diff(y(x),x),x)+18*diff(y(x),x) = -exp(3*x)*((2-3*x)*cos(3*x)-(3+3*x)*sin(3*x)); dsolve(ode,y(x), singsol=all);
ode=1*D[y[x],{x,3}]-6*D[y[x],{x,2}]+18*D[y[x],x]-0*y[x]==-Exp[3*x]*((2-3*x)*Cos[3*x]-(3+3*x)*Sin[3*x]); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(((2 - 3*x)*cos(3*x) - (3*x + 3)*sin(3*x))*exp(3*x) + 18*Derivative(y(x), x) - 6*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)