← Back to Overview
Contents
  1. Laws of Exponents
  2. Exponential Functions
  3. Growth & Decay
  4. Introduction to Logarithms
  5. Laws of Logarithms
  6. Solving Exponential Equations
  7. Common Mistakes
1 Laws of Exponents
LawFormulaExample
Productaᵐ · aⁿ = aᵐ⁺ⁿx³ · x⁴ = x⁷
Quotientaᵐ ÷ aⁿ = aᵐ⁻ⁿx⁵ ÷ x² = x³
Power of power(aᵐ)ⁿ = aᵐⁿ(x²)³ = x⁶
Power of product(ab)ⁿ = aⁿbⁿ(2x)³ = 8x³
Power of quotient(a/b)ⁿ = aⁿ/bⁿ(x/3)² = x²/9
Zero exponenta⁰ = 1 (a ≠ 0)7⁰ = 1
Negative exponenta⁻ⁿ = 1/aⁿx⁻³ = 1/x³
Fractional exponenta^(m/n) = ⁿ√(aᵐ)8^(2/3) = (∛8)² = 4
Fractional exponent alt.a^(1/n) = ⁿ√a27^(1/3) = ∛27 = 3
2 Exponential Functions

The exponential function has the form y = a · cˣ or equivalently y = a(1 + r)ˣ where c = 1 + r.

General form (MHS)
y = a · cˣ
a — initial value
y-intercept = (0, a)
c — base
c > 1 → growth  |  0 < c < 1 → decay
r — rate
c = 1 + r (r > 0 = growth, r < 0 = decay)

Key Characteristics

FeatureValue
DomainAll real numbers (−∞, +∞)
Rangey > 0 (function is always positive)
Y-intercept(0, a)
Horizontal asymptotey = 0 (the x-axis)
ShapeIncreasing if c > 1; Decreasing if 0 < c < 1
3 Growth & Decay Applications
📐
Compound interest formula: y = a(1 + r)ᵗ
a = initial amount  ·  r = annual rate  ·  t = time in years

Growth (c > 1, r > 0)

Decay (0 < c < 1, r < 0)

Finding the Rule from a Graph

4 Introduction to Logarithms

A logarithm is the inverse operation of exponentiation.

💡
Fundamental definition: logₐ(b) = c ⟺ aᶜ = b
"The log base a of b equals c" means "a to the power c equals b"
Convert to exponential
log₂(8) = 3 ↔ 2³ = 8
Common log (base 10)
log(x) = log₁₀(x)
Natural log (base e)
ln(x) = logₑ(x)
Useful identities
logₐ(aˣ) = x  and  a^(logₐ x) = x
Change of base
logₐ(b) = log(b)/log(a) = ln(b)/ln(a)
5 Laws of Logarithms
📐
All three laws work because logarithms are exponents — they inherit the laws of exponents.
Product rule
logₐ(MN) = logₐ(M) + logₐ(N)
Quotient rule
logₐ(M/N) = logₐ(M) − logₐ(N)
Power rule
logₐ(Mⁿ) = n · logₐ(M)

Expanding vs Condensing

TaskWhat to doExample
ExpandApply rules to break apart a single loglog(xy²) = log x + 2 log y
CondenseApply rules in reverse to write as single loglog x + 2 log y = log(xy²)
SimplifyEvaluate if possible, otherwise expand/condenselog₂(32) = log₂(2⁵) = 5
6 Solving Exponential Equations
Same base example
2^(x+1) = 2^3 → x + 1 = 3 → x = 2
Log both sides
3ˣ = 20 → log(3ˣ) = log(20) → x·log(3) = log(20) → x = log(20)/log(3)
Investment doubling
2A = A(1.05)ᵗ → 2 = 1.05ᵗ → log2 = t·log(1.05) → t ≈ 14.2 years
7 Common Mistakes
MistakeFix
log(a + b) ≠ log(a) + log(b)Product rule: log(ab) = log(a) + log(b). The sum inside a log cannot be split.
log(a − b) ≠ log(a) − log(b)Only the product rule applies, not differences inside the log.
Power rule: distribute the coefficient5·log₂(6x) = 5·log₂(6) + 5·log₂(x) — the 5 multiplies EVERY term.
Forgetting base when convertinglog₂(8) = 3 means 2³ = 8. The base of the log is the base of the exponent.
Negative log doesn't mean negative answerlog(0.5) is negative but 0.5 is a valid input. Domain of log: x > 0.