19.45 problem section 9.3, problem 45

Internal problem ID [1542]

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

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

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

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 0.011 (sec). Leaf size: 54

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

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