7.6.5 problem 5

Internal problem ID [175]
Book : Elementary Differential Equations. By C. Henry Edwards, David E. Penney and David Calvis. 6th edition. 2008
Section : Chapter 1. First order differential equations. Section 1.7 (population models). Problems at page 82
Problem number : 5
Date solved : Friday, February 07, 2025 at 08:01:01 AM
CAS classification : [_quadrature]

\begin{align*} x^{\prime }&=3 x \left (5-x\right ) \end{align*}

With initial conditions

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

Solution by Maple

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

dsolve([diff(x(t),t)=3*x(t)*(5-x(t)),x(0) = 8],x(t), singsol=all)
 
\[ x = -\frac {40}{3 \,{\mathrm e}^{-15 t}-8} \]

Solution by Mathematica

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

DSolve[{D[x[t],t]==3*x[t]*(5-x[t]),{x[0]==8}},x[t],t,IncludeSingularSolutions -> True]
 
\[ x(t)\to \frac {40 e^{15 t}}{8 e^{15 t}-3} \]