Condense Logarithms Calculator - Combine Into One Log

Try an example:

Enter each logarithm term to combine

log()
log()
log()

Use single letters (x, y, z) for variables or positive numbers. Coefficients accept whole numbers, decimals, or fractions like 1/2. Leave a coefficient blank for 1.

Condensed into a single logarithm

log(x2·y3z)

Logarithm

base 10 · common log

Terms combined

3 → 1

Rules applied

Power, Product, Quotient

Step-by-step

  1. 1

    Power rule — move every coefficient up as an exponent.

    log(x2)+log(y3)log(z)

  2. 2

    Product rule — added logs multiply into one numerator.

    log(x2·y3)

  3. 3

    Quotient rule — subtracted logs drop to the denominator.

    log(x2·y3z)

Sanity check — the two forms are identical

Substitute x = 2, y = 3, z = 5. The original string of logs and the single condensed log return the same value.

Original sum

1.334454

Condensed log

1.334454

How to Use This Calculator

  1. Pick the shared Logarithm base — common log, natural log (ln), base 2, or a custom base. Every term uses the same base.
  2. For each term, tap the + / − button to add or subtract it, type the coefficient (blank means 1), and enter the argument inside the log.
  3. Use Add term to build longer expressions, or the ✕ to drop a term you do not need.
  4. Read the Condensed card for the single logarithm, then follow the Step-by-step panel to see the power, product, and quotient rules in action.
  5. With variables, the Sanity check plugs in test numbers to prove the rewrite is exact; with numbers only, you also get the decimal value.

Share this calculator

Help others solve their calculations

Found this calculator helpful? Share it with your friends, students, or colleagues who might need it!

Condense Logarithms Calculator: How to Combine Logs Into One Expression

About the Author

Marko Šinko - Co-Founder & Lead Developer

Marko Šinko

Co-Founder & Lead Developer, AI Math Calculator

Lepoglava, Croatia
Advanced Algorithm Expert

Croatian developer with a Computer Science degree from University of Zagreb and expertise in advanced algorithms. Co-founder of award-winning projects, ensuring precise mathematical computations and reliable calculator tools.

📅 Published:
Condense Logarithms Calculator merging separate log terms into one single logarithm using the product, quotient, and power rules.

A Condense Logarithms Calculator takes a string of separate log terms — sums, differences, and coefficients out front — and folds them into one clean logarithm. Feed it 2 log x + 3 log y − log z and it hands back log(x²y³ / z), with every step shown. That single-log form is exactly what you need before you can solve a logarithmic equation or simplify a messy calculus expression. Below, we'll unpack the three rules that do all the work, the one ordering trick that trips people up, and why a fractional coefficient quietly turns into a root.

Condensing Is Expanding Played Backwards

Here's the fastest way to understand condensing: it's the exact reverse of expanding. When you expand, you break a single logarithm into pieces — log(x²y³ / z) becomes 2 log x + 3 log y − log z. Condensing runs that same machinery right to left, gluing the pieces back into one log. Same three rules, opposite direction.

That symmetry is useful. If you can expand and simplify an expression, you already know how to condense one — you just read the rules backwards. And because a coefficient in front of a log corresponds to a power inside it, brushing up on exponents and powers makes the whole process click faster.

The Three Rules That Do All the Work

Every condensing problem is some mix of just three identities. There is nothing else to memorize. The catch that beginners miss: all three demand the same base. You can combine two base-10 logs or two natural logs, but never a log₂ with a log₁₀.

The three logarithm rules used to condense expressions
RuleExpanded formCondensed form
Productlog M + log Nlog(M · N)
Quotientlog M − log Nlog(M / N)
Powerk · log Mlog(M^k)

Read them left to right and you're expanding. Read them right to left and you're condensing: plus signs become multiplication, minus signs become division, and any number multiplying a log climbs inside as an exponent.

Why the Power Rule Has to Go First

This is the single most important habit in condensing, and it's worth burning into memory: deal with the coefficients before you touch the plus and minus signs. A number in front of a log is not multiplying the argument — it is an exponent waiting to move inside.

Take 2 log x. That equals log(x²), not log(2x). The 2 becomes a power, never a factor. Skip the power rule and try to combine 2 log x + log y straight away, and you might wrongly write log(2xy). The correct answer is log(x²y). Handle the coefficient first — x becomes x² — and only then multiply the arguments. The calculator above always applies this order, which is why Step 1 in its solution is the power rule every single time.

A Four-Term Expression, Condensed Step by Step

Short examples hide the pattern, so let's condense something with real moving parts: 3 log₂ a + ½ log₂ b − 2 log₂ c − log₂ d, all in base 2.

Step 1 — power rule on every term. The coefficients climb inside as exponents: 3 log₂ a becomes log₂(a³), ½ log₂ b becomes log₂(b^½), 2 log₂ c becomes log₂(c²), and log₂ d stays put. Now the expression reads log₂(a³) + log₂(b^½) − log₂(c²) − log₂(d).

Step 2 — group by sign. The two added logs form the numerator, a³ · b^½. The two subtracted logs form the denominator, c² · d. Step 3 — write the single log: log₂(a³b^½ / c²d). Because b^½ is the square root of b, you'll often see this final answer written as log₂( (a³√b) / (c²d) ). That's the whole job — four terms folded into one. Want to double-check work like this quickly? An algebra calculator is handy for verifying the arithmetic on the exponents.

Fractional Coefficients Become Roots

A coefficient does not have to be a whole number, and this is where students hesitate. When the number out front is a fraction, the power rule still applies — you just land on a fractional exponent, which is a root in disguise. The exponent ½ means a square root, ⅓ means a cube root, and so on.

How fractional coefficients turn into roots when condensing logs
TermAs an exponentWritten as a root
½ log xlog(x^½)log(√x)
⅓ log xlog(x^⅓)log(∛x)
¾ log xlog(x^¾)log(⁴√x³)

So ½ log x + log y condenses to log(√x · y). The tool accepts fractions like 1/2 directly and shows the fractional exponent for you, so you can see the connection instead of guessing at it.

Why Bother? Condensing Is How You Solve Log Equations

Condensing isn't busywork — it's the move that unlocks logarithmic equations. You can't undo a log until the whole side is a single log, because only then can you rewrite it in exponential form. Consider log x + log(x − 3) = 1. Condense the left side with the product rule to log(x(x − 3)) = 1, switch to exponential form as x(x − 3) = 10¹, and you're left with the plain quadratic x² − 3x − 10 = 0, which factors to x = 5 (rejecting x = −2, since logs of negatives don't exist).

The same skill shows up in calculus, where logarithmic differentiation leans on combining and splitting logs to tame nasty products and powers before you differentiate. And once every argument is a number, you can punch the condensed form straight into an list of logarithmic identities or an online scientific calculator for a decimal — one log call instead of three.

Three Traps a Condense Logarithms Calculator Catches for You

Each of these produces a believable-looking result, which is exactly what makes them dangerous. Watch for all three.

  • Turning a coefficient into a factor. 3 log x is log(x³), not log(3x). The number in front is always an exponent, never something you multiply the argument by.
  • Forgetting the minus sends the whole term downstairs. In 2 log a − 3 log b, the entire b³ — coefficient and all — belongs in the denominator, giving log(a² / b³). It's easy to move b but forget its exponent.
  • Mixing bases. log₂ x + log₁₀ y cannot be condensed as written. The rules only fire when the bases match, so convert with the change-of-base formula first, or leave the terms separate.

Get those three right and condensing becomes mechanical. Enter any expression in the calculator above, and the sanity check will plug in test values to confirm your condensed form matches the original — a fast way to catch a stray sign or a misplaced exponent before it costs you on an exam.

Frequently Asked Questions

Still Have Questions?

The detailed content on this page provides comprehensive explanations and examples to help you understand better.