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
0
votes
4 answers

Why is $\log_a n = \frac{\log_b n}{\log_b a}$?

What is an intuitive explanation of why $\log_a n = \frac{\log_b n}{\log_b a}$?
Curious
  • 467
0
votes
1 answer

How to get the second solution?

I have this exercise: Solve for $x$, $(\log x)^{10} = 3$ My development was: $\log x = \sqrt[10]3$ $10^{\sqrt[10]3} = x$ , this is my solution. But I still need a solution, according to the symbolab. Which is: $x =…
ESCM
  • 3,161
0
votes
0 answers

A quotient rule for logarithm in complex space?

I have the following formula: $$\frac{\ln(\frac{a}{x})}{k} + \frac{\ln(b) - \ln(x)}{k}$$ where $k>0$, $a>0$, but $b<0$ and $x<0$. I cannot use the quotient rule for logarithms to change $\dfrac{a}{x}$ to $ln(a) - ln(x)$ since I am dealing with a…
0
votes
2 answers

Using the logarithm product rule with a coefficient

I'm trying to solve this logarithmic expression: $\left(\dfrac{\left(\log_6(27)+2\log_6(2)\right)}{\log_6\sqrt[3]{0.25}+\log_6(\frac{1}{3})}\right)^{\!2}$ But after a couple of steps, I got stuck. Here's what I did: First, I simplified the…
Steve
  • 227
  • 2
  • 4
  • 11
0
votes
2 answers

Clear variable in logarithmic equation

I have the following equation $\lambda_1 ln\left( \epsilon \alpha+1\right) = \lambda_2 ln\left( \epsilon \beta+1\right)$ All being known values but $\epsilon$, which I would like to clear but haven't been able so far. Any hint is…
0
votes
2 answers

Compound Continuous Interest

Suppose that I have 100 dollars and this amount has increased up to 150 within 5 years, in order to get the growth rate we solve the following equation $\ln(150/100)×100/5= 0.081=8.1$% The question is what if this amount has increased within seconds…
K. M.
  • 101
0
votes
1 answer

$(\log^2(n))$ and $(\log(n)^2)$, are both same?

I have two functions, $\log^2 (n)$ and $(\log(n))^2$, is both the functions are same? Can anyone help me on this? Edit 1: Is $\log(log( (n))$ is same as $\log^2 (n)$ ?
0
votes
0 answers

Question about taking Log on both sides of the equation

Please take a look at the following snippet of a paper. According to the underlined part, eq(3)(4) can be obtained by taking logs of eq(1)(2), so by taking log of eq(1) (and ignore expectation) I…
0
votes
1 answer

Sum of weighted logarithms identity

I know that $\sum_i \log(x_i) = \log(\prod_ix_i)$. I am wondering if the identity extends to the case where we have $\sum_ia_i\log(x_i)$ where $a_i$ are positive weights. If not, is there any way to simplify $\sum_ia_i\log(x_i)$?
Rong Zhang
  • 53
  • 5
0
votes
2 answers

What is the difference in clearing the exponent?

If I have an equation, like this: $k^{m} = m^{k}$, I have been taught that I must apply natural logarithm, but others have taught me that I must apply the common logarithm. Then, what should I use? $m*ln(k)= k*ln(m)$, Natural logarithm (base…
ESCM
  • 3,161
0
votes
0 answers

Does $\log_1(1)$ have two solutions?

Can the solutions for $\log_1(1)$ be $0$ and $1$?
0
votes
2 answers

How to find intersect of two continuous growth functions?

I am blanking on how to solve this type of equation. I have solved it using a graph, so I know the correct answer, but I need to solve it using log as well. EX: $1400e^{.046t}$ and $375e^{.352t}$. Using a graph I got $t=4.304$, but I am unsure how…
0
votes
1 answer

A logarithimic simplification

How could I simplify this? It must give $\dfrac{9}{2}+\ln (2)$. $$\left( \dfrac{4}{2}+6+\ln (2)\right) - \left( \dfrac{1}{2}+3+\ln (1)\right) =8+\ln (2)-\dfrac{7}{2}-\ln (1)=\dfrac{9}{2}+\ln (2)-\ln (1)$$
h2473556
  • 13
  • 1
0
votes
3 answers

Algebraic or only graphical solution in AoPS logarithm problem?

I'm struggling a lot with a problem I encountered in AoPS: Solve for $x$ if $2^{16x}=16^{2^x}$ I got it down to $\log_2(x)=x-2$ The solution is 4, but how do I get this without using graphics? Is there a way of algebraic manipulation that gives me…
0
votes
2 answers

How to evaluate $a^b - b^a = x$

I know the values of $a$ and $b$ and I want some other form of this equation to solve it using C++ programming language without overflow, because $a$ and $b$ can reach $100$. I was thinking about logarithm but I could not complete the idea if we…
AliOsm
  • 103