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

Intuitive reason for why $ \frac{1}{\ln(x)}$ has a change in concavity around $y = -\frac{1}{2}$

The graph for $ y = \frac{1}{\ln(x)}$ has a change in concavity right about where $y=-\frac{1}{2}$ Is there any intuitive reason for this, or way you could know with high school maths (other than calculus)?
Sarah
  • 9
0
votes
2 answers

Are these exponential functions?

I learnt that exponential functions has the format : \begin{align} number^x \end{align} But these functions are not exactly power x, so I am confused: \begin{align} \sqrt{5}^{\log_{5} x}\\ 8^{\lg x} \end{align} I am trying to understand the…
0
votes
3 answers

log equation hard to solve, logarithm with a polynomial

I could not solve this logarithmic equation, it proved difficult to me, just hints or full solution if you can please: $$\log_4(3\cdot4^{x+1}-8)=2x+1$$
user686368
0
votes
2 answers

How to get all the solutions for the equation $X^Y-Z^X=X^X$

I tried to find all solutions for this equation: $$X^Y-Z^X=X^X$$ My math is not that good, I thought I could do it with logarithms but this did not work. I already have one set of solutions: $$X=3,\ Y=5,\ Z=6$$ but I what to know if there are more…
0
votes
0 answers
0
votes
3 answers

How to solve $x^\sqrt x=\frac{3x}{2}$?

If $x^\sqrt x=\frac{3x}{2}$ then how to solve it? I have tried by taking $\log$ in both side but couldn't reach a solution. Do you have any logarithmic or any other solution?
0
votes
1 answer

$\log_{10}(x)$ approximation

$\log_{10}x \approx x^{ \frac{1}{2^{19}}}227695 - 227695$ I plotted the graphs of both $\log_{10}x$ and $x^{ \frac{1}{2^{19}}} 227695 - 227695$ And found that they almost overlapped. Can you give a explanation of this or can you find how this…
kurama
  • 115
0
votes
1 answer

Question about logarithmic function formula

I'm not good at Math and please don't blame me if this question is too obvious to you. There is a formula about logarithmic function. $\log_ab^x = x\times\log_ab$ Here is a problem: $\log_5x^2 = -2$ If I use the formula, I got: $2\times…
0
votes
1 answer

An exponential - logarithmic equation / inequality

$x$ , $a$ ∈ $ℝ$ $x$ > $0$ , $a \neq 1$ Is there any $x$ that makes the below equation have only one repeated root? How about other states? [ From root we mean root of x with a given a ] For example a $x$ that makes the equation have two simple…
0
votes
1 answer

Can't solve this equation involving the natural logarithm

Solve for $y$: $\frac12\ln(\sqrt{2y+1})) = \ln(3) + \ln(y-1)$. I got to $\sqrt{2y+1} = (y+2)^2$, but then don't know where to go from here I've now got to $(\sqrt{2y+1})^\frac{1}{2} = 3y-3$
Newbie101
  • 167
0
votes
4 answers

Find log base 5 of 84 when other logs are given

Been trying to help out a student with a logarithms problem that has me stumped for a week now. I know what the answer is but I don't know how to get to it. It goes like this: Suppose $\log_{12}5 =a$ and $\log_{12}7=b$. I am supposed to use rules…
0
votes
1 answer

Equivalent values

$$\mathcal{O}(f (n)· L) = \mathcal{O}(f (n)\log n)$$ Where is $L$ is a depth of tree. How happened that $\ L = \log n $? Why this two values are equal?
calm27
  • 117
0
votes
2 answers

find the x-intercept of a natural logarithm function with a power of 2

find the $x$-intercept of the function $y = \ln((3x-2)^2)$. in order to find it, move the power 2 in front of the natural log: $y = 2 \ln(3x-2)$. for x -intercept, $y = 0$. Therefore, $\ln(3x-2) = 0$. Hence, $(3x-2) = 1$. and x = 1. The question is…
sam
  • 1
0
votes
1 answer

how can i evaluate logarithmic series

If I have $\log_{21} 1 + \log_{21}3+\log_{21} 7+...+\log_{21} 441$ and all the values are divisors of 441. How would i evaluate this sum? I know the multiplication rule would make it $\log_{21} (1*3*7*...*441)$ but i don't know how to evaluate…
0
votes
3 answers

Solving logarithmic equations algebraically

1. $\log_{10}(x+4) -\log_{10}x = \log_{10}(x+2)$ $10^{\log_{10}(x+4)} - 10^{\log_{10}x} = 10^{ \log_{10}(x+2)}$ $x+4 - x = x+2$ $x=2$ 2. $\ln(x+1)^2 = 2$ $e^{\ln(x+1)^2 } = e^{2}$ $(x+1)^2 = e^2$ $x+1 = \pm e$ $x = -1\pm e$ 3. $\ln x +\ln (x^2+1) =…