6.1 problem 1

Internal problem ID [121]

Book: Differential equations and linear algebra, 3rd ed., Edwards and Penney
Section: Chapter 1 review problems. Page 78
Problem number: 1.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_linear]

Solve \begin {gather*} \boxed {x^{3}+3 y-y^{\prime } x=0} \end {gather*}

Solution by Maple

Time used: 0.001 (sec). Leaf size: 12

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

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

Solution by Mathematica

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

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

\begin{align*} y(x)\to x^3 (\log (x)+c_1) \\ \end{align*}