83.10.1 problem 1

Internal problem ID [21970]
Book : Differential Equations By Kaj L. Nielsen. Second edition 1966. Barnes and nobel. 66-28306
Section : Chapter IV. First order differential equations of higher degree. Ex. XI at page 69
Problem number : 1
Date solved : Thursday, October 02, 2025 at 08:20:52 PM
CAS classification : [_quadrature]

\begin{align*} {y^{\prime }}^{2}-3&=0 \end{align*}
Maple. Time used: 0.010 (sec). Leaf size: 22
ode:=diff(y(x),x)^2-3 = 0; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= -\sqrt {3}\, x +c_1 \\ y &= \sqrt {3}\, x +c_1 \\ \end{align*}
Mathematica. Time used: 0.002 (sec). Leaf size: 30
ode=D[y[x],x]^2-3==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)&\to -\sqrt {3} x+c_1\\ y(x)&\to \sqrt {3} x+c_1 \end{align*}
Sympy. Time used: 0.085 (sec). Leaf size: 20
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(Derivative(y(x), x)**2 - 3,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ \left [ y{\left (x \right )} = C_{1} - \sqrt {3} x, \ y{\left (x \right )} = C_{1} + \sqrt {3} x\right ] \]