This topic focuses on exponential and logarithmic functions, their properties, graphs, and how to solve equations involving them. You’ll explore the relationship between logarithms and exponents, and learn techniques for solving growth, decay, and compound interest problems.
f(x) = a^x
where a > 0
and a ≠ 1
. Graphs increase or decrease rapidly.log_b(x)
means the exponent you raise b
to in order to get x
.log_b(b^x) = x
b^{log_b(x)} = x
log_b(xy) = log_b(x) + log_b(y)
log_b(x/y) = log_b(x) - log_b(y)
log_b(x^r) = r log_b(x)
ln(x)
is log base e
(Euler’s number ≈ 2.718).log_b(x) = log_c(x) / log_c(b)
(commonly use base 10 or base e
)Problem: Solve 2^x = 16
Step 1: Rewrite 16 as a power of 2:
16 = 2^4
Step 2: Set exponents equal:
2^x = 2^4
→ x = 4
Final Answer: x = 4