The logistic growth model is a more realistic population model than exponential growth. It accounts for a carrying capacity $M$ — the maximum population the environment can sustain. Initially, the population grows exponentially, but as it approaches $M$, growth slows and eventually stabilizes.

🎯 In this section you will learn

📌 The Logistic Equation

$$ \frac{dP}{dt} = kP\left(1 - \frac{P}{M}\right) $$
where $k > 0$ is the growth rate, $M > 0$ is the carrying capacity
💡 Interpreting the Equation

📌 The Logistic Growth Solution

$$ P(t) = \frac{M}{1 + Ae^{-kt}} $$
where $A = \frac{M - P_0}{P_0}$ and $P_0 = P(0)$ is the initial population
💡 Derivation (Separable DE)

$\frac{dP}{P(1 - P/M)} = k dt$ → Using partial fractions, integrate to get the solution above.

Example 1Finding the Logistic Function

A population grows logistically with carrying capacity $M = 1000$, growth rate $k = 0.2$, and initial population $P_0 = 100$. Find $P(t)$.

Compute $A$
$A = \frac{M - P_0}{P_0} = \frac{1000 - 100}{100} = \frac{900}{100} = 9$
Write $P(t)$
$P(t) = \frac{1000}{1 + 9e^{-0.2t}}$
Example 2Analyzing Logistic Growth

For the logistic model $P(t) = \frac{500}{1 + 4e^{-0.3t}}$, find the carrying capacity, initial population, and population after 10 years.

Carrying capacity
$M = 500$ (the numerator)
Initial population
$P(0) = \frac{500}{1 + 4} = \frac{500}{5} = 100$
Population at $t=10$
$P(10) = \frac{500}{1 + 4e^{-3}} \approx \frac{500}{1 + 4(0.0498)} = \frac{500}{1 + 0.1992} = \frac{500}{1.1992} \approx 416.9$

📌 Key Features of Logistic Growth

FeatureValueSignificance
Carrying capacity$\lim_{t \to \infty} P(t) = M$Population stabilizes at $M$
Initial population$P(0) = \frac{M}{1+A}$Given by $P_0$
Maximum growth rateOccurs when $P = M/2$Inflection point of the logistic curve
Growth rate at $P = M/2$$\frac{dP}{dt} = \frac{kM}{4}$Fastest growth happens at half the carrying capacity
📌 Inflection Point

The logistic curve has an inflection point at $P = M/2$. This is where the population is growing most rapidly. For $P < M/2$, growth accelerates; for $P > M/2$, growth decelerates.

Example 3Finding When Growth is Fastest

For $P(t) = \frac{1000}{1 + 9e^{-0.2t}}$, find the time when the population is growing fastest.

Fastest growth at $P = M/2$
$M = 1000$, so fastest growth when $P = 500$
Solve $P(t) = 500$
$500 = \frac{1000}{1 + 9e^{-0.2t}}$ → $1 + 9e^{-0.2t} = 2$ → $9e^{-0.2t} = 1$ → $e^{-0.2t} = \frac{1}{9}$ → $-0.2t = \ln(1/9) = -\ln 9$ → $t = \frac{\ln 9}{0.2} = 5\ln 9 \approx 5(2.197) \approx 10.99$
⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page