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

Simplifying $\log A\cdot\log B$

We know that $\log A\cdot B = \log A+\log B$. By virtue of the change of base rule, we know that $\log_BA=\frac{\log A}{\log B}$. But is there any way we can further simplify, or rewrite products of two logarithms? $$\log A\cdot\log B=?$$ I suppose…
John Glenn
  • 2,323
  • 11
  • 25
0
votes
4 answers

Find $x$ in a logarithmic equation

Find $x$ in $\log((x+2)^2) = 2$ where $x > 0$ I began with $$10^{\log\left((x+2)^2\right)} = 10^2$$ $$(x+2)^2= 100$$ I can do the algebra,but I don't how to apply the restriction. Thanks.
0
votes
2 answers

Simple log math

So I have the equation $$-2 \frac{\mu_{0} Il}{2\pi}\ln \Biggr( \frac{2h}{\sqrt{(2h)^2 +(2d)^2}} \Biggr)$$ and this should evaluate to $$ \frac{\mu_{0}Il}{2 \pi} \ln \Biggr(1 + \frac{d^2}{h^2} \Biggr) $$ So I think that $\frac{\mu_{0} Il}{2\pi}$…
Maxim
  • 161
0
votes
0 answers

Find $a$ in $(a+b)\log a=c$?

Find $a$ in $(a+b)\log a=c$ I have no idea how to do this. None of the basic log rules can solve this as far as I can tell.
0
votes
4 answers

When is $\ln x = x^{\frac13}$?

When is $\ln x = x^{\frac13}$? Is there any way to find this solution that isn't just an estimate? -- Wolfram says it has to do with lambert functions? How do I get in to those?
futurebird
  • 6,248
0
votes
2 answers

Logarithm and sum of powers

If $$2^x + 2^y = 2^{f(x,y)},$$ then $f(x,y) = $? I tried to take logarithm of both sides but ended up with an answer that I know cant be right.
R. Emery
  • 599
0
votes
2 answers

Properties of logs. Why does the log of a power, does the exponent become a coefficient?

I'm having trouble seeing number 3 clearly. Or rather, I'm having trouble seeing a proof. I've tested a series of numbers and it works, but I'm having trouble seeing why. Can anyone clarify? Here is where I get confused: I start with this log: $$…
Jwan622
  • 5,704
0
votes
5 answers

The base of a logarithm

What exactly is the base of a logarithm ? and how should it be understood ? I used to think it was the base of a "normal" exponent e.g. the $2$ in $2^{75}$ would be the base in logarithmic form, but the change of base formula can accept ANY base,…
Rijndael
  • 147
  • 6
0
votes
1 answer

Transform $2^{2\log n}$, given that $\log$ is base 10, to $n^{2/\log_2 10}$

Can anyone show me the step by step transformation? This is the answer given in a class but I'm getting tripped up over here. Thank you.
0
votes
2 answers

How to resolve the logarithm?

I have this exercise: My result is : $16/3$, but it does not appear in the answers, what is wrong? Or is it another representation of the same logarithm?
0
votes
1 answer

Why do we add 1 to logarithms to get number of digits?

I know it's super basic but why do we add 1 to logarithms to get the number of digits in a number? For example: log10(33) + 1 = 2.5 which means the number 33 has 2 digits (the integer part of 2.5)
Liroy
  • 103
  • 3
0
votes
0 answers

Method to compute a logarithmic value within a specific range

Hello I'm trying to create a formula that returns the y from the graph image below. It's always within a range. For example (0.5 - 2) for any x value. The closest I've been to is: 1 /(1/log2 (x) ) ^ 2 + 0.5 (min range value) Whose graph looks like…
0
votes
2 answers

How can I calculate how much stronger a 16 dB gain is compared to 9 dB?

I know that the decibel scale is logarithmic, so that a gain of 10dB would mean a 10x increase in power output. So 16dB would be approx 40x (?) and 9dB would be close to ten, perhaps 9x. So a gut feeling would say that a 16dB antenna would give me…
oligofren
  • 103
0
votes
6 answers

Show that $a^{\log_a n}=n$

Prove that $$a^{\log_a n}=n$$ I read it in a book that it is the 7th law of logarithms. But I don't understand how it actually works.
Sri
  • 359
0
votes
3 answers

Why is the graph of 2logx different from log(x^2)?

According to Logarithmic exponent rules: log(x^y) = y ∙ log(x) For example: 2 log x = log x^2 However take the following graphs: y=2logx y=logx^2 The graphs seems to display something that should not be the case, what am I missing or…