Calculus BC · Unit 7: Differential Equations · 16 min read · Updated 2026-05-10
Logistic Models & Euler's Method — AP Calculus BC
AP Calculus BC · Unit 7: Differential Equations · 16 min read
1. Logistic Differential Equations★★☆☆☆⏱ 4 min
Logistic differential equations were developed to fix the limitation of unconstrained exponential growth models, which assume unlimited resources and do not match real-world growth patterns. They add a damping term that slows growth as the quantity approaches a maximum sustainable size.
\frac{dP}{dt} = kP\left(1 - \frac{P}{K}\right)
$k$ = intrinsic growth rate (growth rate when population is very small)
$K$ = carrying capacity (maximum sustainable size of the quantity)
$P$ = size of the quantity at time $t$
The closed-form analytic solution (derived via separation of variables) is: $P(t) = \frac{K}{1 + Ae^{-kt}}$, where $A = \frac{K - P_0}{P_0}$ from initial condition $P(0) = P_0$. A key exam property is that growth rate is maximized at $P = \frac{K}{2}$, the inflection point of the S-shaped logistic curve.
2. Equilibrium Solutions and Stability★★★☆☆⏱ 4 min
An equilibrium solution of a differential equation is a constant solution $P=C$ where $\frac{dP}{dt} = 0$ for all $t$. For the logistic DE, there are exactly two equilibrium solutions, which can be classified by their stability.
For logistic models: $P=0$ is unstable (any small positive population grows away from 0), and $P=K$ is stable (any small deviation from $K$ decays back to $K$).
3. Euler's Method for Numerical Approximation★★★☆☆⏱ 5 min
Many differential equations do not have closed-form analytic solutions, so we use numerical methods to approximate solution values. Euler's method uses tangent line approximations to step from a known initial value to a target point.
Smaller step sizes produce more accurate approximations but require more calculation steps. To determine if your approximation is an overestimate or underestimate, use concavity: if $\frac{d^2y}{dx^2} > 0$ (concave up), the approximation is an underestimate; if $\frac{d^2y}{dx^2} < 0$ (concave down), it is an overestimate.
4. Real-World Carrying Capacity★★☆☆☆⏱ 3 min
Carrying capacity $K$ is the maximum sustainable size of a population or quantity that can be supported indefinitely with limited resources. Temporary values above $K$ are possible, but growth becomes negative, pushing the quantity back to $K$ over time.
Logistic models with carrying capacity are used across many contexts tested on the AP exam: population biology, disease spread, product adoption, and chemical reactions. A common free-response requirement is to interpret $K$ directly in the context of the problem, not just give a generic definition.
Common Pitfalls
Why: Careless algebraic rearrangement when given a non-standard factored DE
Why: Rushing through steps or confusing Euler's method with other numerical techniques
Why: Skipping steps to save time on the exam
Why: Oversimplifying the definition of carrying capacity
Why: Failing to calculate the required number of steps before starting arithmetic