4.19.23 (a2x2)y(x)2=x2

ODE
(a2x2)y(x)2=x2 ODE Classification

[_quadrature]

Book solution method
Missing Variables ODE, Dependent variable missing, Solve for y

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

{{y(x)c1a2x2},{y(x)a2x2+c1}}

Maple
cpu = 0.035 (sec), leaf count = 52

{y(x)=(ax)(a+x)1(ax)(a+x)+_C1,y(x)=(ax)(a+x)1(ax)(a+x)+_C1} Mathematica raw input

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

Mathematica raw output

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

Maple raw input

dsolve((a^2-x^2)*diff(y(x),x)^2 = x^2, y(x),'implicit')

Maple raw output

y(x) = -(a-x)*(a+x)/((a-x)*(a+x))^(1/2)+_C1, y(x) = (a-x)*(a+x)/((a-x)*(a+x))^(1
/2)+_C1