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

Computing logarithm $\log{2}+\log{\left(\frac{p\left(x\right)}{p\left(x\right)+q\left(x\right)}\right)}$

I have the following logarithm to compute, $$\log{2}+\log{ \left( \frac{p \left( x \right)}{p \left( x \right)+q \left( x \right)} \right)}$$ Then, in the solution, $$\log{ \left( \frac{p \left( x \right)}{\frac{p \left( x \right)+q \left( x…
Avv
  • 1,159
0
votes
3 answers

Solving for $\theta$ using log

0.88 = 0.95 x 0.5 x ($e ^{-0.06129 + \theta} + e^ {-0.04129 + \theta}$) Does this equate to log($\frac {0.88 \times 2}{0.95}$) = log($e ^{-0.06129 + \theta}) + log( e^ {-0.04129 + \theta}$)
ya23
  • 55
0
votes
0 answers

GRE question about logs

So I have a question about a step they make in the GRE subject book. Finding derivative of $\arcsin($log$(x)))$ So I know how to do it, its just chain rule but there's one step I really do not understand: they go…
homosapien
  • 4,157
0
votes
2 answers

A logarithmic Calculation

I have encountered a logarithmic question that I could not solve. Here is the question: $$\dfrac {\log 64}{\log4}+\dfrac {\log 8}{\log 2}$$ A)1 B)2 C)3 D)5 E)6 Rules of Logarithm: $$\log_a\left(\frac…
0
votes
3 answers

Inequality containing logarithms

I've been reading an algorithm book lately. There is this one question that I've been struggling with and can't solve it: Consider a computer that can do 10^10 operations per second. With an algorithm that has a time complexity of $n *log(n)$. What…
kasra
  • 197
0
votes
3 answers

Need help solving this log equation $\log_{5}(x-4) = \log_{10}(x+5)$

I need help solving for $x$: $$\log_{5}(x-4) = \log_{10}(x+5)$$
0
votes
0 answers

How to write the formula for a minimum repayment credit card calculator?

I have a web developer creating a minimum repayment credit card calculator and need a formula to use for calculating the time to clear debt based on inputs of balance, APR, minimum repayment per month (%) and minimum repayment per month (£). I…
0
votes
1 answer

How do we solve the equation $4^{x} + 2^{x} = 20$?

It is easy that $x = 2$ below, but can I solve it with a general formula? $$4^x + 2^x = 20$$
Roktiv
  • 119
0
votes
4 answers

How to calculate this log

I'm supposed to calculate $$16^{\log_{0.5}{2.5}}$$ now the problem is it is not .25 rather 2.5. How can I solve this?
imposter
  • 532
0
votes
4 answers

log power rule - how to manipulate polynomials

This is a question on manipulating polynomials from Udacity's Free Course in collaboration with Georgia Tech, Introduction to Graduate Algorithms, video number 190 (videos are downloadable for free), in the Divide and Conquer section. $4^{\log_2n} =…
0
votes
1 answer

SOLVED A-Level logarithm question

So theres a question on one of my logarithm revision sheets that i have no idea how to solve, so i thought id come here to ask for your infinite mathematical wisdom. Given that $\log_a(y)=\cfrac{3}{2}\ $ and $\log_4(a)=b+2$ Show that $y=2^p$ Where p…
0
votes
1 answer

How to simplify this logarithm to find the value of x?

$x^{log_2 x} = 2^4$ Solve for x. How to do this?
user868699
0
votes
1 answer

Sum of Logarithms with different bases

it is my exercise to compute the numerical value of $x$ and $y$, where $$x:=\log_{20}(100)+\log_{100}(20),\\ y:=\log_{\frac{1}{2}}(70)+\log_{\frac{1}{10}}(200)+\log_{\frac{3}{2}}\frac{1}{100}.$$ In order to do so, I tried to simplify the expressions…
0
votes
2 answers

Solving $2^x=4x$

$2^x=4x$ I cant seem to solve this equation. The furthest I have been able to come is $x-\log_2(x)=2$, but I can't figure how to solve. When I graph $2^x$ and $4x$ they intersect at $x=4$ and $x=0.31$, so I know it is possible to solve.
0
votes
4 answers

Are logarithms and nth root of numbers same?

We write $2^3 = 8$ and express the same as $\log (8)$ to the base $2$ is $3$. Isn't this the same as finding nth root of a number? What is the significance of logarithms actually and what if we don't have the concept of Logarithms?