1.9 problem 9

Internal problem ID [7589]

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

CAS Maple gives this as type [_separable]

\[ \boxed {y^{\prime }-\left (\sin \left (\ln \left (x \right )\right )+\cos \left (\ln \left (x \right )\right )+a \right ) y=0} \]

Solution by Maple

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

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

\[ y \left (x \right ) = c_{1} {\mathrm e}^{x \left (\sin \left (\ln \left (x \right )\right )+a \right )} \]

Solution by Mathematica

Time used: 0.058 (sec). Leaf size: 22

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

\begin{align*} y(x)\to c_1 e^{x (a+\sin (\log (x)))} \\ y(x)\to 0 \\ \end{align*}