11.26 problem 26

Internal problem ID [2165]

Book: Differential Equations by Alfred L. Nelson, Karl W. Folley, Max Coral. 3rd ed. DC heath. Boston. 1964
Section: Exercise 19, page 86
Problem number: 26.
ODE order: 4.
ODE degree: 1.

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

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

Solution by Maple

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

dsolve(diff(y(x),x$4)+4*y(x)=5*exp(2*x)*sin(3*x),y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 0.012 (sec). Leaf size: 64

DSolve[y''''[x]+4*y[x]==5*Exp[2*x]*Sin[3*x],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {e^{2 x} (24 \cos (3 x)-23 \sin (3 x))}{1105}+c_1 e^{-x} \cos (x)+c_4 e^x \cos (x)+c_2 e^{-x} \sin (x)+c_3 e^x \sin (x) \]