The four rules together form a single transformation system: each one converts an operation inside the argument into a different operation on the outside. The table below collects the rules in one place — identity, what gets transformed, and a quick numerical example — useful as a reference card while expanding or condensing expressions.
| Rule |
Identity |
What it transforms |
Example |
| Product |
logₐ(x·y) = logₐ(x) + logₐ(y) |
multiplication inside ↔ addition outside |
log₂(8·4) = 3 + 2 = 5 |
| Quotient |
logₐ(x⁄y) = logₐ(x) − logₐ(y) |
division inside ↔ subtraction outside |
log₃(81⁄9) = 4 − 2 = 2 |
| Power |
logₐ(xⁿ) = n · logₐ(x) |
exponent inside ↔ coefficient outside |
log₂(8³) = 3 · 3 = 9 |
| Change of base |
logₐ(x) = log_b(x) ⁄ log_b(a) |
rewrites a logarithm in any new base b |
log₂(7) = log(7)⁄log(2) ≈ 2.807 |