Modeling Change Over Time

Using Calculus to predict the future of dynamic systems.

The universe is rarely static. Populations grow, planets orbit, coffee cools, and economies fluctuate. Modeling change over time is the primary reason calculus was invented. By writing equations that describe how something changes (the derivative), we can predict what that thing will be in the future (the function).

1. Exponential Growth and Decay

The simplest model of change is when the growth rate is proportional to the current size. For example, a colony of bacteria grows faster when there are more bacteria.

The Model:
dP/dt = k · P
(Rate of change = Constant × Population)

When we solve this differential equation, we get the famous exponential function:

P(t) = P₀eᵏᵗ

If k is positive, it's growth (like compound interest). If k is negative, it's decay (like radioactive isotopes).

2. The Logistic Model

Exponential growth assumes infinite resources, but the real world has limits. Bacteria run out of food; populations run out of space. To model this, we add a "carrying capacity" (K).

[Image of exponential vs logistic growth graph]

The Logistic Equation slows down the growth as the population gets closer to K:

dP/dt = kP (1 - P/K)

Initially, when P is small, it looks like exponential growth. But as P approaches K, the term (1 - P/K) approaches zero, causing the growth rate to flatten out.

3. Modeling Motion

Physics is built on modeling change over time. If we know the position function s(t), calculus gives us the entire history of the object's motion:

  • Velocity v(t): The derivative of position (s'(t)). How fast it's moving.
  • Acceleration a(t): The derivative of velocity (v'(t)). How fast the speed is changing.

Conversely, if we know the forces acting on an object (Acceleration), we can integrate twice to predict exactly where the object will be at any time in the future.

4. Complex Systems (Predator-Prey)

Sometimes we track two changing populations that interact with each other, like foxes and rabbits.

  • If rabbits increase, foxes have more food, so foxes increase.
  • If foxes increase, they eat more rabbits, so rabbits decrease.
  • If rabbits decrease, foxes starve, so foxes decrease.

This creates a cyclic pattern known as the Lotka-Volterra equations.

[Image of predator prey cycle graph]

Calculus allows us to model these coupled rates of change to manage ecosystems and prevent extinction events.