60.1.380 problem 389

Internal problem ID [10394]
Book : Differential Gleichungen, E. Kamke, 3rd ed. Chelsea Pub. NY, 1948
Section : Chapter 1, linear first order
Problem number : 389
Date solved : Wednesday, March 05, 2025 at 10:44:10 AM
CAS classification : [_quadrature]

\begin{align*} {y^{\prime }}^{2}-\left (4 y+1\right ) y^{\prime }+\left (4 y+1\right ) y&=0 \end{align*}

Maple. Time used: 0.778 (sec). Leaf size: 137
ode:=diff(y(x),x)^2-(4*y(x)+1)*diff(y(x),x)+(4*y(x)+1)*y(x) = 0; 
dsolve(ode,y(x), singsol=all);
 
\begin{align*} y &= -{\frac {1}{4}} \\ y &= -\frac {\sqrt {-c_{1} {\mathrm e}^{-2 x}}\, {\mathrm e}^{2 x}+c_{1}}{c_{1} \sqrt {-c_{1} {\mathrm e}^{-2 x}}} \\ y &= \frac {-\sqrt {-c_{1} {\mathrm e}^{-2 x}}\, {\mathrm e}^{2 x}+c_{1}}{\sqrt {-c_{1} {\mathrm e}^{-2 x}}\, c_{1}} \\ y &= \frac {-\sqrt {-c_{1} {\mathrm e}^{-2 x}}\, {\mathrm e}^{2 x}+c_{1}}{\sqrt {-c_{1} {\mathrm e}^{-2 x}}\, c_{1}} \\ y &= -\frac {\sqrt {-c_{1} {\mathrm e}^{-2 x}}\, {\mathrm e}^{2 x}+c_{1}}{c_{1} \sqrt {-c_{1} {\mathrm e}^{-2 x}}} \\ \end{align*}
Mathematica. Time used: 0.204 (sec). Leaf size: 67
ode=y[x]*(1 + 4*y[x]) - (1 + 4*y[x])*D[y[x],x] + D[y[x],x]^2==0; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 
\begin{align*} y(x)\to \frac {1}{4} e^{x-4 c_1} \left (e^x+2 e^{2 c_1}\right ) \\ y(x)\to \frac {1}{4} e^{x+2 c_1} \left (-2+e^{x+2 c_1}\right ) \\ y(x)\to -\frac {1}{4} \\ y(x)\to 0 \\ \end{align*}
Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq((4*y(x) + 1)*y(x) - (4*y(x) + 1)*Derivative(y(x), x) + Derivative(y(x), x)**2,0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
Timed Out