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

Convert percentage to range

I have the following function to convert this function to percentage. The range of $y$ is $-120$ to $0$, so $-120 = 0\%$ and $0 = 100\%$. $$percentage = 10^{(y + 160) / 80}$$ How do I go the other way by converting a percentage to the range $-120$…
0
votes
1 answer

Right angle triangle - Logarithm Problem

Prove that if $a$ and $b$ are the lengths of the legs and $c$ is the length of the hypotenuse of a right angle triangle, $c-b \neq 1$, $c+b \neq 1$ then $\log_{(c+b)}a+\log_{(c-b)}a=2\log_{(c+b)}a\log_{(c-b)}a$.
0
votes
2 answers

How can I evaluate this logarithmic expression?

I am solving a problem about recursion trees and I applied the geometric series sum formula and I have the following expression: $$ \left(\frac{6}{7}\right)^{\log_{\frac{7}{5}}(N) + 1} $$ How can I write this in a simpler form in terms of N?
Badger
  • 13
0
votes
1 answer

Logarithmic Graphing Problem

"A population of an organism grows such that after t hours the number of organisms is N thousand, where N is given by the equation N = A - $8e^{-kt}$ Initially there are 3000 organisms and this number doubles after 5 hours." Find the value of : i)…
0
votes
2 answers

A problem involving the distance between points on two logarithmic curves

Let the curves $\Gamma_1$ and $\Gamma_2$ respectively represent $y = \log_2x$ and $\log_4x$. Let the line $y=k$ intersect $\Gamma_1$ and $\Gamma_2$ respectively at the points $P$ and $Q$. If $\overline{PQ} = 20$, what are the $x$ coordinates of $P$…
0
votes
2 answers

Solve $\log_{10}{(10^x+100)} = \frac{1}{2}x+1+\log_{10}2$

I know that $\frac{1}{2}x+1+\log_{10}2$ can be manipulated to become $\log_{10}{10^{\frac{1}{2}x}}+\log_{10}10+\log_{10}2$ and $\log_{10}20*10^{\frac{1}{2}x}$, but I don't see how $\log_{10}{(10^x+100)} = \log_{10}20*10^{\frac{1}{2}x}$ can be…
0
votes
1 answer

Converting the probability from log-log scale to normal scale

I need to work in log space because in some cases the denominator gets so small that underflow can happen.I can represent a value with 7 decimals on my computer. Now the problem is that when i convert these values back to normal scale then i don't…
Khan Saab
  • 427
0
votes
3 answers

Solve $\log_3 x - 2\log_x 3 = 1$ and find the larger value of $x$ out of the two

I don't have the slightest idea about how to tackle this one. I could change $2\log_x 3$ to $\frac{2}{\log_3 x}$ and deducting that from $\log_3 x$ would give me $\frac{(\log_3x)^2-2}{\log_3x}$, but I don't know how to proceed.
0
votes
4 answers

Simplify $(\log 2)^3+(\log 5)^3+(\log 2)(\log 125)$

Can't seem to figure out how to tackle this one. I know $\log 5 = 1 - \log 2$, but I don't see a way to get around the cubed logarithms except for brute force. The answer is $1$. Using the sum of cubes formula gets me $$ (\log 2 + 1 - \log 2)[(\log…
0
votes
2 answers

Prove that two functions grow at equal rate

Prove that functions $g(x)=\ln(\ln(x))$ and $h(x)=\ln(\lg(x))$ grow at equal rate for every base and value of x. I'm actually very confused about what 'for every base' actually means. I'm assuming that I'm supposed to keep the outside function as…
0
votes
2 answers

Given: Log2=a, Log7=b. Find: Log 56.

I don't know how to solve this. Can someone help me? How do I use the information above to help me find Log 56?
0
votes
2 answers

Logarithms in Summations : Confusion!

I see this simplification and I am confused! I thought there is no explicit way to simplify the logarithm of a summation. Can someone explain how the the second term( involving the summation), gets converted to a log of a summation of exponential…
0
votes
2 answers

Compare an expression with zero

I need to compare $1-\frac{2}{3}\cdot3^{-\frac{2}{3}}\cdot \log_e9$ and $0$ without any computer
0
votes
1 answer

Writing a logarithmic equation given sets of points in an xyz coordinate plane

For a game I'm making, I'm trying to create a logarithmic equation between starting points I know. I've done a lot of research, but haven't found anything too helpful. The points are: ( 0, .9, 1) ( 25, 1, 1) (100, 2, 1) ( 0, .8, 2) ( 25, 1,…
0
votes
1 answer

Index simplification help

How is $3^{5/12}\cdot6^{1/3}$ simplified to $3^{3/4}\cdot 2^{1/3}$ ? Thanks