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
2 answers

Is this Diophantine equation?

How would I solve : $\log_a(b)=log_b(a)\}$ such that a and b is not equal to 1 and a is not equal to b. Would Diophantine equation be the way to go for this equation?
coderhk
  • 285
  • 2
  • 11
0
votes
3 answers

Logarithm inequality $ \log_{1/2} (A) > 3 $

If $ \log_{1/2} (A) > 3 $ then how can I write it in exponential form? And how to solve this?
0
votes
5 answers

Explanation for equivalence of ln 1/2

How is it that $\ln\left(\frac{1}{2}\right) = -\ln(2)$. If I recall correctly then $e^x=y$ is equivalent to $x = \ln(y)$. But how does the previously mentioned equation equate?
Jinzu
  • 819
0
votes
2 answers

logarithm different bases comparison

In my math textbook, I came across this question which I do not know how to answer. For a variable n, where n>1, how would you prove that $\log_n (n+1) > \log_{n+1} (n+2)$? Thank you.
Peter Ye
  • 160
0
votes
1 answer

Logarithmic Problem Solution: Physics or Math?

Someone have me this problem claiming that I only need to use logs to solve it, though it seems to have a physics origin: If a coil spring is stretched 1.5 m beyond its resisting point and then released it will return to a point which is 90 of the…
0
votes
1 answer

Logarithm, LUT and how to make it non-linear

Currently I calculate log as following: #define MAXLOG 1001 double myloglut[MAXLOG]; void MyLogCreate() { int i; double exp, expinc; expinc = (2.0 - 0.1) / MAXLOG; for (i = 0, exp = 0.1; i <= MAXLOG; ++i, exp += expinc) …
Pablo
  • 191
0
votes
1 answer

Is $\lfloor \log_{2}(n-1) \rfloor + 1 = \lceil \log_{2}(n) \rceil$ for any $n \in \mathbb{N}$ , $n \geq 2$?

I am trying to solve a problem where I get in the solution that the answer is $\lfloor \log_{2}(n-1) \rfloor + 1$, but the solution book has as an answer the value $\lceil \log_{2}(n) \rceil$. I was wondering are these two exactly the same? I…
jsguy
  • 93
0
votes
2 answers

If $a$ and $x$ are positive numbers and $A=a^2$, express the following in its simplest form in therms of $x$. $a^{\log_a x+\log_{A} x}$

If $a$ and $x$ are positive numbers and $A=a^2$, express the following in its simplest form in terms of $x$. $$a^{\log_{a} x+\log_{A} x}$$ I already know \begin{align} a^{\log_{a} x + \log_{a^2} x} = a^{\log_{a} x} \cdot a^{\log_{a^2}…
MMM
  • 205
0
votes
4 answers

The domain of natural logarithm function

Could somebody show me their method for finding the domain of this function? $\ln(1-(1/x))$ With the usual method I get that $1-(1/x)>0$ which results in $x>1$. however, the actual answer is a union of $x<0$ and $x>1$. Could someone explain how to…
SOMI
  • 27
0
votes
0 answers

Why, for $\ln(\frac{x_1}{x_2}) = \ln(x_2) - \ln(x_1)$ and not the reverse?

I would've thought, intuitively, it would be $$\ln(\frac{x_1}{x_2}) = \ln(x_1) - \ln(x_2)$$ But it's not. Why is this the case?
sangstar
  • 1,947
0
votes
0 answers

Solving for X for two instances of X which can't seemingly be combined

$$1.995-505x=(26*10^{-3})*ln(\frac{x}{3*10^{-16}})$$ Apologies for the Title, I couldn't think of a better way to phrase the question. Anyways, I'm currently working through my microelectronics homework and I've reached a point in my solution in…
0
votes
1 answer

Proof for the product of the solutions for the equation

Proof that the product of the solutions for the equation: $ x^{\log_{2016} x} \times \sqrt{2016} = x^{2016}$ is natural number. Find the digit of the units for that number. I started by taking log with base 2016 on both sides: $ \log_{2016}…
0
votes
1 answer

A question on a number raised to a logarithm

$$3^{\log(x)}-2^{\log(x)}=2^{\log(x+1)}-3^{\log(x-1)}$$ thanks for the correction Michael rozenberg. Now if you could please tell me how to solve this problem, I would appreciate it.
0
votes
0 answers

Relationship of variable in log equation

If $R_{ref}=R_{in}$ when $V_{out}=-log(\frac{V_{in}}{V_{ref}})$ What would be the relationship between $R_{ref}$ and $R_{in}$ when $V_{out}=-3log(\frac{V_{in}}{3V_{ref}})$
stuart
  • 513
  • 4
  • 10
0
votes
3 answers

Solving a log equation with squared bases

I need to solve the equation below for x $$ \log_a x = log_{a^2}(x+6) $$ Note that the base a itself is squared in the RHS of the equation I've thought about tackling the LHS and RHS separately and end up with a quadratic with two solutions of x,…
Costa58
  • 23