3.4 problem 1004

Internal problem ID [8584]

Book: Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section: Chapter 2, linear second order
Problem number: 1004.
ODE order: 2.
ODE degree: 1.

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

Solve \begin {gather*} \boxed {y^{\prime \prime }+y-a \cos \left (x b \right )=0} \end {gather*}

Solution by Maple

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

dsolve(diff(diff(y(x),x),x)+y(x)-a*cos(b*x)=0,y(x), singsol=all)
 

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

Solution by Mathematica

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

DSolve[-(a*Cos[b*x]) + y[x] + y''[x] == 0,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to -\frac {a \cos (b x)}{b^2-1}+c_1 \cos (x)+c_2 \sin (x) \\ \end{align*}