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

Did I solve this logarithmic equation problem corectly and if so why doesn't commpleting the square work?

$\log(x) + \log(x-1) = \log(4x)$ $\log((x)(x-1))=\log(4x)$ use the law of logs $\log(x^2 -x)=\log(4x)$ distribute the x $x^2-x = 4x$ use the one to one nature of logs $x^2 = 5x$ add x $x=5$ Divide by x
HiShin
  • 1
0
votes
3 answers

Is there an identity/simplification for multiplying or dividing logarithms with different bases and values?

Is there a general identity for multiplying or dividing logs with different bases and values? $$\log_a(b)*\log_c(d)=\log_?(?)$$ $$\log_a(b)/\log_c(d)=\log_?(?)$$ I'm hoping for something that looks like the change of base identity below (except…
0
votes
1 answer

Solving $x = a\log_2(bx)$

We're given 2 constants $a,b\geq 1$ and we need to calculate x such that: $x=a\log_2(bx)$. I thought of doing the…
0
votes
1 answer

Is there anyway to calculate a out of this equation?

So I know that $$a = e^\frac{\log_2(x)}{\ln x}$$. (I couldn't find a link for formatting help, I'm sorry - 2 is the base, ^ = power). Is there anyway to calculate a out of this? Thanks.
0
votes
1 answer

How to express y in $y^{x} = e^{\sin x}$ through natural logarithm?

is it possible to express $y$ in this expression: $y^{x} = e^{\sin x}$ through natural logarithm or, maybe, something else, so we get rid of $y$ at all? I need to have "something in power of $x$" instead of $e^{\sin x}$ , but I am not sure if it is…
Xentai
  • 17
0
votes
2 answers

To determine number of digits in $3^{43}$

While determining number of digits in $3^{43}$ I have solved it by taking $\log_{10}$ both sides: \begin{align} x = 3^{43} \\\ \log_{10} x = \log_{10} 3^{43} \\\ \log_{10} x = 43\log_{10} 3 \\\ \log_{10} x = 43 * 0.4771213 \\\ \log_{10} x =…
0
votes
3 answers

how to simplify $\frac{\log_2 625}{\log_2 125}$

How can i simplify this: $\dfrac{\log_2 625}{\log_2 125}$ Thanks
dramasea
  • 216
0
votes
2 answers

How to solve $(3\log_y 5)(2\log_y 5) / (6\log_y 5)$?

Can I ask how to solve this? $$(3\log_y 5)(2\log_y 5) / (6\log_y 5)$$ the answer is $\log_y 5$.
dramasea
  • 216
0
votes
3 answers

I am ask to express logarithms in terms of a and b

Here the question,I have try to obtain the answer. My answer is $2a+2b-2$, but I not sure with my answer Given $\log_x2=a$ and $\log_x 3=b$, write $\log_x\dfrac{4}{9x^2}$ in terms of $a$ and $b$
0
votes
0 answers

Which one is correct? $(\log a)^{x+1} = (x+1)\log a$ OR $(\log x)^{a+1} = (a+1)\log x $

According to log property $$(\log m)^n = n(\log m)$$ Which one is correct? $$(\log a)^{x+1} = (x+1)\log a$$ OR $$(\log x)^{a+1} = (a+1)\log x $$
0
votes
0 answers

What is the log form of this equation?

I want to find the log form of this equation to simplify some of the subsequent steps. However, I am struggling with how to handle the constant, $\theta$. If anyone could explain how to log this equation, it would be much…
0
votes
5 answers

Solve for $x$ ; $ 2^x+4^x=8^x$

I reduced the equation to $1+2^x=2^{2x}$ It is easy to see that $x$ is irrational.I tried logarithms and failed to get an expression for $x$.Any help??
0
votes
2 answers

4 figure tables: what is the short 7 fig table on the back page for?

I recently bought a copy of Godfrey & Siddons four figure tables. Looking through, I find tables for base 10 logarithms, antilogs, trigonometric functions, reciprocals, etc, all printed to 4 figures accuracy and all of fairly obvious utility, should…
0
votes
2 answers

$\log_9(x-1)+\log_4(6-x)=1$

How to solve the equation? I see solutions $x=2$ and $x=4$. Is there more? Then I try with changing bases: $$\frac{\log(x-1)}{\log 9}+\frac{\log(6-x)}{\log 4}=1$$ $$\log 4 \log(x-1)+\log 9\log(6-x)=\log 4\log 9$$ I don't know what to do next.
user746669
0
votes
0 answers

simplifying $({\log_{2}(n)})^{5\log_{2}(n)}$

I'm trying to solve this operation for a computer algorithms course practice set. I originally assumed that $\log_2(n)^{\log_2(n^5)} = \log_2(n^5) = 5\log_2(n)$ But I know that's not correct.