Logarithms are just exponents in reverse. They answer the question: "How many times do I multiply this number to get that number?"
Ask "2 to what power gives 8?" and the answer is 3 — so log₂(8) = 3. That's the entire idea. Exponentiation goes forward (start with a base and a power, get a result); the logarithm goes backward (start with the base and the result, recover the power).
Why Use Them?
Human perception is logarithmic. We hear sound in decibels (log scale). We feel earthquakes on the Richter scale (log scale). A magnitude 8 earthquake is 10 times stronger than a 7, not just "one more".
Logs also tame numbers that span huge ranges. Bacteria populations, compound interest, pH in chemistry, data on log-scale charts — whenever quantities multiply rather than add, logarithms turn that multiplication into simple addition and make the numbers manageable.
The Three Log Rules That Matter
- Product rule: log(A·B) = log(A) + log(B) — multiplication becomes addition.
- Quotient rule: log(A/B) = log(A) − log(B) — division becomes subtraction.
- Power rule: log(Aⁿ) = n·log(A) — exponents come down as multipliers. This is the rule that lets you solve for unknowns stuck in an exponent.
Worked Example: How Long to Double Your Money?
You invest money at 8% annual growth. How many years until it doubles? The equation is 1.08ⁿ = 2, and n is trapped in the exponent — a job for logarithms.
- Take the log of both sides. log(1.08ⁿ) = log(2).
- Apply the power rule. n · log(1.08) = log(2).
- Isolate n. n = log(2) / log(1.08).
- Compute. n = 0.30103 / 0.03342 ≈ 9 years.
Sanity check with the famous "Rule of 72": doubling time ≈ 72 / growth rate = 72 / 8 = 9 years. The rule of 72 is a logarithm identity in disguise — finance runs on logs.
A Short History Worth Knowing
Before calculators, logarithms were the calculator. John Napier published the first log tables in 1614, and for the next 350 years scientists multiplied enormous numbers by looking up their logs, adding them (thanks to the product rule), and looking up the answer in reverse. The slide rule — the tool that designed aircraft, bridges, and the Apollo missions — is nothing but two logarithmic scales sliding past each other. The astronomer Laplace said logarithms "doubled the life of the astronomer" by halving the labor of computation. When you use the log rules today, you're using history's most successful calculation shortcut.
Common Mistakes to Avoid
- Splitting logs over addition. log(A + B) is NOT log(A) + log(B). The product rule converts multiplication to addition; there is no rule for the log of a sum.
- Taking logs of zero or negatives. log(0) and log(−5) are undefined for real numbers — no power of a positive base can produce zero or a negative. Check domains when solving log equations.
- Confusing log bases. On most calculators, "log" is base 10 and "ln" is base e ≈ 2.718. Using the wrong one mid-problem gives answers that are off by a constant factor.
- Cancelling logs incorrectly. From log(x) = log(3) + log(4) you get x = 12 (add first, then drop logs) — not x = 3 + 4 = 7. Simplify each side into a single log before removing them.
Frequently Asked Questions
What is "e" and why does ln get its own button?
e ≈ 2.71828 is the natural growth constant — the limit of compounding interest continuously. The natural log (ln, base e) appears automatically in calculus: the derivative of ln(x) is the beautifully simple 1/x, which no other base achieves. That's why science and math default to it.
How do I calculate a log with a base my calculator doesn't have?
Use the change-of-base formula: log_b(x) = log(x) / log(b), with any base your calculator offers. For example, log₂(100) = log(100)/log(2) = 2/0.30103 ≈ 6.64 — meaning 2 must be raised to about the 6.64th power to reach 100.
Can a logarithm be negative?
The output can: log(0.01) = −2, because 10⁻² = 0.01. Any input between 0 and 1 gives a negative log. What can't be negative (or zero) is the input — and the base must be positive and not equal to 1.