11.16 problem 16

Internal problem ID [2155]

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

CAS Maple gives this as type [[_3rd_order, _with_linear_symmetries]]

\[ \boxed {y^{\prime \prime \prime }-3 y^{\prime \prime }+4 y^{\prime }-12 y=x +{\mathrm e}^{2 x}} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 43

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

\[ y \left (x \right ) = \frac {\left (936 c_{1} +18\right ) \cos \left (2 x \right )}{936}+\frac {\left (936 c_{3} +27\right ) \sin \left (2 x \right )}{936}+c_{2} {\mathrm e}^{3 x}-\frac {x}{12}-\frac {{\mathrm e}^{2 x}}{8}-\frac {1}{36} \]

Solution by Mathematica

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

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

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