11.11 problem 11

Internal problem ID [2150]

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: 11.
ODE order: 2.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime }-y^{\prime }-6 y=x^{3}} \]

Solution by Maple

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

dsolve(diff(y(x),x$2)-diff(y(x),x)-6*y(x)=x^3,y(x), singsol=all)
 

\[ y \left (x \right ) = c_{1} {\mathrm e}^{3 x}+c_{2} {\mathrm e}^{-2 x}-\frac {x^{3}}{6}+\frac {x^{2}}{12}-\frac {7 x}{36}+\frac {13}{216} \]

Solution by Mathematica

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

DSolve[y''[x]-y'[x]-6*y[x]==x^3,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {1}{216} \left (-36 x^3+18 x^2-42 x+13\right )+c_1 e^{-2 x}+c_2 e^{3 x} \]