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

Convert $(\log n)^n$ to the form $n^x$ for some $x$

How do I convert ${\log n}^n$ to the form $n^x$, for some $x$? I'd like to compare the big-O runtime of $(\log n)^n$ to $n^{\log n}$ directly. Intuitively, $(\log n)^n$ grows faster since the exponent grows faster but I'm not sure how to prove the…
1
vote
2 answers

Logarithm of a positive number

I'm new to this site and I need help on this logarithm question. I don't know how to approach this question to simplify it. $$\log_2(x^2-4)−3\log_2\frac{(x+2)}{(x-2)}>2$$ Apparently the answer is $(-\infty, -2) \cup (6, +\infty)$
Mira
  • 13
1
vote
0 answers

Calculation of logarithms

I understand the properties of logarithms. However I am curious if a calculator uses complex power series, slide rule program, Taylor series, or a form of an algorithm to solve for log"base"n(x).
Ethan
  • 11
1
vote
1 answer

Astronomical magnitude formula convertion

It is a question asked out of pure frustration, but I really want to know the steps leading from the expression $$m_1-m_2=2.5\log\bigg(\frac{F_2}{F_1}\bigg)$$ to this one $$\frac{F_1}{F_2}=2.5^{m_2-m_1}$$
1
vote
3 answers

$\frac{\ln(x^2)}{\ln(x)} = 2$? Why?

$\frac{\ln(x^2)}{\ln(x)} = 2$? Upon trying to evaluate $\frac{\ln(x^2)}{\ln(x)}$, i've found that google plots it as always equal to 2, other than 0 where it is undefined. Why is this the case?
1
vote
1 answer

How to solve for a variable in logarithms

How do I solve this for $y$? $$u= 1 - \exp\left\{-\left(\frac{y-\theta}{\alpha}\right)^\gamma\right\}.$$ If I take the $\log$ I end up with $$\log(1-u) = -\left(\frac{y-\theta}{\alpha}\right)^\gamma.$$ I'm unclear on how to proceed further to…
1
vote
0 answers

Developing log function always clamped at y=1 and asymptotic at x of my choosing

Math has never been my strong suit. But with my head in the books and me paying attention at every step while problem solving I did... pretty good. But my calculus was 20+ years ago. I'm close to zero retention. I did some searching and came up with…
1
vote
2 answers

Find the value of $\log_{xz}(xy^4z) \times \log_{xy}(xyz^4)$

if $x,y,z \gt 1$ and $x^2=yz$ find the value of $$E=\log_{xz}(xy^4z) \times \log_{xy}(xyz^4)$$ what i did is $$E=\log_{xz}(xy^4z) \times \log_{xy}(xyz^4)=(1+4\log_{xz}y)\times (1+4\log_{xy}z)$$ after that i could not proceed
Umesh shankar
  • 10,219
1
vote
5 answers

logarithms properties

I know it's very easy and naive, but apparently I cannot understand the following equation. Can you please prove it? Thanks in advance. The equation is: $$2=3^{\frac{\ln{2}}{\ln{3}}}$$
gbiondo
  • 33
1
vote
1 answer

Logarithmic equation with variable both "free" and in logarithm

I am trying to calculate an area bordered by two functions and in the process I need to solve this equation: $$e^{-10x}=-2x+1$$ I make it into a non-exponential form: $$-10x=ln(-2x+1)$$ And now I am stuck. Every webpage and example I have found…
1
vote
3 answers

Why can't you add a coefficient before the logarithm base change rule?

Why is it that the rule $$ \log_b(x) \ = \ \frac{\log_c(x)}{\log_c(b)} \ $$ (the logarithm base change rule) is true but $$ \ a \log_b(x) \ = \ \frac{a \log_c(x) }{ a \log_c(b) } \ $$ isn't? For example why does the equation, $$ \log_{49} 3 \ = \…
Guy
  • 113
1
vote
3 answers

The domain of $\ln(x)^{\ln(x)}$

I'm a little bit confused! what is the domain of this function: $$ \ln(x) ^{ \ln(x) } $$ this function, in fact, is: $$ \exp(\ln(\ln(x))\cdot\ln(x)) $$ so the domain would be: $$ x>1 $$ But: $x$ can "also" take on the value (for example)…
1
vote
3 answers

Logarithms equation with tricky transformations

$$8^{x-2}\times5^{x+2}=1$$ This one according to wolfram alpha it has nice solution $$x = \frac{2 (\log(8)-\log(5))}{\log(8)+\log(5)}$$ I see one could guess this solution and just assume left side is increasing function and be done, but I want to…
1
vote
1 answer

How to solve logarithm word problem given the exponential equation?

The question is The world population in 2000 was approximately 6.08 billion. The annual rate of increase was about 1.26%. The function that models this is $$ y = 6.08(10)^{.0052t}$$ where y represents the population in billions and t is the time…
1
vote
1 answer

How many digits will $ab^c$ have?

How many digits will $ab^c$ have? I know that the digits of $b^c$ is calculated so: $$\lfloor c \log_{10}b \rfloor +1$$ but what about $ab^c$ ?
AHB
  • 1,469