19.16 problem section 9.3, problem 16

Internal problem ID [1513]

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 16.
ODE order: 4.
ODE degree: 1.

CAS Maple gives this as type [[_high_order, _linear, _nonhomogeneous]]

\[ \boxed {4 y^{\prime \prime \prime \prime }-11 y^{\prime \prime }-9 y^{\prime }-2 y=-{\mathrm e}^{x} \left (1-6 x \right )} \]

Solution by Maple

Time used: 0.015 (sec). Leaf size: 40

dsolve(4*diff(y(x),x$4)-11*diff(y(x),x$2)-9*diff(y(x),x)-2*y(x)=-exp(x)*(1-6*x),y(x), singsol=all)
 

\[ y \left (x \right ) = {\mathrm e}^{-x} \left (\left (c_{4} x +c_{3} \right ) {\mathrm e}^{\frac {x}{2}}-\frac {{\mathrm e}^{2 x} x}{3}+c_{2} {\mathrm e}^{3 x}+c_{1} +\frac {{\mathrm e}^{2 x}}{3}\right ) \]

Solution by Mathematica

Time used: 0.006 (sec). Leaf size: 47

DSolve[4*y''''[x]-11*y''[x]-9*y'[x]-2*y[x]==-Exp[x]*(1-6*x),y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to -\frac {1}{3} e^x (x-1)+e^{-x/2} (c_2 x+c_1)+c_3 e^{-x}+c_4 e^{2 x} \]