19.39 problem section 9.3, problem 39

Internal problem ID [1536]

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

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

\[ \boxed {y^{\prime \prime \prime \prime }-8 y^{\prime \prime \prime }+24 y^{\prime \prime }-32 y^{\prime }+15 y={\mathrm e}^{2 x} \left (15 \cos \left (2 x \right ) x +32 \sin \left (2 x \right )\right )} \]

Solution by Maple

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

dsolve(1*diff(y(x),x$4)-8*diff(y(x),x$3)+24*diff(y(x),x$2)-32*diff(y(x),x)+15*y(x)=exp(2*x)*(15*x*cos(2*x)+32*sin(2*x)),y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 0.017 (sec). Leaf size: 45

DSolve[1*y''''[x]-8*y'''[x]+24*y''[x]-32*y'[x]+15*y[x]==Exp[2*x]*(15*x*Cos[2*x]+32*Sin[2*x]),y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to e^x \left (e^x x \cos (2 x)+c_4 e^{2 x}+c_2 e^x \cos (x)+c_1 e^x \sin (x)+c_3\right ) \]