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
1 answer

Given the value of $\log n$, what is the value of $\log 2n$?

I had the attached multiple choice question in an online practice exam. I'm not sure how to work this out.
mal
  • 435
1
vote
3 answers

Equation involving logarithm, solvable without calculator?

I'd like to know if I can solve the following equation without calculator: $(0.4)^t=5t$ I don't think it's possible, cause I always get stuck on formulas of the form $e^t=t$ or $t=\ln t$ I've also put the equation into wolframalpha, which was of no…
1
vote
2 answers

log identity of division with two variables

I'm having a hard time figuring out the log of a fraction with two variables. For instance, $$f(x,y) = \frac{x}{x+y}$$ and if I took $$\log(f(x,y))$$ what would it be? I know that $$\log(x/y) = \log(x) - \log(y)$$ so does that mean, my equation…
Jonathan
  • 736
1
vote
2 answers

$\log x$ behaviour near $0$

Apologize if the question sounds absurd, but what is the behavior of $\log x$ around $x=0$? I can see that it dominates $-\frac1x$, but what about for other negative powers of $x$, for instance $-\frac{1}{\sqrt{x}}$?
1
vote
2 answers

Question regarding differentiating logarithmic functions

I have a couple of small questions regarding differentiating logarithmic functions: The derivative of $ \log(x)^2 = \dfrac{2}{\ln(10)x}$ The derivative of $ 2 \log(x) = \dfrac{2}{\ln(10)x}$ Does this hold for any $n$? This is a problem I found…
Mark
  • 53
1
vote
2 answers

Logarithm question for Algebra 2/Trig class

$$\frac{1}{2} \log(x+2)=2$$ I'm decently good at logarithms but this one seems to be tricky, when I did it myself I got a negative decimal as my answer but I'm not 100% confident in it, and I would really appreciate some help!
1
vote
1 answer

How to solve equations with two logarithmic terms?

Once again I return with questions about logarithms. This time I am having trouble with solving equations of the following form: $a\cdot \log(t)^{Q} - b\cdot \log(t)^{Z} = R $ I cannot figure out how to solve this equation for $t$. What I do know is…
1
vote
1 answer

Relationship between exponent and logarithm

How is the property $b^{x+y} = b^x\cdot b^y$ related to the property $\log_b(xy) = \log_b(x)+\log_b(y)$?
kaka
  • 21
1
vote
1 answer

Simple question about logarithms: $\log _{\ln5}(\log^{\log 100}n)$

Can any one tell me why the asymptotic complexity of $\log _{\ln5}(\log^{\log 100}n)$ is Θ(\log(\log(n))) ? I thought that $\log _{\ln5}(\log^{\log 100}n)$ is $\log _{\ln5}(n)$, so the asymptotic complexity is just Θ(\log(n))
1
vote
2 answers

How to find x if $\log_2(x)\cdot\log_2(x+2)=4$?

I get this question for a high school book.(I can't remember that book.) I think question actually should be $\log_2(x)+\log_2(x+2)=4?$ which high school student can solve. But I want to know that "Is it possible to solve that wrong printing…
Ro Theory
  • 715
1
vote
5 answers

Solution for $\log_{3}(2x+5) = [\log_{9}(4x+1)]^2$

This was my logic: $$ \log_{3}(2x+5) = [\log_{9}(4x+1)]^2 \iff \log_{3}(2x+5) = \left(\dfrac{\log_{3}(4x+1)}{\log_{3}9}\right)^2 \iff \log_{3}(2x+5) = \dfrac{\log_{3}(4x+1) \cdot \log_{3}(4x+1)}{4} \iff 4 \cdot \log_{3}(2x+5) - \log_{3}(4x+1)…
1
vote
2 answers

Logarithmic/exponential growth giving a scaling factor

I am trying to "fake 3D" in a computer game. Think of a road on a flat landscape, and that the objects start to appear somewhere in the distant. As they get closer, they look bigger, and eventually they grow in size very fast. (The same effect,…
petter
  • 11
1
vote
3 answers

How do I solve $\log(x^k) = x$ algebraically?

I'm am trying to solve $\log(x^k) = x$ algebraically. But I am at a complete loss. Is this even possible with basic algebra?
green frog
  • 3,404
1
vote
2 answers

Logarithms and Order of Growth

I am bit confused on the application of the logarithm rules when it comes to using them to determine the order of growth. For example: $ 2^{\log 2n} + 4n = \Theta(2^n) $ $ 2^{2\log 2n} + 4n = \Theta(n^2) $ $ n\log n + 10n^2 + 5^{\log n} =…
Zaruya
  • 13
1
vote
1 answer

Solving for $t$ in $t=x^t$

Is it possible to solve for $t$ in $t=x^t$? Using log on both sides does not seem to help. $$\log t=t\log x$$ $$\log x=\frac{\log t}t$$
John Glenn
  • 2,323
  • 11
  • 25