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

Adding of logs term with the same base but different power

I am trying to figure out how to simplify adding of 2 log terms with the same base but different power. For example in my textbook: \begin{align} \ln(x) &= 0.8\ln\left(20000\left(1+\frac r{100}\right)\right) + 0.2\ln\left(20000\left(1-\frac…
0
votes
1 answer

A problem of Logarithm

Find the minimum value of $$\frac{\log_bc}{\log a} + \frac{\log_ca}{\log b} + \frac{\log_ab}{\log c}$$ since I do not know how to write log base a index a so I gave it in that manner. I tried out the problem and thought intuitively that the answer…
0
votes
4 answers

Calculate $2^\sqrt{\log_220}-20^\sqrt{\log_{20}2}$

Calculate $$2^\sqrt{\log_220}-20^\sqrt{\log_{20}2}$$ The most obvious thing that I was able to notice is that for the radicands we can write $$\log_220=\dfrac{1}{\log_{20}2}$$ So I let $\log_2{20}=a$. Then we will have…
0
votes
1 answer

How can I easily compute the $\log_{60/47}3$?

I'm working on a recurrence problem which needs me to simplify $\log_{60/47}3$? Since $\frac{60}{47}\approx 1.2765$, how would I know how much of that I need to multiply by itself to get $3$? I have no problem simplifying log of 8 base 3 $\log_28$,…
Gannicus
  • 341
0
votes
1 answer

How to solve $n\times\log_2(n)=10^6$

Sorry for my bad English. I started to read book about algorithms(Introduction to Algorithms) and there is a problem, I should find a valid $n$ for $$n \times \log_2(n) = q $$ q might be very big number ($3\times10^{15}$) I know that I can write a…
0
votes
0 answers

Unfamiliar with Notation for a Log

Probably a stupid question, but I need to rank a selection of a few functions by growth rate, and there's a notation for one of the log functions I'm unfamiliar with. What I'm seeing is a log raised directly to an exponent - is this the same as how…
0
votes
1 answer

How to see logarithm of a number from Chamber's log table of 7 figures?

all I'm studying logarithm from SL. Loney's plane trigonometry. I just don't understand how to use Chamber's log table which is provided at the end of the book. I knew how to find logarithm of a number such as 2345 where I've to use only one number…
Rajiv
  • 1
0
votes
0 answers

Is there a transform to divide a log by another log with the same base such that the original logs do not need to be evaluated?

It’s been suggested to me that I can solve for x in $5^x$$^-$$^1$$ = 2$ by converting to log base 10. I’ve tried converting to base 10 but I arrive at $x=\frac{\log2}{\log 5}+1$ and am unable to go further without using a calculator. I’ve also…
duckegg
  • 669
0
votes
0 answers

Can the mantissa of a log ever be zero?

I had a doubt today when our teacher told us this: A logarithm of the form log N can be written as n + f, where n is an integer known as the characteristic, and f is a fraction where 0 < f < 1. I was confused by the last part and asked him after…
0
votes
1 answer

Finding original amount in half-life problem

Say the half-life of an element is 1590 years. If 10g of the element is left after 1000 years, how much was there originally?
jaykirby
  • 852
0
votes
1 answer

Could $\log_1(1)$ have more than one value?

I was wondering if $\log_1(1)$ could have more than one value, due to the fact that in the equation $1^x = 1$, $x$ can be $0$ and $1$. Thanks in advance.
0
votes
2 answers

An intuitive explanation or a proof of $n^{log_a b} = b^{log_a n}$

I am reviewing logarithms and ran into this relationship $n^{log_a b} = b^{log_a n}$ Could use some help understanding it
0
votes
2 answers

Can I further simplify $\frac{-2\log 6}{\log 6-\log 4}$?

Can I further simplify this logarithmic expression somehow in this case, or is it already the point when I take a calculator?
brilliant
  • 818
0
votes
1 answer

Calculating half-life?

After taking a tablet, a patient has 10 units/ml in a sample of blood taken soon after, and this decreased to 6 units/ml 9 hours later. What is the half-life of the tablet? How long will it take decrease to 20% of its original value?
jaykirby
  • 852
0
votes
1 answer

If $x = \log_a(bc), y = \log_b(ca)$ and $z = \log_c(ab)$, then find the value of $xyz - x- y - z$

If $x = \log_a(bc), y = \log_b(ca)$ and $z = \log_c(ab)$, then find the value of $xyz - x- y - z$ This question is given in my book but I'm unable to solve it. Here's what I got so far: $$x = \log_a(bc) \implies x + 1 = \log_a(bc) + …
user983440