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

Logarithmic Equation: How to solve for x

Equation: $$\log_a (x) + \log_a (x-4) = \log_a (x+6)$$ Progress $$\log_a (x^2-4x) = \log_a (x+6)$$ $$x^2-5x-6=0$$ Delta $$x1= 6$$ $$x2=-1$$
alaina
  • 25
1
vote
2 answers

How can I simplify $N^{\frac{e}{\sqrt{\log(N)}}}$

I am working through an algorithms workbook and I have the following equation: $$N^{\frac{e}{\sqrt{\log(N)}}}$$ I know I can simplify it somehow using the properties of logs and exponents but am a little rusty on that basic math. If you could…
Thalatta
  • 155
1
vote
1 answer

Why logarithmic scales are used?

I would like to clear about why logarithmic scales are used sometimes instead of linear scales? What do the logarithmic scales have with logarithms? Why they are called logarithmic?
Laki
  • 155
1
vote
1 answer

Natural Logarithm of a Negative Number

I am trying to find the genetic distance between two DNA sequences using Kimura (K80) model, and the formula contains natural logarithm, after calculating the required Q and P's needed, my solution looks like this: Click Here Since, natural…
l..
  • 143
1
vote
2 answers

How to get $d$ in terms of $A$ and $B$

I'm trying to get $d$ in terms of $A$ and $B$ having the next equations: $$0 = A + B*\log _2(d)$$ $$6 = A + B*\log _2(\frac{d}{2})$$ EDIT How about $A$ in terms of $B$ and $d$? And $B$ in terms of $A$ and $d$?
1
vote
0 answers

Help with finding values of $4^{ax}=b \times 8^x$

The question is: Given that there is more than one value of $x$ to the question $4^{ax} = b \times 8^x$, find all possible values of $a$ and $b$. I know that you can use logs to solve this question, but are there any other methods? (like…
kwhk
  • 11
1
vote
2 answers

Why are logarithms and exponentials inverse?

I'm unclear on why ${{{\log_bn=x}}}$ is the inverse of $b^x=n$, other than the fact someone told me that they were.
1
vote
1 answer

Summation of values of function.

A function g(n) having whole numbers as its domain is defined as $g(n)=\log_8n$ ;$f(n)=g(n)$ if $g(n)$ is rational and $f(n)=O$ if $g(n)$ is irrational. What is $\sum_{r=1}^{2007}f(n)$ I figured out that to be rational n must take…
1
vote
3 answers

What is the degree measure of the least positive angle $x$ for which $\log_2 (\cos x) = −\frac{1}{2}$.

What is the degree measure of the least positive angle $x$ for which $\log_2 (\cos x) = −\frac{1}{2}$. So i rewrote it as: $\dfrac{\log (\cos x)}{\log 2}=\dfrac{-1}{2}$ but it doesn't seem to open any doors for me. any ideas?
Caddy Heron
  • 1,249
1
vote
2 answers

Building a ln function from scratch

I need to write a natural logarithm with just limited available operations. This is to be implemented as a function into a C program. The problem is, our product is security relevant so the source code has to be well documented and tested. The…
Zaibis
  • 113
1
vote
1 answer

Logarithmic growth rates

I have this question in terms of grown rate (Computer Science Big-OH): Rank the following three functions: $\log N$, $\log(N^2)$, $\log^2 N$. Explain. I understand the first two are both $O(N)$ as $\log(N^2) = 2 \log (N)$. I am hoping someone can…
Peter3
  • 125
1
vote
3 answers

Solve logarithmic equation $\log_{\frac{x}{5}}(x^2-8x+16)\geq 0$

Find $x$ from logarithmic equation: $$\log_{\frac{x}{5}}(x^2-8x+16)\geq 0 $$ This is how I tried: $$x^2-8x+16>0$$ $$ (x-4)^2>0 \implies x \not = 4$$ then $$\log_{\frac{x}{5}}(x^2-8x+16)\geq \log_{\frac{x}{5}}(\frac{x}{5})^0 $$ because of base…
Gjekaks
  • 1,133
1
vote
4 answers

Simplifying two logarithms with different bases

I am being asked to simplify: $(\log_4 7)(\log_7 5)$ How can this be simplified given that the bases are different?
1
vote
2 answers

Show using logarithms that the first equation can be transformed into the second.

Show using logarithms that if $y^k = (1-k)zx^k(a)^{-1}$ then $y = (1-k)^{(1/k)}z^{(1/k)}x(a)^{(-1/k)}$.
Wei
  • 11
1
vote
2 answers

how to solve this equation using logarithm, if not possible how to solve it?

how to solve the following equation: $$0.2948(1-(1+x)^{-5})=x$$ I know to satisfy this equation $x$ should be equal to 0.145 but how i can get there please help!
moe
  • 113