Questions tagged [logarithms]

Questions related to real and complex logarithms.

The logarithm is generally defined to be an inverse function for the exponential. If $x > 0$ is a real number and $b > 0$, $b \ne 1$, then the base-$b$ logarithm is defined by

$$\log_b(x) = y \iff b^y = x$$

The most commonly used bases are base $10$ and $2$ (which frequently arises in computer science), and particularly base $e$. The natural logarithm $\ln$ is defined to be $\log_e$.

Alternatively, the natural logarithm can be defined to be a primitive of the function $$f(t) = \frac{1}{t}$$ subject to the condition that $\ln{1} = 0$.

In the study of complex numbers, the solutions $a$ of $e^{a} = z$ are called complex logarithms. This uniquely specifies the modulus of $a$, but not its argument; as such, we define the principal logarithm $\operatorname{Log}(re^{i\theta}) = \ln{r} + i \theta$, with the restriction $-\pi < \theta \le \pi$ (or alternatively, $0 \le \theta < 2\pi$). This leads to a branch cut, or discontinuity - alternatively, the complex logarithm can be viewed as a multi-valued function.

Reference: Logarithm.

This tag often goes along with .

10168 questions
1
vote
4 answers

How would I solve: $\log_{16} 32 = x$?

How would I solve: $\log_{16} 32 = x$? What I know: 16 is the base 32 is the exponent $$ 32 = 16^x $$ I'm stuck at this point$\ldots$
Matt Butler
  • 79
  • 1
  • 8
1
vote
1 answer

Solving $s \le n\log n$ for smallest $n$

I am given an arbitrary positive integer $s$. I want to find the smallest integer $n$ such that $$s \leq n \log_2 n$$ where $\log_2$ is log base $2$. Is there an efficient way to compute $n$?
1
vote
4 answers

Logarithm with quadratic solution

I have looked over this question several times, and I only understand the solution up to a point. Solve the equation for $x$: $$\ln x+\ln(x-1)=1 $$ First thing I do is apply the additive rule of…
Kurt
  • 613
1
vote
5 answers

logarithm proof fallacious or not?

$e^{-x}=e^{1/x}$ Taking the natural logarithm of both sides $$\ln(e^{-x})=\ln(e^{1/x})$$ $$-x=1/x$$ $$-x^2=1$$ $$x^2=-1$$ $$x=i$$ I know I am doing something wrong here. Also can someone please explain why $$-\ln(x)=\ln(1/x)$$ Thank you.
user257501
1
vote
2 answers

Show that $a^{\log_c b}= b^{\log_c a}$

Show that $a^{\log_c b}= b^{\log_c a}$. I start from LHS and add $\log a$ on it, but it leave $\log_c b$. Then I have not idea about how to continue it(maybe my working is wrong... Can anybody solve this question?
user255652
  • 107
  • 1
  • 3
  • 8
1
vote
3 answers

If $3(4^h)=4(2^k)$ and $9(8^h)=20(4^k)$,show that $2^h = \frac{4}{5}$

If $3(4^h)=4(2^k)$ and $9(8^h)=20(4^k)$,show that $2^h = \frac{4}{5}$. I tried to substitute the equation 1 into equation 2 so that I can find the value of $k$ or $h$, but it did not work as the base is not the same (I cannot compare to find the…
user255652
  • 107
  • 1
  • 3
  • 8
1
vote
1 answer

Simple Logarithm and JavaScript Question

I have a simple formula that I am trying to convert to JavaScript, I'm just stuck trying to reverse it. My math skills have deteriorated over the last few years and im stuck. Here is the formula And here is my interpretation of it in JavaScript 2…
Cheyne
  • 113
  • 4
1
vote
2 answers

Solving the Logarithmic equation $\log_x (3-2\sqrt2)=2$

$$\log_x (3-2\sqrt2)=2$$ I can't solve it, I tried everything but I can't find the solution I tried logarithmic properties but nothing works, please help!
drin
  • 93
1
vote
7 answers

Is the equation $\log[A/(-B)]=\log[(-A)/B]$ valid?

A friend sent me these lines: $$\log[A / (-B)] = \log[(-A) / B]$$ $$\log(A) – \log(-B) = \log(-A) – \log(B)$$ $$\log(A) – [\log(-1) + \log(B)] = \log(-1) + \log(A) – \log(B)$$ $$\log(A) – \log(B) - \log(-1) = \log(-1) + \log(A) – \log(B)$$ Something…
1
vote
3 answers

Logarithmic non-integer fractional value

Would it be possible to show the breakdown of how $\log_4$ $32$ = $\frac{5}{2}?$ I have to come up w/ 11 more just like it & I'm not sure how you came up w/ the answer. Thank you!
1
vote
2 answers

Sum of solutions of this exponential equations

How to solve this : $$x^{3-\log_{10}(x/3)}=900$$ I tried log on both sides and got nothing with exponent of $x$ and $3$.
zivce
  • 213
1
vote
2 answers

How to get the results of this logarithmic equation?

How to solve this for $x$: $$\log_x(x^3+1)\cdot\log_{x+1}(x)>2$$ I have tried to get the same exponent by getting the second multiplier to reciprocal and tried to simplify $(x^3+1)$.
zivce
  • 213
1
vote
2 answers

Question about logarithmic eqations

How to solve $4x+5^x=100$? I can't find how to solve it. I can't find a way to put the $x$'s into logarithmic form.
1
vote
2 answers

Assuming $d+1 <= log_2(n)$, how to show $d - 1 > log_2(n/8)$?

Also we know $d = log_2(n/2)$ rounded down to its nearest integer. Add (-2) to each side $$d-1 <= log_2(n) - 2$$ $$d-1 <= log_2(n) - log_2(4)$$ $$d-1 <= log_2(n/4)$$ This is as far as I can get.
1
vote
3 answers

Solving the exponent function for X

Natural logarithm is defined as: $\ln(Y) = x$ Which can be also written as: $e^x = y$ Now the problem is, to solve the above equation for x you would need to use logarithm, unless the base can be set to be the same. The solution is circular. In…
Dole
  • 2,653