Internal
problem
ID
[2159]
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
12
Date
solved
:
Saturday, March 29, 2025 at 11:49:42 PM
CAS
classification
:
[[_3rd_order, _linear, _nonhomogeneous]]
ode:=8*diff(diff(diff(y(x),x),x),x)-12*diff(diff(y(x),x),x)+6*diff(y(x),x)-y(x) = exp(1/2*x)*(1+4*x); dsolve(ode,y(x), singsol=all);
ode=8*D[y[x],{x,3}]-12*D[y[x],{x,2}]+6*D[y[x],x]-y[x]==Exp[x/2]*(1+4*x); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-4*x - 1)*exp(x/2) - y(x) + 6*Derivative(y(x), x) - 12*Derivative(y(x), (x, 2)) + 8*Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)