2.7 problem 7

Internal problem ID [3248]
Internal file name [OUTPUT/2740_Sunday_June_05_2022_08_39_55_AM_49799157/index.tex]

Book: Differential equations for engineers by Wei-Chau XIE, Cambridge Press 2010
Section: Chapter 4. Linear Differential Equations. Page 183
Problem number: 7.
ODE order: 4.
ODE degree: 1.

The type(s) of ODE detected by this program : "higher_order_linear_constant_coefficients_ODE"

Maple gives the following as the ode type

[[_high_order, _missing_x]]

\[ \boxed {y^{\prime \prime \prime \prime }+18 y^{\prime \prime }+81 y=0} \] The characteristic equation is \[ \lambda ^{4}+18 \lambda ^{2}+81 = 0 \] The roots of the above equation are \begin {align*} \lambda _1 &= 3 i\\ \lambda _2 &= -3 i\\ \lambda _3 &= 3 i\\ \lambda _4 &= -3 i \end {align*}

Therefore the homogeneous solution is \[ y_h(x)={\mathrm e}^{-3 i x} c_{1} +x \,{\mathrm e}^{-3 i x} c_{2} +{\mathrm e}^{3 i x} c_{3} +x \,{\mathrm e}^{3 i x} c_{4} \] The fundamental set of solutions for the homogeneous solution are the following \begin {align*} y_1 &= {\mathrm e}^{-3 i x}\\ y_2 &= x \,{\mathrm e}^{-3 i x}\\ y_3 &= {\mathrm e}^{3 i x}\\ y_4 &= x \,{\mathrm e}^{3 i x} \end {align*}

Summary

The solution(s) found are the following \begin{align*} \tag{1} y &= {\mathrm e}^{-3 i x} c_{1} +x \,{\mathrm e}^{-3 i x} c_{2} +{\mathrm e}^{3 i x} c_{3} +x \,{\mathrm e}^{3 i x} c_{4} \\ \end{align*}

Verification of solutions

\[ y = {\mathrm e}^{-3 i x} c_{1} +x \,{\mathrm e}^{-3 i x} c_{2} +{\mathrm e}^{3 i x} c_{3} +x \,{\mathrm e}^{3 i x} c_{4} \] Verified OK.

Maple trace

`Methods for high order ODEs: 
--- Trying classification methods --- 
trying a quadrature 
checking if the LODE has constant coefficients 
<- constant coefficients successful`
 

Solution by Maple

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

dsolve(diff(y(x),x$4)+18*diff(y(x),x$2)+81*y(x)=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \left (c_{4} x +c_{2} \right ) \cos \left (3 x \right )+\sin \left (3 x \right ) \left (c_{3} x +c_{1} \right ) \]

Solution by Mathematica

Time used: 0.003 (sec). Leaf size: 30

DSolve[y''''[x]+18*y''[x]+81*y[x]==0,y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to (c_2 x+c_1) \cos (3 x)+(c_4 x+c_3) \sin (3 x) \]