Exponents, Logarithms, and Growth
exponent, logarithm, growth, change of base, exponential
1 Role
This page is the third step of the algebra-repair module.
It repairs one of the most common symbolic bottlenecks in later math:
- exponent rules that are only half remembered
- logarithms treated as mysterious buttons instead of inverse functions
- growth language that feels intuitive but not precise
- confusion between linear, polynomial, logarithmic, and exponential scales
2 First-Pass Promise
Read this page after Functions and Graph Reading.
If you stop here, you should still understand:
- the main exponent rules
- why logarithms undo exponentials
- how change of base works
- why exponential and logarithmic growth are fundamentally different
- how this page bridges into asymptotics, calculus, and probability
3 Why It Matters
This page matters because exponents and logs are everywhere:
- exponential decay in probability and statistics
- logarithms in information theory and entropy
- growth-rate comparison in asymptotic analysis
- exponential and log transforms in calculus and optimization
When this topic is shaky, later derivations become much harder than they need to be.
Often the real issue is not the big theorem. It is that the algebra around powers and logs is fragile.
4 Prerequisite Recall
- Functions and Graph Reading already treated exponentials and logarithms as functions, not only formulas
- inverse language matters here because logarithms reverse exponentials
- growth comparison is easier once you stop focusing only on exact numbers and start noticing scale
5 Intuition
An exponential function keeps multiplying by the same factor as the input increases by equal steps.
That is why
\[ 2^x \]
grows so differently from
\[ x^2. \]
A logarithm asks the inverse question:
what exponent produced this number?
So
\[ \log_2 32 = 5 \]
because
\[ 2^5 = 32. \]
That inverse viewpoint is the cleanest way to understand logs.
It also explains why exponentials grow quickly and logarithms grow slowly: they are inverse behaviors.
6 Formal Core
Definition 1 (Definition: Exponential Function) For a base \(a>0\) with \(a \ne 1\), an exponential function has the form
\[ f(x)=a^x. \]
Its output changes multiplicatively rather than additively.
Definition 2 (Definition: Logarithm) For a base \(a>0\) with \(a \ne 1\), the logarithm base \(a\) is defined by
\[ y=\log_a x \quad \Longleftrightarrow \quad a^y=x. \]
So \(\log_a x\) is the exponent needed to produce \(x\) from base \(a\).
Theorem 1 (Theorem Idea: Exponent Laws) For compatible values,
\[ a^m a^n = a^{m+n}, \]
\[ \frac{a^m}{a^n} = a^{m-n}, \]
\[ (a^m)^n = a^{mn}. \]
These laws work because exponents encode repeated multiplication.
Theorem 2 (Theorem Idea: Logarithm Laws) For positive inputs,
\[ \log_a(xy)=\log_a x+\log_a y, \]
\[ \log_a\!\left(\frac{x}{y}\right)=\log_a x-\log_a y, \]
\[ \log_a(x^r)=r\log_a x. \]
These are the logarithmic mirror image of exponent rules.
Theorem 3 (Theorem Idea: Change of Base) If \(a,b>0\) and neither is 1, then
\[ \log_a x = \frac{\log_b x}{\log_b a}. \]
This matters because it lets you move between different log bases while preserving the same underlying quantity up to a constant factor.
Theorem 4 (Theorem Idea: Growth Hierarchy) At a first-pass level, these growth types have very different large-scale behavior:
\[ \log n, \quad n, \quad n^2, \quad 2^n. \]
For large \(n\),
- logarithmic growth is slow
- polynomial growth is faster
- exponential growth is dramatically faster
This is one of the main bridges from algebra repair into asymptotics and algorithms.
7 Worked Example
Solve
\[ 2^{x+1}=16 \]
and compare the growth of
\[ \log_2 n \]
and
\[ 2^n. \]
7.1 Step 1: Rewrite the right-hand side
Since
\[ 16=2^4, \]
the equation becomes
\[ 2^{x+1}=2^4. \]
7.2 Step 2: Match exponents
Because the bases are the same,
\[ x+1=4, \]
so
\[ x=3. \]
7.3 Step 3: Read the inverse viewpoint
The same result could be written as
\[ x+1=\log_2 16 = 4. \]
This is exactly the inverse relationship between exponentials and logs.
7.4 Step 4: Compare growth qualitatively
If \(n\) gets large:
- \(\log_2 n\) grows very slowly
- \(2^n\) grows extremely fast
For example:
- when \(n=10\), \(\log_2 10\) is only a little above
3 - but \(2^{10}=1024\)
This is why logs often appear in algorithmic complexity as “slow growth,” while exponentials usually signal rapid blow-up.
8 Computation Lens
For first-pass exponent and log work, the main habits are:
- rewrite quantities in a common base when possible
- treat logarithms as inverse functions, not as separate magic rules
- check positivity before applying log identities
- use change of base instead of memorizing every base separately
- separate symbolic simplification from growth comparison, then reconnect them
This page is less about memorizing identities and more about making the identities feel structurally inevitable.
9 Application Lens
This page supports many later modules directly:
- Recurrences and Asymptotics through growth comparison
- Single-Variable Calculus through exponential and logarithmic functions
- Probability through exponential tails and log-likelihood language
- Information Theory through entropy, bits, and log bases
Once this page feels natural, a large amount of later notation becomes much calmer to read.
10 Stop Here For First Pass
If you can now explain:
- what exponentials and logarithms each do
- why logs are inverse functions
- how change of base works
- why log growth and exponential growth are not remotely the same scale
- when log laws are valid and when positivity matters
then this page has done its job.
11 Go Deeper
The next page in this module is:
The strongest adjacent bridges are:
12 Optional Deeper Reading After First Pass
- OpenStax College Algebra 2e - open official text for exponent laws and logarithm basics. Checked
2026-04-25. - OpenStax Precalculus 2e - strong open official bridge from function language into growth and exponential/logarithmic modeling. Checked
2026-04-25. - Paul’s Notes Exponential/Log Functions - stable worked-example page for exponentials, logarithms, and inverse interpretation. Checked
2026-04-25.
13 Sources and Further Reading
- OpenStax College Algebra 2e -
First pass- open official text for exponent rules, logarithms, and algebraic growth language. Checked2026-04-25. - OpenStax Precalculus 2e -
Second pass- open official bridge from algebra repair into more complete exponential and logarithmic modeling. Checked2026-04-25. - Khan Academy Algebra basics -
First pass- official skill-based reinforcement for powers, exponents, and growth intuition. Checked2026-04-25. - Khan Academy Algebra 1 -
Second pass- broader official practice hub for exponentials, graph interpretation, and algebraic growth. Checked2026-04-25. - Paul’s Notes Exponential/Log Functions -
First pass- stable worked-example page for inverse interpretation and log identities. Checked2026-04-25. - Paul’s Notes Growth/Decay -
Second pass- stable worked-example page reinforcing exponential growth and decay modeling. Checked2026-04-25.
Sources checked online on 2026-04-25:
- OpenStax College Algebra 2e
- OpenStax Precalculus 2e
- Khan Academy Algebra basics
- Khan Academy Algebra 1
- Paul’s Notes Exponential/Log Functions
- Paul’s Notes Growth/Decay