Exponentials
Repeated multiplication instead of repeated addition. Exponential growth looks harmless for a long time and then becomes overwhelming — watch it outrun a polynomial that starts far ahead of it.
Repeated multiplication instead of repeated addition. Exponential growth looks harmless for a long time and then becomes overwhelming — watch it outrun a polynomial that starts far ahead of it.
Growth proportional to size — slow to start, then impossible to ignore.
In y = b^x the variable sits in the exponent. Each step of 1 in x multiplies y by b, rather than adding to it. That single difference is what separates exponential from linear behaviour.
Slide the base across 1 and watch the curve flip from climbing to falling.
Keep the polynomial comparison on and look at the left of the plot: x³ is far ahead. Now slide x rightward. There is a crossover point, and after it 2^x leaves x³ hopelessly behind.
This holds for any polynomial and any base above 1 — exponential growth always overtakes eventually. It is the reason exponential-time algorithms are considered intractable no matter how fast the hardware, and the reason a "small" compounding effect is never actually small.
A defining feature of exponentials: the time to double is constant. It takes just as long to go from 1 to 2 as from a million to two million. The panel computes this live — at base 2 it is exactly 1 step, at base 1.1 about 7.3 steps.
Set the base to e ≈ 2.71828. This is the base at which the curve's slope equals its own height at every point:
No other base has this property, which is why e turns up throughout calculus and why exp is the exponential in almost every ML formula — softmax, sigmoid, Gaussian densities and exponential learning-rate decay all use it.
Exponentials multiply rather than add, so they have a constant doubling time and eventually beat any polynomial. Bases above 1 explode, bases below 1 decay toward zero, and base e is the one whose slope equals its value — which is why it underlies softmax, sigmoid and every decay schedule you will configure.
Repeated multiplication instead of repeated addition. Exponential growth looks harmless for a long time and then becomes overwhelming — watch it outrun a polynomial that starts far ahead of it.