ODE
\[ \text {X1}(x,y(x)) y'(x)^{n-1}+y'(x)^n=0 \] ODE Classification
[_quadrature]
Book solution method
Form \((y')^m + f_1(x,y) (y')^{m-1} \dots + f_m(x,y)=0\)
Mathematica ✗
cpu = 1.42336 (sec), leaf count = 0 , could not solve
DSolve[X1[x, y[x]]*Derivative[1][y][x]^(-1 + n) + Derivative[1][y][x]^n == 0, y[x], x]
Maple ✓
cpu = 0.063 (sec), leaf count = 5
\[ \left \{ y \left ( x \right ) ={\it \_C1} \right \} \] Mathematica raw input
DSolve[X1[x, y[x]]*y'[x]^(-1 + n) + y'[x]^n == 0,y[x],x]
Mathematica raw output
DSolve[X1[x, y[x]]*Derivative[1][y][x]^(-1 + n) + Derivative[1][y][x]^n == 0, y[
x], x]
Maple raw input
dsolve(diff(y(x),x)^n+X1(x,y(x))*diff(y(x),x)^(n-1) = 0, y(x),'implicit')
Maple raw output
y(x) = _C1