49.3.9 problem 14(a)

Internal problem ID [7609]
Book : An introduction to Ordinary Differential Equations. Earl A. Coddington. Dover. NY 1961
Section : Chapter 1. Introduction– Linear equations of First Order. Page 45
Problem number : 14(a)
Date solved : Monday, January 27, 2025 at 03:07:25 PM
CAS classification : [_quadrature]

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

With initial conditions

\begin{align*} y \left (0\right )&=0 \end{align*}

Solution by Maple

Time used: 0.005 (sec). Leaf size: 8

dsolve([diff(y(x),x)=1+y(x),y(0) = 0],y(x), singsol=all)
 
\[ y = -1+{\mathrm e}^{x} \]

Solution by Mathematica

Time used: 0.026 (sec). Leaf size: 10

DSolve[{D[y[x],x]==1+y[x],{y[0]==0}},y[x],x,IncludeSingularSolutions -> True]
 
\[ y(x)\to e^x-1 \]