1.25 problem 25

Internal problem ID [1894]

Book: Differential Equations, Nelson, Folley, Coral, 3rd ed, 1964
Section: Exercis 5, page 21
Problem number: 25.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_quadrature]

\[ \boxed {y^{\prime }-{\mathrm e}^{y}=0} \] With initial conditions \begin {align*} [y \left (0\right ) = 0] \end {align*}

Solution by Maple

Time used: 0.031 (sec). Leaf size: 12

dsolve([diff(y(x),x)=exp(y(x)),y(0) = 0],y(x), singsol=all)
 

\[ y \left (x \right ) = -\ln \left (1-x \right ) \]

Solution by Mathematica

Time used: 0.003 (sec). Leaf size: 13

DSolve[{y'[x]==Exp[y[x]],y[0]==0},y[x],x,IncludeSingularSolutions -> True]
 

\begin{align*} y(x)\to -\log (1-x) \\ \end{align*}