What Is an Exponential Function and Why Does It Grow So Fast?

A pond looks nearly empty right up until the day it isn't. That's not a fluke, it's what exponential growth always does. Here's the intuition, the story, and the one property that explains why it accelerates.

By Petrus Sheya

July 22, 2026 · 5 min read

A single lily pad lands on a pond. Every day, it doubles. On day 47, the pond is exactly half covered. On day 48, it's completely full.

Quick question: on day 46, how covered was the pond?

Just a quarter. One day before that, an eighth. For weeks, this pond looks basically empty. Then, in the space of a single day, it's gone. That's the entire personality of exponential growth: it looks like nothing is happening, right up until it's too late to ignore.

Why does growth behave like this? Let's rebuild it from scratch.


Adding vs. multiplying

Most growth we're comfortable with is additive. You get a 50raiseeveryyear.Yousave50 raise every year. You save 10 a week. Add the same fixed amount, over and over, and your total climbs in a straight line.

Exponential growth does something different. Instead of adding a fixed amount each step, it multiplies by a fixed factor. And multiplying a bigger number gives you a bigger jump than multiplying a smaller one did. The increments themselves grow.

One counter adds 4 a day. The other doubles every 3 days. Scrub through the days and watch who's really ahead.

LINEAR: +4/dayEXPONENTIAL: ×2 every 3 days
Linear1.0
Exponential1.0
Currently aheadexponential
Ratio E ÷ L1.00×

Scrub the slider forward. For a long stretch, the linear counter is winning, comfortably. It has a head start and a steady, generous pace. But watch what happens as the days pile up... the exponential counter isn't just catching up. It's accelerating past, and it never looks back.

Linear growth adds the same amount every step. Exponential growth adds a bigger amount every step, because what it adds is a fraction of an ever-growing pile.


The chessboard that breaks math

There's an old legend about a king who wanted to reward the inventor of chess. The inventor asked for something that sounded modest: one grain of rice on the first square of the chessboard, two on the second, four on the third, doubling all the way to the 64th square.

The king laughed and agreed. He should not have agreed.

Legend says a king offered a reward: one grain of rice on square one, doubled on every square after. Slide through the chessboard.

Square 1: 1 grain
On this square1
Total so far1
That's abouta few grains in your palm

Slide through the squares. Nothing dramatic happens for the first twenty or so, just some rice. Then keep going... by the far end of the board, the "reward" outweighs anything a kingdom could produce.

Each square's value depends entirely on the one before it. That's the mechanism. Growth feeds on itself: the bigger the pile gets, the bigger the next jump gets, which makes the pile bigger still.


Putting it in symbols

Now that the idea is solid, let's name it. We write an exponential function as:

f(x)=abxf(x) = a \cdot b^x

Here aa is the starting amount (one lily pad, one grain of rice), bb is the growth factor you multiply by at every step, and xx counts the steps. For the lily pad, a=1a = 1 and b=2b = 2: each day, multiply by 2. For the chessboard, it's the same b=2b = 2, with xx counting the squares.

Compare that to a linear function, f(x)=a+bxf(x) = a + bx, where you add bb each step instead of multiplying by it. Same letters, completely different behavior, because addition and multiplication age very differently.

If b>1b > 1, you get growth. If 0<b<10 < b < 1, you get decay, the same mechanism running in reverse, shrinking toward zero instead of exploding away from it. If b=1b = 1, nothing happens at all, every step multiplies by 1 and the value sits flat.


Why does it accelerate? The real secret

Here's the interesting part. "It's multiplication" explains that exponential growth speeds up, but not exactly why, not in a way you could use to predict anything. For that, we need one more idea.

At any point on an exponential curve, how fast the function is growing (its slope) is proportional to how big the function already is. A small pile grows slowly. A big pile grows fast. And because the growth rate depends on the size, and the size keeps increasing, the growth rate keeps increasing too. It's a feedback loop, and it's a fixed, precise ratio, not a vague trend.

Drag the dot along the curve. Height and slope both change, but watch their ratio.

Height y4.00
Slope2.77
Slope ÷ height0.693
Always equalsln 2 ≈ 0.693

Drag the dot anywhere along the curve. The height changes. The slope of the tangent line changes right along with it. But look at the ratio between them, slope divided by height... it never moves. Drag from the low end to the high end and that number stays locked.

We write this relationship as:

dydx=ky,where k=lnb\frac{dy}{dx} = k \cdot y, \quad \text{where } k = \ln b

This little equation is the definition of exponential growth: the rate of change is proportional to the current amount. When the base is a special number called e2.718e \approx 2.718, the constant kk becomes exactly 1, which is why exe^x shows up everywhere in math, it's the exponential function whose slope, at every single point, equals its own height.


From growth rate to doubling time

Let's make this practical. Say your investments grow at some percentage every year. Or a bacteria colony grows some percentage every hour. How long until it doubles?

Set a growth rate per period. Watch how long it actually takes to double, and how that time shrinks as the rate climbs.

2× at t=7.34× at t=14.5
Doubling time7.27 periods
After 2 doublingsalways 4×
Feels likea strong investment return, compounding for decades

Slide the rate up and down. You might guess that doubling the growth rate cuts the doubling time exactly in half. For small rates, that's roughly true. But push the rate higher and the relationship bends, doubling time keeps shrinking, but by smaller and smaller amounts, because the formula underneath is a ratio of logarithms, not a straight line.

One thing never bends, though: no matter what rate you pick, two doubling periods always, exactly, quadruples the value. That invariant is the same one you just watched in the tangent line above, just wearing a different outfit.


The short version

Exponential growth multiplies by a fixed factor instead of adding a fixed amount, which means each step's increase depends on how big things already are. That single feedback loop, rate proportional to size, is the entire mechanism. It's why a lily pad pond looks empty until it's suddenly full, why a doubling chessboard bankrupts a kingdom, and why compound interest, viral spread, and bacterial colonies all share the same underlying curve.

The next time something "suddenly" explodes, a pandemic, a viral post, a savings account after thirty years, check whether it was growing by a fixed amount or a fixed factor. If it's the second one, the surprise was baked in from day one. You just weren't far enough along the curve to see it coming.


All visualizations are interactive React components running entirely in your browser. No libraries beyond React, all curves computed and drawn live via SVG.