57.1.60 problem 60

Internal problem ID [9044]
Book : First order enumerated odes
Section : section 1
Problem number : 60
Date solved : Wednesday, March 05, 2025 at 07:15:19 AM
CAS classification : [[_homogeneous, `class C`], _dAlembert]

\begin{align*} y^{\prime }&=\sqrt {1+6 x +y} \end{align*}

Maple. Time used: 0.030 (sec). Leaf size: 57
ode:=diff(y(x),x) = (1+6*x+y(x))^(1/2); 
dsolve(ode,y(x), singsol=all);
 
\[ x -2 \sqrt {1+6 x +y}+6 \ln \left (6+\sqrt {1+6 x +y}\right )-6 \ln \left (-6+\sqrt {1+6 x +y}\right )+6 \ln \left (-35+6 x +y\right )-c_{1} = 0 \]
Mathematica. Time used: 11.355 (sec). Leaf size: 112
ode=D[y[x],x]==(1+6*x+y[x])^(1/2); 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)\to 36 W\left (-\frac {1}{6} e^{\frac {1}{72} (-6 x-73+6 c_1)}\right ){}^2+72 W\left (-\frac {1}{6} e^{\frac {1}{72} (-6 x-73+6 c_1)}\right )-6 x+35 \\ y(x)\to 35-6 x \\ y(x)\to 36 W\left (-\frac {1}{6} e^{\frac {1}{72} (-6 x-73)}\right )^2+72 W\left (-\frac {1}{6} e^{\frac {1}{72} (-6 x-73)}\right )-6 x+35 \\ \end{align*}
Sympy. Time used: 0.887 (sec). Leaf size: 34
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-sqrt(6*x + y(x) + 1) + Derivative(y(x), x),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
\[ C_{1} + x - 2 \sqrt {6 x + y{\left (x \right )} + 1} + 12 \log {\left (\sqrt {6 x + y{\left (x \right )} + 1} + 6 \right )} = 0 \]