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
1 answer

Code Challenge Solution With Logarithm

I was doing some code challenges and I found this one: And a guy submitted the following solution: Int(ceil(log(window / h) / log(bounce))) * 2 - 1 Int means integer ceil means round up log means logarithm with base 10 Would you mind explaining…
1
vote
1 answer

Given $a = \log_{\sqrt{6}}{\sqrt[3]{4}}$ find $\log_{\sqrt{3}}{\sqrt[3]{2}}$

I have attempted to solve this and got the result of $$\frac{2a}{4-3a}$$ Whereas the correct answer: $$\frac{10a}{12-15a}$$ I have attached my calculations. Could you tell me where they are…
ILoveChess
  • 1,074
1
vote
1 answer

Approximation of $\log(\frac{1-x}{x})$ to $\log(\frac{1}{x})$?

I encountered this approximation in an Information Retrieval textbook, where they approximated: $$\log(\frac{1-u_t}{u_t})$$ to $$\log(\frac{1}{u_t})$$ where $u_t\in[0,1]$ (tending towards 1, aka the probability of a frequently occurring value). I…
Cardin
  • 113
  • 4
1
vote
2 answers

understandin the term logarithm and log.

How should I make someone understand the term log or logarithm and how its values are determined who is standard VI? like: $$\log_2 8 = 3$$ or $$\log_{2x+5}(10x^2+29x+10)=5−\log_{5x+2}(4x^2+20x+25)$$
1
vote
1 answer

Working with logarithms

I have an expression involving very small probabilities $A,B,C,D$. $$x \ge \frac{k_1B}{A + k_2B}$$ $$x \le \frac{k_1C}{D + k_2C}$$ Is there any way for me to check if $x$ satisfies the above inequalities using $\log(A),\log(B),\log(C)$ and…
Jacob
  • 2,540
1
vote
1 answer

How to convert log10 values to decimal

I need to convert $\log_{10}(1.07366)$ to decimal. Need the equation for the same.
Jithin
  • 33
1
vote
4 answers

How can I simplify $\frac{3^{n+1} + 3^{n-1}}{3^{n+2} + 3^n}$?

This problem got me thinking hard: $$\frac{3^{n+1} + 3^{n-1}}{3^{n+2} + 3^n}$$ Considering the fact that the common base is '$3$', I decided to do…
1
vote
2 answers

Solving logarithmic simultaneous equations

I've never encountered the following type of logarithmic simultaneous equations. I'm supposed to solve for x and y, but I just can't seem to figure it out. $$ \log_9 {(xy)} = \frac {5}{2}$$ $$ \log_3 {x} \times \log_3 {y} = -6$$ That second…
1
vote
2 answers

Log Question, Help ASAP

Let $P = \log_a b,$ where $$P = \log_2 3 \cdot \log_3 4 \cdot \log_4 5 \cdots \log_{2008} 2009$$ and $a$ and $b$ are relatively prime positive integers. Find the smallest possible value of $a+b.$
1
vote
2 answers

Calculate depth for light intensity

I'm totally stumped with this one. Don't know where to start. Any hint is appreciated. For every meter a diver descends below the water surface, the light intensity is reduced by 3.5%. At what depth is the light intensity only 25% of that at the…
1
vote
2 answers

find x-intercept of a logarithmic function

Find the x-intercept of: $3-4\log _{10}\left(2x\right) $ My process: $4\log _{10}\left(2x\right)=3 $ $\log _{10}\left(2x\right)\:=\:\frac{3}{4}$ How would I find the x-intercept from here? $\log _{10}\left(2x\right)\:=\: \log…
Utsav
  • 389
1
vote
1 answer

Log-log plotting question

I know this is rather simple, but despite my best efforts and quite a bit of searching through google I can't seem to find a satisfactory answer. An example of what I'm trying to do: Given a value $N= 6.8\cdot10^{-4}$ and upper and lower errors for…
user7023
1
vote
1 answer

How to solve this logarithmic function

I want so solve a problem: for what values of a>0 does the equation a^x=x have solutions? I have started to write it like a^logx=x. But its tricky this one. Does anyone have an idea of how to find the solutions?
Fanny
  • 97
1
vote
2 answers

How do I make $x$ the subject when it is inside a log fraction?

I have an equation: $y=145366.45\left(1-\left(\frac{x}{1013.25}\right)^{0.190284}\right)$ $\frac{y}{145366.25}=1-\left(\frac{x}{1013.25}\right)^{0.190284}$ $\ln{\left(\frac{y}{145366.25}\right)}=1- 0.190284…
pookie
  • 113
1
vote
2 answers

Problems simplifying logarithmic expressions

I learned all the scripts provided, yet I simply cannot find a way to simplify the following equations: $$4^{log_{2}9}$$ What I've thought so far: 9 may be written as $3^2$, so maybe we could do something with the base $log_2$, but therefore it…
Peter
  • 587