8.26 problem 231

Internal problem ID [3487]

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

CAS Maple gives this as type [_linear]

\[ \boxed {\left (x +a \right ) y^{\prime }-3 y=2 \left (x +a \right )^{5}} \]

Solution by Maple

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

dsolve((a+x)*diff(y(x),x) = 2*(a+x)^5+3*y(x),y(x), singsol=all)
 

\[ y \left (x \right ) = \left (2 a x +x^{2}+c_{1} \right ) \left (x +a \right )^{3} \]

Solution by Mathematica

Time used: 0.044 (sec). Leaf size: 21

DSolve[(a+x) y'[x]==2(a+x)^5+3 y[x],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to (a+x)^3 \left (2 a x+x^2+c_1\right ) \]