Еxponential

The exponential function is one of the most powerful and universal concepts in mathematics. In its simplest form, it describes a quantity that grows (or decays) at a rate proportional to its current value. The standard form is f(x) = a·eᵏˣ, where e ≈ 2.718 is Euler's number, but any base works – 2ˣ, 10ˣ, or even (1 + r)ˣ for compound interest. The defining feature is that the function's derivative equals itself (for eˣ) or is proportional to itself – growth feeds on growth.

Think of it this way – you have a savings account with 100% annual interest, compounded continuously. You start with 1 USD. After one year, you have about 2.718 USD (that is e¹). After two years, you have e² ≈ 7.39 USD. The growth is not linear; it accelerates because the interest you earn also starts earning interest. This is the essence of exponential growth – every new increment adds to the base that produces the next increment.

Both curves start slow, then shoot upward. eˣ (blue) grows slightly faster than 2ˣ (red) because e > 2. For negative x, both decay toward zero but never actually touch it.

Take a simple experiment – a colony of bacteria that doubles every hour. Start with one cell. After 1 hour you have 2, after 2 hours you have 4, after 3 hours – 8, after 10 hours – 1024, after 20 hours – over a million. This is 2ˣ. If the doubling time is shorter, the base becomes larger – 3ˣ would triple every hour. The natural exponential eˣ appears when the growth is continuous, not stepwise – it is the limit of (1 + 1/n)ⁿ as n goes to infinity.

The exponential function has several remarkable properties. First, e⁰ = 1 – any number to the zero power is 1, so all exponential curves pass through (0, 1). Second, eᵃ⁺ᵇ = eᵃ · eᵇ, which turns addition in the exponent into multiplication of values. Third, the derivative of eˣ is itself – this makes it the natural choice for differential equations in physics, biology, and finance. Fourth, the inverse of eˣ is the natural logarithm ln(x), so they undo each other.

What makes the exponential function so practically important is that it models real-world processes where the rate of change is proportional to the current amount. Radioactive decay follows e⁻ᵏᵗ – the more atoms you have, the faster they decay, leading to a characteristic half-life. Population growth (in ideal conditions) is exponential, though real ecosystems introduce limits. Charging and discharging capacitors follow exponential curves – the voltage rises quickly at first, then slows as it approaches the supply voltage.

In finance, compound interest is the classic example. If you invest 1000 USD at 5% annual interest compounded continuously, after t years you have 1000·e^(0.05t). After 10 years, that is about 1649 USD – not dramatically different from linear, but after 50 years it becomes 12,182 USD, and after 100 years it explodes to 148,413 USD. The longer the horizon, the more dramatic the difference between exponential and linear growth.

In computer science, exponential functions appear in algorithm complexity. An O(2ⁿ) algorithm becomes impractical very quickly – with n=10 it is 1024 operations, with n=20 it is over a million, and with n=30 it is over a billion. This is why exponential-time algorithms are only used for very small inputs. Conversely, exponential growth is the basis for Moore's Law – the number of transistors on a chip doubling roughly every two years – which drove the entire digital revolution.

In physics, exponential decay governs everything from cooling coffee (Newton's law of cooling) to the discharge of a capacitor and the absorption of light in a medium. The intensity of light passing through water decreases exponentially with depth – each meter absorbs a fixed fraction of the remaining light. This is why deep water looks dark.

Yet the exponential function also has serious limitations. It grows without bound, which means no physical system can follow it indefinitely – resources, space, or some other constraint always kick in. In population biology, the logistic growth model adds a carrying capacity to cap the exponential explosion. In electronics, no amplifier can keep increasing its output forever – it hits the supply rails. So exponential models are almost always short-term approximations.

Also, exponential growth can be deceptive. A 2% daily increase seems tiny, but over a year it multiplies by about 1.02³⁶⁵ ≈ 1377 – that is how compound interest can turn a small loan into a huge debt. This same property makes exponential curves easy to misread – they look flat for a long time, then suddenly shoot up, often catching people by surprise. This is why exponentials are at the heart of epidemics, technological adoption, and climate feedback loops – they can turn a slow start into an overwhelming wave.

For negative exponents, the function decays toward zero but never reaches it. This "asymptotic" behaviour means that, in theory, a radioactive substance never fully disappears – only becomes negligible. In practice, after about 10 half-lives, less than 0.1% remains.

The exponential function is the engine of change in nature, finance, and technology. It describes how small differences in rates can produce huge differences over time – the so-called "leverage" of exponential growth. For engineers, it is the solution to most linear differential equations. For data scientists, it is the basis for softmax functions, logistic regression, and activation functions like the sigmoid. For anyone who wants to understand how things grow, spread, or decay, the exponential function is not just a mathematical curiosity – it is a fundamental lens through which to see the world.