# Exponential models with differential equations

> AP Calculus AB · Unit 7: Differential Equations
> Source: https://www.owlsprep.com/study/ap-calculus-ab-u7-exponential-models-with-differential-equations/

This guide covers exponential models derived from differential equations, including core proportional growth/decay, doubling time, half-life, and Newton's Law of Cooling, all frequently tested on the AP Calculus AB exam.

**Prerequisites:** [Separation of variables for separable differential equations](https://www.owlsprep.com/study/ap-calculus-ab-u7-separable-differential-equations/); Derivative and antiderivative rules for exponential and logarithmic functions; Applying initial conditions to differential equations

## Learning objectives

- Translate verbal descriptions of proportional change to differential equations
- Solve exponential growth/decay models using separation of variables
- Calculate doubling time and half-life for exponential models
- Apply Newton's Law of Cooling to temperature problems

## Core Concept: Exponential Models

Exponential models are the most common applied differential equation type on the AP Calculus AB exam, accounting for 2-3% of total exam weight, appearing in both multiple-choice and free-response sections. These models describe quantities whose rate of change is proportional to their current size, matching many real-world phenomena from population growth to radioactive decay.

**Exponential Differential Equation Model** — A dynamic model where the rate of change of a quantity is directly proportional to the current value of the quantity, written as a first-order separable differential equation.

*Example:* Bacterial growth, radioactive decay, drug concentration, temperature change

## Core Proportional Growth and Decay Model

The fundamental relationship for any exponential model translates to a simple differential equation, where $k$ is the constant of proportionality:

$$\frac{dy}{dt} = ky$$

If $k>0$, the quantity grows exponentially; if $k<0$, the quantity decays exponentially. We solve this via separation of variables to get the general solution with initial condition $y(0)=y_0$:

**Derivation:** Derive the general solution for $\frac{dy}{dt} = ky$ with $y(0)=y_0$

1. Separate variables

   $$\frac{1}{y} dy = k dt$$
2. Integrate both sides

   $$\ln|y| = kt + C$$
3. Exponentiate to eliminate the logarithm

   $$|y| = e^{kt+C} = e^C e^{kt}$$
4. Simplify, letting $A = \pm e^C$ to account for absolute value

   $$y = A e^{kt}$$
5. Apply initial condition $y(0)=y_0$

   $$y_0 = A e^0 \implies A = y_0$$

*Conclusion:* The final solution for a basic exponential model is:

$$y(t) = y_0 e^{kt}$$

**Worked example:** A culture of bacteria grows at a rate proportional to the current number of bacteria. At $t=0$ hours, there are 200 bacteria. At $t=3$ hours, there are 480 bacteria. Write an explicit formula for $y(t)$, the number of bacteria at time $t$.

1. Apply the initial condition to the general solution

   $$y(t) = y_0 e^{kt}, \quad y_0 = 200 \implies y(t) = 200 e^{kt}$$
2. Substitute the known point $t=3, y=480$

   $$480 = 200 e^{3k} \implies 2.4 = e^{3k}$$
3. Solve for $k$

   $$\ln(2.4) = 3k \implies k = \frac{\ln(2.4)}{3} \approx 0.2918$$
4. Write the final formula

   $$y(t) = 200 e^{\left(\frac{\ln 2.4}{3}\right)t}$$

> **tip**
>
> Always check the sign of $k$ after solving: growth requires positive $k$, decay requires negative $k$. This catches 80% of common sign errors on the exam.

## Doubling Time and Half-Life

Doubling time (for growth) and half-life (for decay) are special cases that let you find $k$ directly without a second measurement, or calculate time to reach a specific quantity.

For exponential growth with doubling time $T_{\text{double}}$ (time to double the initial quantity):

$$T_{\text{double}} = \frac{\ln 2}{k}, \quad k = \frac{\ln 2}{T_{\text{double}}}$$

For exponential decay with half-life $T_{\text{half}}$ (time to reduce the initial quantity by half):

$$T_{\text{half}} = -\frac{\ln 2}{k}, \quad k = -\frac{\ln 2}{T_{\text{half}}}$$

Since $k$ is negative for decay, $T_{\text{half}}$ is always positive, matching its physical meaning.

**Worked example:** Radioactive Carbon-14 has a half-life of 5730 years. A fossil fragment has 12% of its original Carbon-14 remaining. How old is the fossil, to the nearest 100 years?

1. Calculate $k$ from the given half-life

   $$k = -\frac{\ln 2}{5730} \approx -1.21 \times 10^{-4}$$
2. Set up the equation for 12% remaining mass

   $$0.12 y_0 = y_0 e^{kt} \implies 0.12 = e^{kt}$$
3. Take natural logs and solve for $t$

   $$\ln(0.12) = kt \implies t = \frac{\ln(0.12)}{k}$$
4. Substitute $k$ and calculate

   $$t = 5730 \cdot \frac{\ln(0.12)}{-\ln 2} \approx 17500$$

> **tip**
>
> If the question asks for an exact form, leave your answer in terms of natural logarithms. Only approximate when explicitly asked for a numerical value.

## Newton's Law of Cooling

Newton's Law of Cooling is a modified exponential model that describes temperature change of an object relative to a constant ambient (surrounding) temperature. The rate of change of the object's temperature is proportional to the difference between the object's temperature and the ambient temperature.

$$\frac{dT}{dt} = k(T - T_s)$$

Where $T(t)$ is the object's temperature at time $t$, $T_s$ is the constant ambient temperature, and $k<0$ always. Solving via separation of variables gives the general solution for initial temperature $T(0)=T_0$:

$$T(t) = T_s + (T_0 - T_s)e^{kt}$$

This model works for both cooling (hot object in a cool room) and warming (cool object in a warm room): the object's temperature always approaches the ambient temperature over time.

**Worked example:** A hot cup of tea at 95°C is placed in a 20°C room. After 5 minutes, the temperature of the tea is 70°C. What is the temperature of the tea after 10 minutes?

1. Substitute known values into the general solution

   $$T(t) = 20 + (95 - 20)e^{kt} = 20 + 75 e^{kt}$$
2. Use the known point to find $e^{5k}$

   $$70 = 20 + 75 e^{5k} \implies \frac{2}{3} = e^{5k}$$
3. Simplify $e^{10k}$ without approximating $k$

   $$e^{10k} = (e^{5k})^2 = \left(\frac{2}{3}\right)^2 = \frac{4}{9}$$
4. Calculate $T(10)$

   $$T(10) = 20 + 75\left(\frac{4}{9}\right) \approx 53.3^\circ\text{C}$$

> **tip**
>
> Keep intermediate values in exact form to avoid rounding error that can cost you points on free-response questions.

## Common pitfalls

- **Wrong:** Writing Newton's Law of Cooling as $\frac{dT}{dt} = kT$ instead of $\frac{dT}{dt} = k(T-T_s)$
  - Why it fails: Confusing Newton's Law with the basic exponential growth/decay model; rate depends on temperature difference, not absolute temperature
  - Correct: When working on a temperature problem, always write the $(T-T_s)$ term immediately after $\frac{dT}{dt}$
- **Wrong:** Using the doubling time formula $k = \frac{\ln 2}{T}$ for half-life problems, resulting in a positive $k$ for decay
  - Why it fails: Mixing up growth and decay formulas and forgetting to check the sign of $k$
  - Correct: After calculating $k$ for any decay problem, confirm it is negative; add a negative sign if it is positive
- **Wrong:** Omitting the $+T_s$ term in the Newton's Law general solution, writing $T(t) = (T_0 - T_s)e^{kt}$
  - Why it fails: Forgetting to fully isolate $T$ after integrating, leaving the constant ambient temperature term on the wrong side
  - Correct: After integrating and simplifying, always fully isolate $T$ before applying the initial condition
- **Wrong:** Canceling $y_0$ when $y_0 = 0$, leading to an undefined model
  - Why it fails: Forgetting that exponential models assume non-zero initial quantity; zero initial quantity is a trivial special case
  - Correct: If the initial quantity is zero, the quantity stays zero for all time: write $y(t) = 0$ as your solution
- **Wrong:** Setting $A = e^C$ (only positive) after integrating $\ln|y|$, leading to incorrect sign for $y$
  - Why it fails: Forgetting the absolute value in $\ln|y|$ requires allowing $A$ to be negative to match the sign of the initial quantity
  - Correct: After solving for $A$ with the initial condition, confirm the sign of $A$ matches the sign of the initial quantity

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Core Exponential Differential Equation | $\frac{dy}{dt} = ky$ | Rate proportional to current quantity; $k>0$ = growth, $k<0$ = decay |
| General Core Solution | $y(t) = y_0 e^{kt}$ | $y_0 = y(0)$ is initial quantity at $t=0$ |
| Doubling Time (Growth) | $T_{\text{double}} = \frac{\ln 2}{k}, \quad k = \frac{\ln 2}{T_{\text{double}}}$ | Only for positive $k$ (exponential growth) |
| Half-Life (Decay) | $T_{\text{half}} = -\frac{\ln 2}{k}, \quad k = -\frac{\ln 2}{T_{\text{half}}}$ | Only for negative $k$ (exponential decay); $T_{\text{half}}$ is always positive |
| Newton's Law Differential Equation | $\frac{dT}{dt} = k(T - T_s)$ | $T_s$ = constant ambient temperature; $k$ is always negative |
| Newton's Law General Solution | $T(t) = T_s + (T_0 - T_s)e^{kt}$ | $T_0$ = initial object temperature at $t=0$ |
| Solving for $k$ | $k = \frac{\ln(y_1/y_0)}{t_1}$ | Used when given $y(t_1) = y_1$ for any exponential model |

## What's next

Exponential models are the foundational applied differential equation for AP Calculus AB, and they prepare you for the next core topic in Unit 7: logistic differential equation models, which add a carrying capacity to population growth to account for limited resources. Without mastering how to translate a verbal rate description to a differential equation, solve it via separation of variables, and interpret the result in context, you will not be able to correctly set up or solve logistic models, which frequently appear on FRQ sections of the exam. Beyond Unit 7, exponential models connect to integration applications and improper integrals, and they are a core tool for any real-world application of calculus to dynamic systems.

- [Applications of Integration Overview](https://www.owlsprep.com/study/ap-calculus-ab-u8-overview/)
- [Average value of a function on an interval](https://www.owlsprep.com/study/ap-calculus-ab-u8-average-value-of-a-function/)
- [Position, velocity, acceleration via integration](https://www.owlsprep.com/study/ap-calculus-ab-u8-position-velocity-acceleration-via-integration/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-calculus-ab-u7-exponential-models-with-differential-equations/
