What Logarithms Really Mean
A logarithm answers the question: "To what exponent must I raise the base to get this number?" The expression log_b(x) = y means exactly the same thing as bʸ = x. These are two ways of writing the same relationship.
log_b(x) = y means exactly the same thing as bʸ = x. Thinking of logarithms as "the exponent" makes many things clearer. When you see log₂(32), ask yourself: "2 to what power equals 32?" Since 2⁵ = 32, the answer is 5.Quick examples
For example, log₂(8) = 3 because 2³ = 8. log₁₀(1000) = 3 because 10³ = 1000. log₅(25) = 2 because 5² = 25.
Logarithms are the inverse of exponentiation, just as subtraction is the inverse of addition and division is the inverse of multiplication. This inverse relationship is why logarithms are so useful for solving exponential equations — if you need to "undo" an exponential expression to isolate a variable in the exponent, you reach for a logarithm.
Understanding this core meaning will make all the properties and rules feel logical rather than arbitrary.
Logarithm Properties
There are three fundamental properties of logarithms that allow you to simplify and manipulate logarithmic expressions.
log_b(MN) = log_b(M) + log_b(N). The log of a product equals the sum of the logs.log_b(M/N) = log_b(M) − log_b(N). The log of a quotient equals the difference of the logs.log_b(Mⁿ) = n · log_b(M). The log of a power equals the exponent times the log.These properties follow directly from the exponent rules, since logarithms are exponents. For example, the product property mirrors b^(m+n) = bᵐ · bⁿ.
Additional useful facts
Additional useful facts: log_b(1) = 0 because b⁰ = 1. log_b(b) = 1 because b¹ = b. log_b(b^x) = x and b^(log_b(x)) = x — these are the inverse properties.
Together, these rules let you expand, condense, and simplify logarithmic expressions. For instance:
log₂(8x³) = log₂(8) + log₂(x³) = 3 + 3log₂(x)Master these properties and you can handle any logarithmic simplification.
Change of Base Formula
Most calculators only have buttons for common log (log₁₀, usually labeled "log") and natural log (ln, base e). But you may need to evaluate logarithms with other bases.
log_b(x) = ln(x) / ln(b) = log(x) / log(b). You can use any base for the conversion, but ln and log₁₀ are most convenient since they are on your calculator.For example, to evaluate log₃(20):
log₃(20) = ln(20)/ln(3) ≈ 3.0/1.099 ≈ 2.727The change of base formula also helps you compare logarithms with different bases and is essential when solving equations that involve multiple bases.
log_b(a) = 1/log_a(b). This reciprocal relationship follows directly from the change of base formula and occasionally simplifies problems.Why calculus prefers ln
In calculus, you will almost exclusively use the natural logarithm ln, because d/dx [ln(x)] = 1/x has the cleanest derivative. Other bases introduce an extra constant: d/dx [log_b(x)] = 1/(x ln b).
Solver AI automatically applies change of base when needed and shows you the conversion step.
Natural Log vs Common Log
Two specific logarithm bases appear so frequently that they have their own notation.
log(x) or log₁₀(x), uses base 10. It is natural for anything involving powers of 10: pH in chemistry, decibels in acoustics, the Richter scale for earthquakes, and scientific notation. For example, log(1000) = 3 and log(0.01) = −2.ln(x) or logₑ(x), uses base e ≈ 2.71828. The number e is a mathematical constant that arises naturally in calculus, compound interest, probability, and growth/decay models.The natural log is the preferred logarithm in calculus and higher mathematics because it leads to cleaner formulas. For instance, the integral ∫(1/x) dx = ln|x| + C works cleanly only with the natural log.
Converting between the two
In practice, you can convert between them: ln(x) = log(x)/log(e) ≈ log(x)/0.4343, and log(x) = ln(x)/ln(10) ≈ ln(x)/2.3026.
When a problem does not specify the base, assume log means log₁₀ in algebra and science contexts, and ln in calculus contexts.
Solving Logarithmic Equations
Logarithmic equations contain the variable inside a logarithm. The general strategy is to use log properties to combine or isolate the logarithm, then convert to exponential form to solve.
Solve log₂(x) = 5.
Convert: x = 2⁵ = 32.
x = 32Solve log(x) + log(x − 3) = 1.
Use the product property: log(x(x − 3)) = 1.
Convert: x(x − 3) = 10¹ = 10. So x² − 3x − 10 = 0 → (x − 5)(x + 2) = 0.
Solutions: x = 5 or x = −2. But x = −2 makes log(−2) undefined, so reject it.
x = 5Solve ln(2x + 1) = 3.
Convert: 2x + 1 = e³ → x = (e³ − 1)/2 ≈ 9.54.
x ≈ 9.54Always check that your solutions do not produce logarithms of negative numbers or zero, as these are undefined in the real number system. Extraneous solutions are common in logarithmic equations because algebraic manipulations (like squaring or combining logs) can introduce them.
Solving Exponential Equations with Logarithms
Exponential equations have the variable in the exponent. To solve them, take the logarithm of both sides to bring the variable down.
Solve 2ˣ = 16.
Since 16 = 2⁴, we get x = 4 directly. But what if the numbers are not so neat?
x = 4Solve 3ˣ = 20.
Take ln of both sides: x ln(3) = ln(20) → x = ln(20)/ln(3) ≈ 2.996/1.099 ≈ 2.727.
x ≈ 2.727Solve 5^(2x − 1) = 7.
Take ln of both sides: (2x − 1) ln(5) = ln(7) → 2x − 1 = ln(7)/ln(5) → x = (ln(7)/ln(5) + 1)/2 ≈ (1.209 + 1)/2 ≈ 1.105.
x ≈ 1.105Solve e^(3x) = 50.
Take ln: 3x = ln(50) → x = ln(50)/3 ≈ 1.304.
x ≈ 1.304When both sides are exponentials
For equations with exponential expressions on both sides, like 2^(x+1) = 3^(x−2), take ln of both sides and distribute: (x+1)ln(2) = (x−2)ln(3), then solve the resulting linear equation for x.
Solver AI can handle all of these types and shows each step clearly, which is particularly helpful for understanding how logarithms are used to isolate the variable from the exponent.