4

I'm stuck trying to solve

$$2\log(x) + 1 =\log(19x+2)$$

I know the solution has to be $x = 2$.

However I can't find the manual steps (Wolfram doesn't know the manual steps either).

This is all I got

$$\log(x^2) + 1 = \log(19x +2)$$

$$\log(x^2) - \log(19x +2) = -1$$

$$\log\left(\frac {x^2} {19x +2}\right) = -1$$

Kamil Jarosz
  • 4,984
Ayy
  • 158
  • 1
    You are on the right track. Now use the definition of logarithm to get $\frac{x^2}{19x+2}=10^{-1}$. Then solve the quadratic equation. – Anurag A Nov 08 '15 at 18:27
  • Hadn't thought about that, thanks! I'll accept the answer once the timer let's me – Ayy Nov 08 '15 at 18:31
  • We have $10^{2\log x+1}=10^{\log(19x+2)}$, The right-hand side is $19x+2$. The left-hand side is a bit more work, it is $10x^2$. Now you have a quadratic equation. – André Nicolas Nov 08 '15 at 18:31

3 Answers3

4

Hint: Write $-1$ as $\log\frac{1}{10}$. Then take antilogs both sides.

Edit: The solution: $$\frac{x^2}{19x+2}=\frac{1}{10}$$ Cross multiply: $$10x^2=19x+2$$ $$10x^2-19x-2=0$$ $$\left(x+\tfrac{1}{10}\right)(x-2)=0$$

There you have it! $x=2$. $x=-\frac{1}{10}$ gets rejected from your original question, but not from the one you solved. Think about it.

Kamil Jarosz
  • 4,984
1

If you mean that $\log x=\ln x$, the solution is $$\log(\frac {x^2} {19x +2}) = -1$$ $$\frac {x^2} {19x +2}=e^{-1}$$ $$x^2-\frac{19}{e}x-\frac{2}{e}=0$$

Replace the $e$ with $10$ if you mean $\log x$ for base $10$. Then use the quadratic formula to solve it.

E.H.E
  • 23,280
1

Remember how the logarithm is defined.

$$b^x=y \iff \log _b y = x$$

Therefore

$$\log \left ( \frac{x^2}{19x+2}\right)=-1$$

is equivalent to to the statement

$$\frac{x^2}{19x+2}=10^{-1}$$

which can be solved with the quadratic formula.

Ben Longo
  • 1,068