4

The questions ask to combine the expression using the laws of logarithms. $$\log_3(x^2 − 36) − \log_3(x − 6)$$

I got $$\frac{\log_3(x^2-36)}{\log_3(x-6) } $$ but my book says that is not correct.

3 Answers3

8

Recall that $$\log a-\log b=\log\left(\dfrac{a}{b}\right)$$

Then using this principle, $$\log_3(x^2 − 36) − \log_3(x − 6)=\log_3\left(\dfrac{x^2-36}{x-6}\right)=\underbrace{\log_3\left(\dfrac{(x+6)(x-6)}{x-6}\right)}_{\text{Here the } (x-6)\text{'s cancel}}=\log_3(x+6)$$

SQB
  • 2,094
2

The rule of logarithms for division dictates that $$\log_b {m} - \log_b n=\log_b \frac{m}{n}$$ for any base $b$ and any non-zero numbers $m,n$.

Substitute: $m = x^2-36$, $n=x-6$, and $b=3$. So

$$\log_3 (x^2-36) - \log_3(x-6)=\log_3 \frac{x^2-36}{x-6}=\log_3 \frac{(x+6)(x-6)}{x-6}=\log_3 (x+6)$$

Cookie
  • 13,532
2

You applied the formula in a wrong way. The formula does not say that the difference of two logarithms is the quotient of the two logarithms. It says that the difference of two logarithms is the logarithm of the quotient of the two arguments !

  • 1
    By the way, if $\log(a)-log(b)=\frac{\log(a)}{\log(b)}$, that would mean that $A-B=\frac{A}{B}$ for any numbers ! –  Mar 31 '14 at 06:50