Logarithms answer a question that shows up whenever repeated multiplication is involved: what exponent would produce this number? If $2^3 = 8$, then $\log_2(8) = 3$ because 2 must be raised to the third power to make 8. That one idea connects logarithms to exponential growth, scientific scales, computer science, sound, chemistry, and many algebra problems that cannot be solved cleanly with ordinary arithmetic.
The most useful way to think about a logarithm is as an exponent in disguise. A logarithm does not create a new kind of number system; it reverses an exponential relationship. Once that relationship is clear, the rules for simplifying logarithms and solving logarithmic equations become much less mysterious.
What a Logarithm Means
The basic form of a logarithm is $\log_a(b) = x$. This means the same thing as $a^x = b$. The base is $a$, the argument is $b$, and the value of the logarithm is the exponent $x$. For example, $\log_3(81) = 4$ because $3^4 = 81$.
Not every base is allowed. In ordinary real-number algebra, the base must be positive and cannot equal 1. A base of 1 would not work because $1^x$ is always 1, so it cannot create a useful inverse relationship. The argument of a logarithm must also be positive. Expressions such as $\log_2(0)$ and $\log_2(-8)$ are not defined in the real-number system used in most algebra courses.
Two bases appear so often that they have special notation. The common logarithm has base 10 and is usually written as $\log(x)$. The natural logarithm has base $e$, written as $\ln(x)$, where $e \approx 2.71828$. Natural logarithms are especially important in growth and decay models because the number $e$ appears naturally in continuous change.
Changing Between Logarithmic and Exponential Form
Most logarithm problems become easier when you can move smoothly between the logarithmic and exponential forms. The statement $\log_5(125) = 3$ can be rewritten as $5^3 = 125$. The statement $10^4 = 10000$ can be rewritten as $\log(10000) = 4$.
This conversion is often the first step in solving a logarithmic equation. Suppose $\log_2(x) = 6$. Rewriting it as an exponential equation gives $2^6 = x$, so $x = 64$. The logarithm asked for the exponent; the exponential form gives the value directly.
It also helps to remember what logarithms do to powers. Since $\log_7(7^4)$ asks what exponent is on 7, the answer is 4. In the same way, $10^{\log(250)} = 250$ because raising 10 to the logarithm of 250 reverses the logarithm. These inverse relationships are why logarithms are so useful for undoing exponential expressions.
The Main Logarithm Rules
Logarithm rules come from exponent rules. Since multiplying powers with the same base adds exponents, a logarithm of a product can be split into a sum. For positive $M$ and $N$, $\log_a(MN) = \log_a(M) + \log_a(N)$.
Dividing powers with the same base subtracts exponents, so a logarithm of a quotient becomes a difference: $\log_a(M/N) = \log_a(M) – \log_a(N)$. Raising a quantity to a power multiplies an exponent, so $\log_a(M^r) = r\log_a(M)$.
These rules are powerful, but they are also easy to misuse. The product rule does not say that $\log_a(M + N)$ equals $\log_a(M) + \log_a(N)$. There is no matching shortcut for the logarithm of a sum. For example, $\log(100 + 900) = \log(1000) = 3$, while $\log(100) + \log(900)$ is much larger than 3.
The change of base formula lets you rewrite a logarithm using a different base: $\log_a(b) = \frac{\log_c(b)}{\log_c(a)}$. In practice, students usually choose base 10 or base $e$ because calculators commonly include $\log$ and $\ln$ buttons. For example, $\log_2(20)$ can be computed as $\frac{\log(20)}{\log(2)}$ or $\frac{\ln(20)}{\ln(2)}$.
Solving Logarithmic Equations
A basic logarithmic equation can often be solved by rewriting it in exponential form. For $\log_4(x) = 3$, the exponential form is $4^3 = x$, so $x = 64$. The solution is valid because the argument $x$ is positive.
Some equations require condensing several logarithms first. Consider $\log_2(x) + \log_2(x – 2) = 3$. The product rule changes the left side into $\log_2(x(x – 2)) = 3$. Rewriting in exponential form gives $x(x – 2) = 2^3$, or $x^2 – 2x = 8$. That becomes $x^2 – 2x – 8 = 0$, which factors as $(x – 4)(x + 2) = 0$.
The algebra gives two possible values: $x = 4$ and $x = -2$. Only one works. The original equation contains $\log_2(x)$ and $\log_2(x – 2)$, so both $x$ and $x – 2$ must be positive. The value $x = -2$ fails immediately, while $x = 4$ makes both arguments positive. The solution is $x = 4$.
When logarithms with the same base appear on both sides, the arguments can often be set equal. If $\log_5(x + 1) = \log_5(3x – 7)$, then $x + 1 = 3x – 7$. Solving gives $8 = 2x$, so $x = 4$. Checking the original arguments gives $x + 1 = 5$ and $3x – 7 = 5$, both positive, so the answer is valid.
Where Logarithms Show Up
Logarithms are useful whenever values grow across a wide range. A scale that uses logarithms can compress huge differences into numbers that are easier to compare. Earthquake magnitude is a familiar example: a one-unit increase in magnitude represents a tenfold increase in measured wave amplitude. Sound intensity and decibel measurements also use logarithmic thinking because human hearing responds to ratios more naturally than raw intensity values.
In chemistry, pH is defined with a negative base-10 logarithm of hydrogen ion concentration: $\text{pH} = -\log[\text{H}^+]$. A change of 1 pH unit represents a tenfold change in hydrogen ion concentration. That is why a solution with pH 3 is not just slightly more acidic than a solution with pH 4; it has ten times the hydrogen ion concentration.
Logarithms also appear in computer science. Algorithms are often compared by how the work grows as the input size increases. A process that grows like $\log_2(n)$ grows very slowly compared with one that grows like $n$ or $n^2$. This is one reason binary search is efficient: each step cuts the remaining search space roughly in half, so the number of steps grows logarithmically.
Common Mistakes to Avoid
The most common mistake is treating logarithms as if they distribute over addition. They do not. You can split $\log_a(MN)$ into a sum, but you cannot split $\log_a(M + N)$ the same way. This one error causes many incorrect simplifications.
A second mistake is forgetting domain restrictions. When solving a logarithmic equation, any expression inside a logarithm must be positive in the original equation. It is not enough for a number to solve the algebra after the logarithms have been removed. Every possible solution should be checked in the starting equation.
A third mistake is mixing up the base and the argument. In $\log_2(32) = 5$, the base is 2, the argument is 32, and the answer is 5. Reading the expression as a sentence can help: 2 to what power gives 32? The answer is 5.
Logarithms become manageable when they are treated as exponents rather than as a separate collection of rules to memorize. Convert between logarithmic and exponential form, use the product, quotient, power, and change of base rules only where they apply, and check that every logarithm in the original equation has a positive argument. Those habits make logarithmic expressions clearer and logarithmic equations much safer to solve.



