13.24 problem 378

Internal problem ID [3634]

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

CAS Maple gives this as type [_linear]

\[ \boxed {y^{\prime } x^{5}+3 y x^{4}=1} \]

Solution by Maple

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

dsolve(x^5*diff(y(x),x) = 1-3*x^4*y(x),y(x), singsol=all)
 

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

Solution by Mathematica

Time used: 0.027 (sec). Leaf size: 15

DSolve[x^5 y'[x]==1-3 x^4 y[x],y[x],x,IncludeSingularSolutions -> True]
 

\[ y(x)\to \frac {-1+c_1 x}{x^4} \]