4.16.10 \(y'(x)^2=1-y(x)^2\)

ODE
\[ y'(x)^2=1-y(x)^2 \] ODE Classification

[_quadrature]

Book solution method
Missing Variables ODE, Independent variable missing, Solve for \(y'\)

Mathematica
cpu = 0.198512 (sec), leaf count = 23

\[\{\{y(x)\to -\sin (x-c_1)\},\{y(x)\to \sin (x+c_1)\}\}\]

Maple
cpu = 0.075 (sec), leaf count = 29

\[[y \left (x \right ) = -1, y \left (x \right ) = 1, y \left (x \right ) = -\sin \left (-x +\textit {\_C1} \right ), y \left (x \right ) = \sin \left (-x +\textit {\_C1} \right )]\] Mathematica raw input

DSolve[y'[x]^2 == 1 - y[x]^2,y[x],x]

Mathematica raw output

{{y[x] -> -Sin[x - C[1]]}, {y[x] -> Sin[x + C[1]]}}

Maple raw input

dsolve(diff(y(x),x)^2 = 1-y(x)^2, y(x))

Maple raw output

[y(x) = -1, y(x) = 1, y(x) = -sin(-x+_C1), y(x) = sin(-x+_C1)]