2.9 problem Problem 1(i)

Internal problem ID [10882]

Book: APPLIED DIFFERENTIAL EQUATIONS The Primary Course by Vladimir A. Dobrushkin. CRC Press 2015
Section: Chapter 4, Second and Higher Order Linear Differential Equations. Problems page 221
Problem number: Problem 1(i).
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_quadrature]

\[ \boxed {y^{\prime } y-1=0} \]

Solution by Maple

Time used: 0.016 (sec). Leaf size: 23

dsolve(y(x)*diff(y(x),x)=1,y(x), singsol=all)
 

\begin{align*} y \left (x \right ) = \sqrt {2 x +c_{1}} \\ y \left (x \right ) = -\sqrt {2 x +c_{1}} \\ \end{align*}

Solution by Mathematica

Time used: 0.011 (sec). Leaf size: 38

DSolve[y[x]*y'[x]==1,y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to -\sqrt {2} \sqrt {x+c_1} \\ y(x)\to \sqrt {2} \sqrt {x+c_1} \\ \end{align*}