DIFFERENTIAL EQUATIONS • APPLICATIONS OF FIRST-ORDER ODES

Exponential Growth & Decay — Exponential Growth and Decay

Discover how one simple differential equation models populations, radioactive decay, and compound interest.

Historical Context & Motivation

Long before calculus was formalized, people noticed a curious pattern in nature: some quantities grow or shrink at a rate proportional to their current size. A savings account earns interest on the money already in it, and a colony of bacteria reproduces faster when there are more bacteria to reproduce. The mathematical description of this behavior — exponential growth and decay — became one of the most important applications of differential equations, connecting abstract math to real-world phenomena.

1683
Jacob Bernoulli & Compound Interest
While studying how compound interest grows when compounded more and more frequently, Jacob Bernoulli discovered the constant e ≈ 2.71828, the natural base of exponential functions.
1798
Malthus & Population Growth
Thomas Malthus published An Essay on the Principle of Population, arguing that unchecked populations grow exponentially while food supplies grow linearly — a clash that shapes ecology to this day.
1896
Rutherford & Radioactive Decay
Ernest Rutherford introduced the concept of half-life, showing that radioactive substances decay exponentially. This gave scientists a powerful tool for dating rocks and archaeological artifacts.
1920s
Newton's Law of Cooling Formalized
Although Newton proposed his cooling law in the 1700s, its precise formulation as an exponential decay differential equation became standard in 20th-century physics and engineering courses.

The thread connecting all these discoveries is a single question: what happens when the rate of change of a quantity is proportional to the quantity itself? Answering that question leads us to the most fundamental first-order ordinary differential equation (ODE) and its elegant exponential solution.

Core Principles & Definitions

Exponential growth and decay rest on a beautifully simple idea. Before diving into the math, let's nail down the foundational concepts that make everything else click.

1

Proportional Rate of Change

The rate at which a quantity changes is directly proportional to how much of it exists right now. More stuff → faster change. Less stuff → slower change.
2

The Growth/Decay Constant k

The constant k determines behavior. When k > 0, the quantity grows exponentially. When k < 0, it decays exponentially. The magnitude of k controls the speed.
3

Initial Condition y₀

Every exponential model needs a starting value y₀ — the amount present at time t = 0. This anchors the exponential curve to a specific real-world situation.
4

The Natural Base e

The number e ≈ 2.71828 appears naturally as the base of continuous exponential processes. It is the unique number whose exponential function is its own derivative.
KEY TAKEAWAY
Think of exponential growth like a snowball rolling down a hill. The bigger the snowball gets, the more snow it picks up per roll, which makes it even bigger, which makes it pick up even more snow. Exponential decay is like the opposite — imagine a bucket with a hole in the bottom. The less water that's left, the slower it drains, so it never quite empties completely. In both cases, the current amount controls the speed of change.

Visual Explanation

The graph below shows two curves emerging from the same initial value. The cyan curve represents exponential growth (k > 0), rising ever more steeply as time passes. The violet curve represents exponential decay (k < 0), falling toward zero but never quite reaching it. Notice how both curves are smooth and continuous — the rate of change adjusts seamlessly at every instant.

Both curves start at y₀ (gold dot). The cyan growth curve accelerates upward, while the violet decay curve approaches zero asymptotically — it gets closer and closer to zero but never touches it.

A critical feature of exponential decay is the horizontal asymptote at y = 0. The decaying quantity approaches zero forever but mathematically never arrives. In practice, the amount becomes negligibly small after enough time passes. For exponential growth, there is no upper limit — the curve climbs without bound, which is why real-world growth eventually encounters constraints that slow it down.

Mathematical Framework

Everything begins with a single first-order ordinary differential equation (ODE). We say that the rate of change of y with respect to time t is proportional to y itself. Let's write that statement as an equation and then solve it.

THE FUNDAMENTAL ODE
dy/dt = k · y
y = quantity at time t, k = growth/decay constant, dy/dt = instantaneous rate of change of y

To solve this ODE, we use a technique called separation of variables. The idea is to gather all the y terms on one side and all the t terms on the other, then integrate both sides. Starting from dy/dt = k · y, we rewrite it as (1/y) dy = k dt. Integrating both sides gives ln|y| = kt + C, where C is the constant of integration. Exponentiating both sides yields y = ekt + C = eC · ekt. We rename eC as y₀ (the initial amount when t = 0), giving us the general solution.

GENERAL SOLUTION
y(t) = y₀ · e^(kt)
y₀ = initial value (amount at t = 0), e ≈ 2.71828, k > 0 → growth, k < 0 → decay
HALF-LIFE FORMULA
t₁/₂ = ln(2) / |k| ≈ 0.693 / |k|
t₁/₂ = half-life, the time for a decaying quantity to drop to half its value. This formula comes from setting y(t) = y₀/2 and solving for t.
DOUBLING TIME
t_double = ln(2) / k ≈ 0.693 / k
For growth (k > 0), the doubling time is how long it takes the quantity to double. Notice it's the same formula as half-life — growth and decay are mirror images.
💡 Why e and not 2 or 10?
You can write exponential models using any base: y = y₀ · 2t/t₁/₂ works perfectly for half-life problems. However, base e makes the calculus cleanest because the derivative of ekt is simply k · ekt. No extra conversion factors appear, which is why differential equations courses prefer base e.

Applications & Classification

The exponential model dy/dt = ky appears across nearly every branch of science. The diagram below categorizes the most common applications by whether they involve growth or decay, and highlights the specific meaning of k in each context.

All six applications share the identical ODE structure. Growth applications have a positive k, while decay applications have a negative k. The physical meaning of k differs in each context, but the mathematical solution is always y(t) = y₀ · ekt.
Common exponential growth and decay scenarios
ApplicationWhat is y?What is k?Growth or Decay?
Bacteria populationNumber of bacteriaNet reproduction rateGrowth (k > 0)
Savings accountAccount balance ($)Interest rateGrowth (k > 0)
Carbon-14 datingMass of C-14 remaining−0.000121 per yearDecay (k < 0)
Coffee coolingTemperature differenceCooling constantDecay (k < 0)

Worked Example

Let's work through a complete radioactive decay problem step by step. This example brings together the ODE, the general solution, and the half-life formula.

Radioactive Decay of Iodine-131
1
Step 1 — Read the ProblemA hospital has 200 mg of Iodine-131, which has a half-life of 8 days. How much remains after 20 days?
2
Step 2 — Identify Given ValuesWe know y₀ = 200 mg, t₁/₂ = 8 days, and we want y(20). The model is y(t) = y₀ · ekt.
3
Step 3 — Find the Decay Constant kUsing the half-life formula: k = −ln(2) / t₁/₂ = −0.693 / 8 ≈ −0.0866 per day. The negative sign confirms this is decay.
k ≈ −0.0866 day⁻¹
4
Step 4 — Substitute into the General Solutiony(20) = 200 · e(−0.0866)(20) = 200 · e−1.732. Now we evaluate e−1.732 using a calculator.
5
Step 5 — Calculate the Final Answere−1.732 ≈ 0.1768. So y(20) = 200 × 0.1768 ≈ 35.4 mg.
y(20) ≈ 35.4 mg of Iodine-131 remaining
6
Step 6 — Verify with Half-LivesAs a sanity check: 20 days is 2.5 half-lives. After 1 half-life: 100 mg. After 2: 50 mg. After 2.5: somewhere between 50 and 25 mg. Our answer of 35.4 mg falls in that range. ✓
Pro Tip: The Sanity Check
Always estimate your answer using whole half-lives (or doubling times) before reaching for a calculator. If your exact answer doesn't fall in the expected range, you've likely made an error in finding k or setting up the equation.

Strengths & Limitations

The exponential model is powerful because of its simplicity, but that simplicity also means it has clear boundaries. Understanding when the model works well — and when it breaks down — is just as important as knowing how to use it.

When the exponential model shines — and when it doesn't
StrengthsLimitations
Applies to a huge range of natural processes — biology, chemistry, physics, finance.Assumes unlimited resources; real populations hit carrying capacities and stop growing exponentially.
Only one parameter (k) to determine — easy to calibrate from data.Requires constant relative growth/decay rate; many systems have rates that change over time.
Exact closed-form solution exists (no numerical approximation needed).Predicts unrealistically large values for long-term growth; no real quantity grows forever.
Works extremely well for short-term predictions and early-stage phenomena.Ignores interactions between individuals (competition, cooperation) in population contexts.
KEY TAKEAWAY
Think of the exponential model as a first draft. It captures the essential behavior early on, much like a straight-line approximation works near a curve's tangent point. For real-world accuracy over longer time spans, you often need to upgrade to more sophisticated models like the logistic equation (which adds a carrying capacity) or systems of ODEs (which account for interacting species).

Connection to Advanced Models

Once you master the basic exponential model, you'll be ready to tackle its more realistic cousins. The table below shows how the simple dy/dt = ky equation evolves as we add complexity.

Exponential vs. Logistic growth models
FeatureExponential ModelLogistic Model (Advanced)
ODEdy/dt = kydy/dt = ky(1 − y/K)
Carrying CapacityNone — unbounded growthK — maximum sustainable population
Long-term BehaviorGrows/decays without limitLevels off at K (S-shaped curve)
When to UseShort-term, unrestricted scenariosLong-term growth with resource limits
Solution TypePure exponentialSigmoidal (S-curve)

Notice that the logistic equation contains the exponential equation as a special case: when y is much smaller than K, the factor (1 − y/K) is approximately 1, so the logistic equation reduces to dy/dt ≈ ky. This means every logistic growth process starts out looking exponential. The exponential model is therefore your foundation — the building block for everything that comes next in differential equations.

🔭 Looking Ahead
In more advanced courses, you'll encounter systems of ODEs (like predator-prey models), partial differential equations (for heat flow and diffusion), and stochastic models (for random processes). All of them trace their lineage back to the humble exponential equation dy/dt = ky.

Practice Problems

Test your understanding with these five problems, arranged from conceptual to challenging. Try each one before reading the answer.

PROBLEM 1CONCEPTUAL
If a quantity obeys the equation dy/dt = ky and k = −0.05, is the quantity growing or decaying? How can you tell just by looking at the sign of k, without solving the equation?
PROBLEM 2BASIC CALCULATION
A bacteria colony starts with 500 bacteria and has a growth constant of k = 0.03 per hour. How many bacteria are there after 10 hours? Use y(t) = y₀ · ekt.
PROBLEM 3INTERMEDIATE
A radioactive sample decays from 80 grams to 20 grams in 12 years. Find the decay constant k and the half-life of the substance.
PROBLEM 4APPLIED
You invest $2,000 in a savings account that earns 4.5% annual interest compounded continuously. The model is A(t) = 2000 · e0.045t. (a) How much money do you have after 15 years? (b) How many years until your investment doubles?
PROBLEM 5CRITICAL THINKING
A town's population follows the exponential model with k = 0.02 per year. The current population is 50,000. The town's water supply can support at most 120,000 people. If the exponential model were accurate forever, when would the population exceed the water supply? Explain why the exponential model becomes unreliable as the population approaches 120,000, and name a more appropriate model.

Lesson Summary

The exponential growth and decay model is built on a single first-order ODE: dy/dt = ky, which states that the rate of change is proportional to the current amount. Its solution is y(t) = y₀ · e^(kt), where y₀ is the initial value and k is the growth/decay constant. When k > 0, the quantity grows without bound; when k < 0, it decays toward zero.

Key derived formulas include the half-life (t₁/₂ = ln 2 / |k|) for decay and the doubling time (t_double = ln 2 / k) for growth. The model applies to population dynamics, radioactive decay, compound interest, and Newton's law of cooling. While incredibly versatile for short-term predictions, the exponential model assumes a constant relative rate and unlimited resources, so for long-term scenarios a logistic model with a carrying capacity is often more appropriate.

Varsity Tutors • Differential Equations • Exponential Growth & Decay