Exponential Functions

Part 14, Chapter 14: Functions and Their Graphs

Learning objectives

  • Define the exponential function axa^x and understand its properties
  • Solve basic exponential equations
  • Describe growth and decay behavior

Exponentials describe everything that doubles. Bacterial populations, compound interest, viral infections, radioactive decay, the cooling of coffee, the spread of rumours, whenever the rate of change is proportional to the amount present, the answer is an exponential. The function bxb^x is so important that calculus invents a special base ee just so its derivative looks clean.

Definition and laws of exponents

For a positive real number bneq1b \neq 1, the exponential function with base bb is f(x)=bxf(x) = b^x. The laws of exponents are not new, they extend the integer rules you already know:

bx+y=bxcdotby,quadbxy=dfracbxby,quad(bx)y=bxy,quadb0=1.b^{x + y} = b^x \cdot b^y, \quad b^{x - y} = \dfrac{b^x}{b^y}, \quad (b^x)^y = b^{xy}, \quad b^0 = 1.

The miracle is that the same identities hold for any real exponent, not just integers. Defining bpib^{\pi} rigorously requires a limit; for now, take the laws on faith and use them.

Growth vs decay

If b>1b > 1, the function bxb^x is strictly increasing: it grows without bound as xto+inftyx \to +\infty and approaches 00 as xtoinftyx \to -\infty. This is exponential growth. If 0<b<10 < b < 1, the function is strictly decreasing, exponential decay. The two cases are mirror images: 2x2^x and (1/2)x=2x(1/2)^x = 2^{-x} are reflections of each other across the yy-axis.

Key features

  • Domain: all real numbers (infty,infty)(-\infty, \infty).
  • Range: (0,infty)(0, \infty), an exponential is always positive.
  • The graph passes through (0,1)(0, 1) because b0=1b^0 = 1.
  • The xx-axis is a horizontal asymptote, the curve hugs it but never touches.

The natural base ee

Among all bases there is one distinguished choice, Euler's number

e=limntoinftyleft(1+dfrac1nright)napprox2.71828ldotse = \lim_{n \to \infty} \left(1 + \dfrac{1}{n}\right)^n \approx 2.71828\ldotsntoinftyleft(1+dfrac1nright)napprox2.71828ldots

The function exe^x is uniquely characterised by the property that it equals its own derivative: dfracddxex=ex\dfrac{d}{dx} e^x = e^x. That property, combined with the law ex+y=exeye^{x+y} = e^x e^y, is the reason exe^x is the natural language of calculus and differential equations.

Where this shows up
  • Biology: Population growth (E. coli in a Petri dish, viral case counts in an outbreak) follows N(t)=N_0ertN(t) = N_0 e^{rt} until resources run low; rr is the growth rate, and doubling time is ln2/r\ln 2 / r.
  • Finance: Continuously compounded interest: A=PertA = P e^{rt}. Every fixed-income pricing model on Wall Street uses the exponential function as its core building block.
  • Physics: Radioactive decay is N(t)=N_0elambdatN(t) = N_0 e^{-\lambda t}; carbon-14 dating uses the half-life of 14C{}^{14}C (about 5,730 years) plugged into this formula to date archaeological samples.

(The widget plots bxb^x in one colour and logb(x)\log_b(x)b(x) in another. Slide the base bb and watch both curves morph together. The dashed diagonal is y=xy = x, the curves reflect across it because logarithm is the inverse of exponential.)

Solving exponential equations

To solve 2x=322^x = 32, express both sides with the same base: 32=2532 = 2^5, so x=5x = 5. More generally, the one-to-one property of exponentials says: if bx=byb^x = b^y then x=yx = y. For trickier cases like 8x=2128^x = 2^{12}, rewrite the bases: (23)x=212(2^3)^x = 2^{12}, so 23x=2122^{3x} = 2^{12}, giving x=4x = 4.

Try it

  • Predict first: what does y=1xy = 1^x look like for any xx? Slide the base to b=1b = 1 in the widget, observe the curve, and explain why.
  • Predict first: how should the curve y=0.5xy = 0.5^x relate to y=2xy = 2^x? Set b=0.5b = 0.5 and describe in one sentence what you observe.
  • Solve 9x=279^x = 27 by hand. Check your answer by evaluating mentally; then check with the widget by reading off the appropriate intersection.

Pause: why must bb be positive and not equal to 11? What goes wrong if b=0b = 0? If b=1b = 1? If b=1b = -1?

Try it in code

A trap to watch for

Students see two exponents in a sum and try to add them. ea+bneqea+ebe^{a+b} \neq e^a + e^b. The correct identity is ea+b=eacdotebe^{a+b} = e^a \cdot e^b, sum in the exponent becomes product of values, not sum of values. Sanity check with small numbers: e1+1=e2approx7.39e^{1 + 1} = e^2 \approx 7.39, while e1+e1=2eapprox5.44e^1 + e^1 = 2e \approx 5.44. These are not equal. The reason the trap is sticky is that addition feels distributive over everything in arithmetic; with exponentials, addition is in the exponent, and the rule changes. Whenever you see an exponential, ask: is the operation outside the exponent linear? Or is it the law ba+b=babbb^{a+b} = b^a b^b?

What you now know

You can recognise an exponential function by its formula and its graph, apply the laws of exponents to simplify expressions, solve simple exponential equations by base-matching, and explain why the natural base ee is distinguished. The next section introduces the function that inverts the exponential, the logarithm, and shows you the three identities that turn complicated products into simple sums.

Quick check

Mark section complete →

References

  • Lang, S. (1971). Basic Mathematics. Springer. Chapter 13 §4, exponential function definition and basic identities.
  • Stewart, J. (2015). Calculus: Early Transcendentals, 8th ed. Cengage. Sections 1.5 and 6.2, exponentials, growth/decay, and the natural base.
  • Maor, E. (1994). e: The Story of a Number. Princeton University Press. Historical and conceptual account of ee and the exponential function.

This page is prerendered for SEO and accessibility. The interactive widgets above hydrate on JavaScript load.