What Is a Logarithm? Math Concepts Explained Simply
What Is a Logarithm, Anyway?
Most people see "logarithm" and check out. It's one of those words that sounds scarier than it is. Here's the plain version: a logarithm tells you what exponent you need to get a certain number.
That's it. That's the whole concept.
Instead of asking "what is 3 squared?", a logarithm asks "what exponent gives you 9?" The answer is 2, because 3² = 9.
The Notation Explained
When you see log₂(8) = 3, here's what that means:
- log = "hey, this is a logarithm"
- ₂ = the base (what number you're multiplying)
- (8) = your target number
- = 3 = the exponent you need
So log₂(8) = 3 means: "2 to what power equals 8?" Answer: 2³ = 8.
Logarithms Are Just Flipped Exponents
Here's the relationship you need to memorize:
2³ = 8 is the same as log₂(8) = 3
They're two ways of saying the exact same thing. Exponents ask "what's the result?" Logarithms ask "what's the exponent?"
This flip is why logs exist. Some problems are easier to solve one way versus the other. Engineers and scientists run into "what's the exponent?" constantly, so logs became essential.
Common Bases You'll See
Base 10 (Common Log)
Written as log(x) with no base shown. This is the OG logarithm, used for things like measuring sound (decibels) and earthquake strength (Richter scale).
log(100) = 2, because 10² = 100
Base e (Natural Log)
Written as ln(x). The "e" is approximately 2.718. This shows up everywhere in calculus, growth/decay problems, and finance. If you study any science or engineering, you'll see ln constantly.
ln(e²) = 2
Base 2 (Binary Log)
Written as log₂(x). Computer scientists love this one. It measures things in binary steps—how many times you need to double something to reach a target.
log₂(1024) = 10, because 2¹⁰ = 1024
How to Actually Calculate Logs
You have three options:
- Think it out — If the numbers are nice powers, you can solve by brain. log₂(32) = 5 because 2×2×2×2×2 = 32
- Use a calculator — Scientific calculators have log and ln buttons. Punch in your number and you're done
- Convert to exponential form — If log₃(81) = ?, rewrite as 3ˣ = 81, figure out x = 4
Logarithm Rules You Actually Need
These are the operations that make logs useful:
- Product rule: log(ab) = log(a) + log(b)
- Quotient rule: log(a/b) = log(a) - log(b)
- Power rule: log(aᵇ) = b × log(a)
The power rule is especially handy. It lets you "bring down" exponents in log expressions, which simplifies complex calculations.
Where Logs Show Up in Real Life
Logs aren't just textbook math. They show up constantly:
- pH levels — Acidity is measured logarithmically. pH 6 is 10x more acidic than pH 7
- Decibel scales — Every 10 decibels means 10x the sound intensity
- Earthquake magnitude — Each whole number on the Richter scale means 10x more ground motion
- Compound interest — Banks use logarithms to calculate how long until your money doubles
- Computer algorithms — Binary search and many sorting algorithms are O(log n)
Quick Reference: Common Log Values
| Exponential Form | Logarithm Form | Value |
|---|---|---|
| 10¹ | log(10) | 1 |
| 10² | log(100) | 2 |
| 10³ | log(1000) | 3 |
| 2¹ | log₂(2) | 1 |
| 2⁸ | log₂(256) | 8 |
| e¹ | ln(e) | 1 |
| e² | ln(e²) | 2 |
Getting Started: Your First Logarithm Problem
Try this: What is log₄(64)?
Step 1: Rewrite as 4ˣ = 64
Step 2: Figure out what power of 4 gives you 64
Step 3: 4 × 4 = 16, 16 × 4 = 64. That's three 4s multiplied together.
Step 4: 4³ = 64, so x = 3
Answer: log₄(64) = 3
Work through five more of these and the notation stops looking foreign. That's the only way to learn logs—use them, don't just read about them.