Logarithms
A logarithm is the inverse operation of exponentiation, answering the question of what power a base must be raised to in order to produce a given result. The notation log_b(x) = n means that b^n = x, where b is the base, x is the argument, and n is the result. For example, log_2(8) = 3 because 2^3 = 8.
Why it matters
Logarithms appear throughout science, engineering, and finance where exponential relationships dominate. The Richter scale uses base-10 logarithms to measure earthquake intensity, where each whole number represents a 10-fold increase in power. Sound intensity in decibels follows a logarithmic scale, making a 60-decibel conversation 1,000 times louder than a 30-decibel whisper. In finance, compound interest calculations often require logarithms to determine how long money takes to double or triple. Computer science relies heavily on base-2 logarithms for algorithm analysis, where log_2(1024) = 10 indicates that binary search can find any item among 1,024 elements in just 10 steps. The natural logarithm appears in calculus and serves as the foundation for exponential growth models in biology and economics. Students encounter logarithmic functions in Algebra II under CCSS.HSF.BF and CCSS.HSF.LE standards.
How to solve logarithms
Logarithms
- log_b(x) = n means bn = x.
- Product: log(ab) = log(a) + log(b).
- Quotient: log(a/b) = log(a) − log(b).
- Power: log(an) = n·log(a).
Example: log₂(8) = 3 because 2³ = 8.
Worked examples
log_5(125) = _______
Answer: 3
- Understand what a logarithm asks → log_5(125) = ? means: 5^? = 125 — A logarithm answers the question: '5 raised to WHAT power gives 125?'
- Try powers of 5 → 51 = 5, 52 = 25, 53 = 125 — Calculate 5^1, 5^2, ... until we reach 125.
- Read off the exponent → 53 = 125, so log_5(125) = 3 — The exponent that gives 125 is 3. That's our answer.
log_3(27) = _______
Answer: 3
- Rewrite as an exponential equation → log_3(27) = n means 3n = 27 — Converting between log form and exponential form is the key skill.
- Build up powers of 3 → 31 = 3, 32 = 9, 33 = 27 — Calculate successive powers of 3 until we hit 27.
- Identify the matching power → 33 = 27 ← match! — The 3th power of 3 equals 27.
- Write the answer → log_3(27) = 3 — The logarithm equals the exponent.
log_10(1002) = _______
Answer: 4
- Recall the power rule for logarithms → log(an) = n · log(a) — The exponent comes out as a multiplier. This is the third main log rule.
- Apply the rule → log_10(1002) = 2 · log_10(100) — Move the exponent 2 in front of the log.
- Evaluate log_10(100) → log_10(100) = 2 (since 102 = 100) — 10 raised to 2 gives 100.
- Multiply → 2 × 2 = 4 — Multiply the exponent by the log value.
Common mistakes
- Confusing the base and argument positions, writing log_8(2) = 3 instead of log_2(8) = 3 when solving 2^3 = 8.
- Applying the product rule incorrectly by writing log_10(5 × 3) = log_10(5) × log_10(3) instead of log_10(5) + log_10(3).
- Forgetting to apply the power rule, calculating log_2(4^3) = log_2(64) = 6 instead of using log_2(4^3) = 3 × log_2(4) = 3 × 2 = 6.
- Mixing up logarithm properties when solving log_10(100/10) by writing log_10(100) + log_10(10) = 2 + 1 = 3 instead of log_10(100) - log_10(10) = 2 - 1 = 1.