8.4 problem 19

Internal problem ID [5361]

Book: Schaums Outline. Theory and problems of Differential Equations, 1st edition. Frank Ayres. McGraw Hill 1952
Section: Chapter 13. Homogeneous Linear equations with constant coefficients. Supplemetary problems. Page 86
Problem number: 19.
ODE order: 4.
ODE degree: 1.

CAS Maple gives this as type [[_high_order, _missing_x]]

\[ \boxed {y^{\prime \prime \prime \prime }-6 y^{\prime \prime \prime }+12 y^{\prime \prime }-8 y^{\prime }=0} \]

Solution by Maple

Time used: 0.016 (sec). Leaf size: 28

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

\[ y = c_{1} +c_{2} {\mathrm e}^{2 x}+x \,{\mathrm e}^{2 x} c_{3} +x^{2} {\mathrm e}^{2 x} c_{4} \]

Solution by Mathematica

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

DSolve[y''''[x]-6*y'''[x]+12*y''[x]-8*y'[x]==0,y[x],x,IncludeSingularSolutions -> True]
 

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