4.4.49 \(x y'(x)=x \sqrt {x^2+y(x)^2}+y(x)\)

ODE
\[ x y'(x)=x \sqrt {x^2+y(x)^2}+y(x) \] ODE Classification

[[_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]

Book solution method
Homogeneous equation, \(xy'(x)=x f(x) g(u)+y(x)\)

Mathematica
cpu = 0.259055 (sec), leaf count = 12

\[\{\{y(x)\to x \sinh (x+c_1)\}\}\]

Maple
cpu = 3.318 (sec), leaf count = 28

\[\left [\ln \left (y \left (x \right )+\sqrt {x^{2}+y \left (x \right )^{2}}\right )-x -\ln \left (x \right )-\textit {\_C1} = 0\right ]\] Mathematica raw input

DSolve[x*y'[x] == y[x] + x*Sqrt[x^2 + y[x]^2],y[x],x]

Mathematica raw output

{{y[x] -> x*Sinh[x + C[1]]}}

Maple raw input

dsolve(x*diff(y(x),x) = y(x)+x*(x^2+y(x)^2)^(1/2), y(x))

Maple raw output

[ln(y(x)+(x^2+y(x)^2)^(1/2))-x-ln(x)-_C1 = 0]