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

Solve for x with exact values

I am super confused how does this step end up with this? Then this is the working, I dont understand the second step please help me to show the missing step any Law of Logarithms at work here?
JackyBoi
  • 477
1
vote
2 answers

Finding logarithm by exponent inverse with decimal in denominator

I'm doing a practice logarithm problem and I'm stuck. I'm given this reference $$ \log_a2 = 0.3812\ \ \log_a3 = 0.6013\ \ \log_a5 = 0.9004 $$ And the question is $$ \log_a(30a)^3 = x $$ The given answer choices are $$ 3.169,\ 5.6487,\ 8.6487,\…
1
vote
1 answer

If $x^{2a-3} y^2 = x^{6-a} y^{5a}$ then $a\log(\frac{x}{y}) = ?$

If $x^{2a-3} y^2 = x^{6-a} y^{5a}$ then $a\log(\frac{x}{y}) = ?$ I have Tried this and stucked here.
1
vote
1 answer

How to solve $\log_2(x^2+2x-7) = \frac{1}{\log_{9-6x+x^2} 4}$ step by step?

What I was able to get was $\log_2(x^2+2x-7) = \frac{1}{2}\log_2{(x-3)^2}$. Wolfram Alpha says that the solution is $-5$ but I can't get it right? Can someone explain it from here? Thanks.
LearningMath
  • 1,201
1
vote
1 answer

Logarithms - how long does it take to grow? Understanding the example

Here is the quote from the article I am reading on logs: ...interpretations of the natural logarithm (ln(x)), i.e. the natural log of 1.5: Assuming 100% growth, how long do you need to grow to get to 1.5? (.405, less than half the time…
Vitale
  • 349
1
vote
1 answer

Taking logarithm of sum and products

$\newcommand{\cost}{\operatorname{cost}}$My cost-metric is in following form \begin{equation} \cost(x,y) = A(x,y_1) \times \sum_{i}b_i B_i(x,y_i)\tag{1} \end{equation} where $A$ and $B$'s follow normal distribution. For my computer implementation, I…
NAASI
  • 997
1
vote
3 answers

How to solve exponential function of form $a b^x + x = c$?

For instance, how would I solve: $3^x + x = 85$ ?
user8210
  • 1,083
1
vote
3 answers

How to solve $6^{2x} = 5^{x-2}$ for $x$

I have recently come across this problem in my homework and I'm finding it quite difficult to solve. The simplest answer would be preferred using exponential laws and logarithms.
1
vote
1 answer

why can't the logarithmic base/parameter be negative?

I read the domain of a logarithmic function can not be negative, but why? I mean, a logarithmic function with base $-2$ and parameter $-1/8$ should result in the exponent $-3$ shouldn't it?
1
vote
2 answers

How to find the range of unknowns from a logarithmic equation?

If the equation $\log(ax)\cdot \log(bx) + 1 = 0$ with $a>0, b>0$ constants has a solution $x>0$, it follows that $$b/a \geq (?)$$ or $$(?)\geq b/a >(?)$$ Hints maybe (for both :p)? EDIT: Answer $$b/a \ge 100$$ $$1/100 \ge b/a \ > 0$$
1
vote
2 answers

How many decimal places for a logarithm to "round off"

Given $t=\log_b(n)$ (assume that $b=2$) with $n\in \Bbb N$, where $n$ is not a power of $b$, how many decimal digits of $t$ must be preserved so that rounding $b^t$ (in this case, $2^t$) to the nearest natural number is $n$? What about a…
Danyil Bee
  • 109
  • 1
  • 7
1
vote
0 answers

What does a logarithm indicate as compared to a quotient in division or a difference in subtraction?

John, Paul and George received three boxes with apples and were ordered to get apples out of boxes and put them on the table. So they opened their boxes - each one opened one box - and started taking out the apples and putting them on the table.…
brilliant
  • 818
1
vote
2 answers

how to find $\ln(-e)$

I don't really understand the step by step procedure on how to calculate this? That $-$ confuses me, because I don't understand how there can be an $\ln$ of a negative number. Can someone please explain? Thanks
ivana14
  • 913
1
vote
2 answers

Log of A to the base 9=Log of B to the base 12=Log of (A+B) to the base of 16, then what is B/A?

I tried, $9^k$=A, $12^k$=B, $16^k$=A+B Now, $16^k$*$9^k$=$(12^k$)^2 That means, (A+B)*A=$B^2$, therefore, $A^2$-$B^2$=-AB and, (A-B)(A+B)=-AB and, (B-A)(B+A)=AB. I don't know what to do further.
1
vote
1 answer

Final runtime of $O(k \log k \log n)$

What would this resolve to? $O(k \log k \log n)$ The logs are the same base here and for the life of me right now I can't remember how to multiply logarithms together.... Basically what is $\log k * \log n$?
gprime
  • 593