Logarithm rules — product, quotient, power, change of base with applications

medium CBSE JEE-MAIN 3 min read

Question

Simplify log232+log381log5125\log_2 32 + \log_3 81 - \log_5 125. Then solve: if log10x+log10(x3)=1\log_{10} x + \log_{10}(x-3) = 1, find xx.

(CBSE 11 & JEE Main pattern)


Solution — Step by Step

  1. Product rule: loga(mn)=logam+logan\log_a(mn) = \log_a m + \log_a n
  2. Quotient rule: loga(m/n)=logamlogan\log_a(m/n) = \log_a m - \log_a n
  3. Power rule: loga(mn)=nlogam\log_a(m^n) = n\log_a m
  4. Change of base: logab=logcblogca\log_a b = \dfrac{\log_c b}{\log_c a}

Special values: logaa=1\log_a a = 1, loga1=0\log_a 1 = 0

log232=log225=5\log_2 32 = \log_2 2^5 = 5

log381=log334=4\log_3 81 = \log_3 3^4 = 4

log5125=log553=3\log_5 125 = \log_5 5^3 = 3

5+43=65 + 4 - 3 = \mathbf{6}
log10x+log10(x3)=1\log_{10} x + \log_{10}(x-3) = 1

Using the product rule:

log10[x(x3)]=1\log_{10}[x(x-3)] = 1

Converting to exponential form:

x(x3)=101=10x(x-3) = 10^1 = 10 x23x10=0x^2 - 3x - 10 = 0 (x5)(x+2)=0(x-5)(x+2) = 0

x=5x = 5 or x=2x = -2

For log10x\log_{10} x to exist, x>0x > 0. For log10(x3)\log_{10}(x-3) to exist, x>3x > 3.

So x=2x = -2 is rejected. Answer: x=5x = 5.


Why This Works

Logarithms convert multiplication to addition (product rule), division to subtraction (quotient rule), and powers to multiplication (power rule). This is why they were invented — to simplify calculations before calculators existed.

graph TD
    A["Log Simplification"] --> B{"What operation?"}
    B -->|"log(m × n)"| C["Split: log m + log n"]
    B -->|"log(m / n)"| D["Split: log m - log n"]
    B -->|"log(m^n)"| E["Bring down: n × log m"]
    B -->|"Different bases"| F["Change base:<br/>log_a b = log b / log a"]
    A --> G["Log Equation"]
    G --> H["Combine using rules"]
    H --> I["Convert to exponential form"]
    I --> J["Solve algebraically"]
    J --> K["CHECK: domain restrictions<br/>argument must be > 0"]

Alternative Method — Convert Everything to Same Base

For the equation, we could also use natural logs:

lnx+ln(x3)=ln10\ln x + \ln(x-3) = \ln 10 ln[x(x3)]=ln10\ln[x(x-3)] = \ln 10 x(x3)=10x(x-3) = 10

Same quadratic, same answer. The base doesn’t matter for equations — it cancels out.

For JEE: the change of base formula has a powerful consequence: logab×logbc=logac\log_a b \times \log_b c = \log_a c. This “chain rule” for logs appears in many JEE problems. Also, logab=1/logba\log_a b = 1/\log_b a — useful for flipping bases quickly.


Common Mistake

Students forget to check domain restrictions after solving log equations. The argument of a logarithm must be strictly positive. In our problem, x=2x = -2 gives log10(2)\log_{10}(-2), which is undefined. Always verify that your solutions make the original log expressions valid. Losing marks for including extraneous roots is one of the most common errors in JEE Main.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next