1

I need to solve $\log$ of $36$ in base $2$
The logarithm result $= x$.

$$ \log_ 2 36 = x. $$ How do I determine value of $x$ in

$$ 2^x=36 $$

I don't know how do it, since there's perfect square of this number.

rnjai
  • 1,774

1 Answers1

1

With a calculator, you can simply calculate: $$x= \log_2 36 = \log 36 / \log 2$$ Without a calculator, you know that $x$ must be a little over $5$, since $2^5=32$. Now: $$2^x = 2^{x-5}2^5 = 36 \to 2^{x-5}=36/32=1+1/8$$ Using the fact that for small $x$ $\log_b (1+x)\approx x/ \ln b$: $$(x-5)=\log_2(1+1/8)\approx \frac{1}{8\ln 2}$$ $$x\approx 5+\frac{1}{8\ln 2}\approx5+\frac{1}{5.6}$$

  • Very very thanks! I'm doing to do without a calculator – Assembly Oct 09 '13 at 06:15
  • I'm going to solve log 5, shouldn't it be something like 10^x = 5? why do others solve it as x=10^5? it give very different result from my book and my calculator. – Assembly Oct 09 '13 at 06:50