60.3.74 problem 1076

Internal problem ID [11084]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 2, linear second order
Problem number : 1076
Date solved : Monday, January 27, 2025 at 10:45:16 PM
CAS classification : [[_2nd_order, _linear, _nonhomogeneous]]

\begin{align*} y^{\prime \prime }+f \left (x \right ) y^{\prime }+\left (f^{\prime }\left (x \right )+a \right ) y-g \left (x \right )&=0 \end{align*}

Solution by Maple

dsolve(diff(diff(y(x),x),x)+f(x)*diff(y(x),x)+(diff(f(x),x)+a)*y(x)-g(x)=0,y(x), singsol=all)
 
\[ \text {No solution found} \]

Solution by Mathematica

Time used: 0.000 (sec). Leaf size: 0

DSolve[-g[x] + y[x]*(a + Derivative[1][f][x]) + f[x]*D[y[x],x] + D[y[x],{x,2}] == 0,y[x],x,IncludeSingularSolutions -> True]
 

Not solved