4.41.3 \(\sqrt {a^2-x^2} \left (x y(x) y''(x)-x y'(x)^2-y(x) y'(x)\right )=b x y'(x)^2\)

ODE
\[ \sqrt {a^2-x^2} \left (x y(x) y''(x)-x y'(x)^2-y(x) y'(x)\right )=b x y'(x)^2 \] ODE Classification

[[_2nd_order, _with_linear_symmetries]]

Book solution method
TO DO

Mathematica
cpu = 0.51413 (sec), leaf count = 53

\[\left \{\left \{y(x)\to c_2 e^{-\frac {\sqrt {a^2-x^2}}{b}} \left (b \sqrt {a^2-x^2}+c_1\right ){}^{\frac {c_1}{b^2}}\right \}\right \}\]

Maple
cpu = 1.005 (sec), leaf count = 50

\[\left [y \left (x \right ) = \textit {\_C2} \,{\mathrm e}^{\int -\frac {x \sqrt {a^{2}-x^{2}}}{-a^{2} b +b \,x^{2}+\textit {\_C1} \sqrt {a^{2}-x^{2}}}d x}\right ]\] Mathematica raw input

DSolve[Sqrt[a^2 - x^2]*(-(y[x]*y'[x]) - x*y'[x]^2 + x*y[x]*y''[x]) == b*x*y'[x]^2,y[x],x]

Mathematica raw output

{{y[x] -> ((b*Sqrt[a^2 - x^2] + C[1])^(C[1]/b^2)*C[2])/E^(Sqrt[a^2 - x^2]/b)}}

Maple raw input

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

Maple raw output

[y(x) = _C2*exp(Int(-x*(a^2-x^2)^(1/2)/(-a^2*b+b*x^2+_C1*(a^2-x^2)^(1/2)),x))]