4.18.45 x2y(x)2=a2

ODE
x2y(x)2=a2 ODE Classification

[_quadrature]

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

Mathematica
cpu = 0.00319314 (sec), leaf count = 24

{{y(x)c1alog(x)},{y(x)alog(x)+c1}}

Maple
cpu = 0.007 (sec), leaf count = 20

{y(x)=aln(x)+_C1,y(x)=aln(x)+_C1} Mathematica raw input

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

Mathematica raw output

{{y[x] -> C[1] - a*Log[x]}, {y[x] -> C[1] + a*Log[x]}}

Maple raw input

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

Maple raw output

y(x) = a*ln(x)+_C1, y(x) = -a*ln(x)+_C1