1.3 problem 3

Internal problem ID [2546]

Book: Differential equations and linear algebra, Stephen W. Goode, second edition, 2000
Section: 1.4, page 36
Problem number: 3.
ODE order: 1.
ODE degree: 1.

CAS Maple gives this as type [_separable]

\[ \boxed {{\mathrm e}^{y+x} y^{\prime }=1} \]

Solution by Maple

Time used: 0.0 (sec). Leaf size: 15

dsolve(exp(x+y(x))*diff(y(x),x)-1=0,y(x), singsol=all)
 

\[ y \left (x \right ) = \ln \left ({\mathrm e}^{x} c_{1} -1\right )-x \]

Solution by Mathematica

Time used: 0.089 (sec). Leaf size: 16

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

\[ y(x)\to \log \left (-e^{-x}+c_1\right ) \]