1.5 problem 4

Internal problem ID [2759]

Book: Ordinary differential equations and their solutions. By George Moseley Murphy. 1960
Section: Various 1
Problem number: 4.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [[_linear, class A]]

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

Solution by Maple

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

dsolve(diff(y(x),x) = a*cos(b*x+c)+k*y(x),y(x), singsol=all)
 

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

Solution by Mathematica

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

DSolve[y'[x]==a*Cos[b*x+c]+k*y[x],y[x],x,IncludeSingularSolutions -> True]
 

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