[_quadrature]
Book solution method
Missing Variables ODE, Dependent variable missing, Solve for
Mathematica ✓
cpu = 0.0201466 (sec), leaf count = 52
Maple ✓
cpu = 0.037 (sec), leaf count = 44
DSolve[b^2 + (a^2 - x^2)*y'[x]^2 == 0,y[x],x]
Mathematica raw output
{{y[x] -> C[1] - b*Log[x + Sqrt[-a^2 + x^2]]}, {y[x] -> C[1] + b*Log[x + Sqrt[-a
^2 + x^2]]}}
Maple raw input
dsolve((a^2-x^2)*diff(y(x),x)^2+b^2 = 0, y(x),'implicit')
Maple raw output
y(x) = b*ln(x+(-a^2+x^2)^(1/2))+_C1, y(x) = -b*ln(x+(-a^2+x^2)^(1/2))+_C1