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

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

[_quadrature]

Book solution method
Separable ODE, Independent variable missing

Mathematica
cpu = 0.246092 (sec), leaf count = 43

\[\left \{\left \{y(x)\to -\sqrt {-a^2+(x+c_1){}^2}\right \},\left \{y(x)\to \sqrt {-a^2+(x+c_1){}^2}\right \}\right \}\]

Maple
cpu = 0.011 (sec), leaf count = 18

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

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

Mathematica raw output

{{y[x] -> -Sqrt[-a^2 + (x + C[1])^2]}, {y[x] -> Sqrt[-a^2 + (x + C[1])^2]}}

Maple raw input

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

Maple raw output

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