5.3 problem 1(c)

Internal problem ID [5451]

Book: Differential Equations: Theory, Technique, and Practice by George Simmons, Steven Krantz. McGraw-Hill NY. 2007. 1st Edition.
Section: Chapter 1. What is a differential equation. Section 1.7. Homogeneous Equations. Page 28
Problem number: 1(c).
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [[_homogeneous, `class A`], _dAlembert]

\[ \boxed {x^{2} y^{\prime }-3 \left (y^{2}+x^{2}\right ) \arctan \left (\frac {y}{x}\right )-x y=0} \]

Solution by Maple

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

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

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

Solution by Mathematica

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

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

\begin{align*} y(x)\to x \tan \left (e^{-3 c_1} x^3\right ) \\ y(x)\to 0 \\ \end{align*}