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

least squares fitting to calculate coefficients of $A$ and $B$ from equation $A\ln(Bt+1)$

How to calculate coefficients of $A$ and $B$ from equation $y(t) = A\ln(Bt+1)$ using least squares fitting.
Ron Cai
  • 11
1
vote
1 answer

Why is $n>\frac{-\log 13}{\log 0.8}=n \log0.8<-\log13$

Not sure if I'm missing something obvious here but in my text book, dealing with a logarithmic inequality, the $<$ is seemingly switched arbitrarily: $$ 1-0.8^n < \frac{12}{13} $$ $$ 0.8^n < \frac{1}{13} $$ $$ n \log0.8 < -\log13 $$ $$ n >…
1
vote
1 answer

How is $2(\ln \tan x + c)$ simplified to $A \tan^2 x$ where $A =2c$

I'm trying to follow this reasoning: $1/2 \ln(4 +y^2) = \ln(\tan x) + C$ $\ln(4 +y^2) = 2\ln(\tan x) + \ln A$ ( constant 2C = A) $4 + y^2 = A \tan^2 x$
postoak
  • 11
  • 3
1
vote
2 answers

Evaluating Log Expression

I'm seeking some help. I've got this question to evaluate the log expression: Log Expression I realise I can get rid of the 2 and 3 by putting them on the exponent of both 1000 and 27. But that's as far as I've got. This is what I have so…
1
vote
1 answer

Stuck solving a logarithmic calculation

I'm preparing for my further studies (last year of high school, preparing so I can try and join the academy that I want), and just solving problems. Got stuck on this one: What is the value of: $$log_4log_3log_28 +…
Aleksa
  • 861
1
vote
2 answers

Maxima of product of two log functions

Is there a way to find the maxima of the product of two log functions. I need to find the maxima of: $f(x) = log\frac{1000}{x+k}.log(x+1) \text{, where k is a constant < 500, and } x \in [0,1000] \text{ such that } x+k \leq 1000$ It is getting…
sssam
  • 13
1
vote
1 answer

How does this change of log happen?

Given this expression: I am unable to understand how the following change of log happens. How did that expression become that result, especially yhr p2^li
1
vote
3 answers

Logarithm Identity

I am reviewing algebra 2 using some video tutorial from mathtutordvd.com. In one of the videos, the author converts a logarithm equation into the exponent form as follows: Which logarithm identity is used to convert the equation?
Cody
  • 357
1
vote
2 answers

logarithm in terms of x and y

I wanted to know if I computed the following problem correctly? "Given $\log3=x$ and $\log4=y$, find a solution to $\log144$ in terms of $x$ and $y$" This is what I did: $$\log3 + \log4 = x+y$$ $$\log(3\times4) =x+y$$ $$\log12= x+y$$ $$\log144 =…
Timmy
  • 107
1
vote
2 answers

Help understanding $a^w=1+kw$

I have a question. Euler starts with this situation: $$a>1$$ $$a^w=1+kw$$ His example was this: Let $a = 10$ , we look for the logarithm of a number which exceeds $1$ by the smallest possible amount, for instance: $$1+\frac{1}{1000000}$$ so that…
Gianna
  • 35
1
vote
3 answers

Evaluating a logarithm.

I cant seem to grasp how to evaluate this specific example $\log_5(287)$ as I dont know, what to do in the case of the base not fitting perfectly into the $(x)$ value.
1
vote
1 answer

Solving x^y=y^x with change of base of logarithm

This guy solves $x^y=y^x$ by introducing a parameter $t$: $$x=t^\frac{1}{t-1}$$ $$y=t^\frac{t}{t-1}$$ Fine, but my first instinct was to use the change-of-base formula: $$\frac{\ln{y}}{\ln{x}} = \frac{\ln{x}}{\ln{y}}$$ $$(\ln{y})^2 =…
spraff
  • 1,587
1
vote
4 answers

Evaluate Log Expression

If $\log_22016=a$, $\log_32016=b$, $\log_72016=c$, evaluate $\frac{1}{2a}+\frac{1}{5b}+\frac{1}{10c}$ My work: I've added the fractions to be $$\frac{5bc+2ac+ab}{10abc}$$ and substituted $a, b, c$ with the change of base formula, but I can't get it…
1
vote
2 answers

If $\frac{\log x}{y - z} = \frac{\log y}{z - x} = \frac{\log z}{x - y}$, prove that $xyz = 1$ without using the following method

If $$\frac{\log x}{y-z} = \frac{\log y}{z-x} = \frac{\log z}{x-y}$$ prove that $$xyz = 1 $$. without using this method :- $$ \mbox{Let }\frac{\log x}{y-z} = \frac{\log y}{z-x} = \frac{\log z}{x-y} = k\\ \mbox{this gives three equations…
anonymous
  • 601
1
vote
5 answers

How to prove $3^{\log_4n} = n^{\log_43}$?

I got this from "4.4 The recursion-tree method for solving recurrences" in book "Introduction to Algorithms" The recurrence that try to use recursion-tree to solve is: $T(n) = 3T(n/4) + cn^2$