The differential equation $\frac{dy}{dt} = ky$ models situations where the rate of change of a quantity is proportional to the quantity itself. This leads to exponential growth when $k > 0$ and exponential decay when $k < 0$. This model appears in population growth, radioactive decay, compound interest, and many other real-world phenomena.

🎯 In this section you will learn

📌 The Exponential Model

$$ \frac{dy}{dt} = ky \quad \Longrightarrow \quad y = y_0 e^{kt} $$
where $y_0 = y(0)$ is the initial quantity
💡 Derivation

This is a separable differential equation: $\frac{dy}{y} = k\, dt$ → $\ln|y| = kt + C$ → $y = e^{kt + C} = y_0 e^{kt}$.

Example 1Population Growth

A bacteria culture starts with 500 bacteria and grows at a rate proportional to its size. After 3 hours, there are 8000 bacteria. Find the number after 5 hours.

General solution
$P(t) = P_0 e^{kt} = 500 e^{kt}$
Use $P(3)=8000$ to find $k$
$8000 = 500 e^{3k}$ → $e^{3k} = 16$ → $3k = \ln 16 = 4\ln 2$ → $k = \frac{4\ln 2}{3}$
Find $P(5)$
$P(5) = 500 e^{5k} = 500 e^{5 \cdot \frac{4\ln 2}{3}} = 500 e^{\frac{20}{3}\ln 2} = 500 \cdot 2^{20/3} \approx 500 \cdot 101.6 \approx 50,800$
Example 2Radioactive Decay (Half-Life)

A radioactive substance decays from 100 mg to 25 mg in 8 days. Find the half-life.

General solution
$A(t) = A_0 e^{kt} = 100 e^{kt}$ (note $k < 0$)
Use $A(8)=25$ to find $k$
$25 = 100 e^{8k}$ → $e^{8k} = 0.25 = \frac{1}{4}$ → $8k = \ln(1/4) = -2\ln 2$ → $k = -\frac{\ln 2}{4}$
Half-life: $A(t) = A_0/2$
$\frac{A_0}{2} = A_0 e^{kt}$ → $\frac{1}{2} = e^{kt}$ → $kt = \ln(1/2) = -\ln 2$
Solve for $t$
$-\frac{\ln 2}{4} \cdot t = -\ln 2$ → $t = 4$ days
Example 3Doubling Time

An investment grows at a rate proportional to its value. If it doubles in 10 years, what is the growth rate $k$?

📌 Key Formulas

ConceptFormula
Growth/Decay Equation$y = y_0 e^{kt}$
Half-Life ($t_{1/2}$)$t_{1/2} = \frac{\ln 2}{k}$ (for decay, $k$ is positive magnitude)
Doubling Time ($T_2$)$T_2 = \frac{\ln 2}{k}$ (for growth, $k > 0$)
Find $k$ from data$k = \frac{1}{t} \ln\left(\frac{y}{y_0}\right)$
Example 4Newton's Law of Cooling

A cup of coffee at 90°C is placed in a room at 20°C. The temperature $T$ satisfies $\frac{dT}{dt} = k(T - 20)$. After 5 minutes, the coffee has cooled to 80°C. Find $k$.

Let $u = T - 20$
Then $\frac{du}{dt} = k u$, so $u(t) = u_0 e^{kt}$
Initial condition
$u_0 = T(0) - 20 = 90 - 20 = 70$
Use $T(5)=80$
$u(5) = 80 - 20 = 60 = 70 e^{5k}$ → $e^{5k} = \frac{60}{70} = \frac{6}{7}$ → $k = \frac{1}{5} \ln\left(\frac{6}{7}\right) \approx -0.0308$
⚠️ Common Mistakes
🔍 Key Takeaways
← Back to Module Page