1.11 problem 2(e)

Internal problem ID [3039]

Book: Elementary Differential equations, Chaundy, 1969
Section: Exercises 3, page 60
Problem number: 2(e).
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_linear]

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

Solution by Maple

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

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

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

Solution by Mathematica

Time used: 0.039 (sec). Leaf size: 23

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

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