1.113 problem 160

Internal problem ID [12530]

Book: DIFFERENTIAL and INTEGRAL CALCULUS. VOL I. by N. PISKUNOV. MIR PUBLISHERS, Moscow 1969.
Section: Chapter 8. Differential equations. Exercises page 595
Problem number: 160.
ODE order: 4.
ODE degree: 1.

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

\[ \boxed {y^{\prime \prime \prime \prime }+2 a^{2} y^{\prime \prime }+a^{4} y=8 \cos \left (a x \right )} \]

Solution by Maple

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

dsolve(diff(y(x),x$4)+2*a^2*diff(y(x),x$2)+a^4*y(x)=8*cos(a*x),y(x), singsol=all)
 

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

Solution by Mathematica

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

DSolve[y''''[x]+2*a^2*y''[x]+a^4*y[x]==8*Cos[a*x],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {2 a \left (x \left (2+a^3 c_4\right )+a^3 c_3\right ) \sin (a x)+\left (2 a^4 (c_2 x+c_1)-2 a^2 x^2+5\right ) \cos (a x)}{2 a^4} \]