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

Problem on logarithm

$$\mbox{If}\ \log_{2a}\left(a\right) = x,\ \log_{3a}\left(2a\right) = y,\ \log_{4a}\left(3a\right) = z.\quad \mbox{Then, what is the value of}\ xyz-2yz\,?. $$ Not exactly able to solve it any further.
Ujjwal
  • 165
  • 9
0
votes
1 answer

$\log_5 {(x+1)} - \log _4 {(x-2)} = 1$

I tried to solve this equation by changing bases. $\dfrac {\log_4 (x+1)}{\log_4 5} = \log_4 (4x -8)$ $.86 \log_4 (x+1) = \log_4 (4x-8)$ Then i got stuck. Please share your idea with me.
sylvia
  • 11
  • 1
0
votes
1 answer

Write $b$ in terms of $a$.

If $a$ and $b$ are both positive and unequal, and: $$\log_ab+\log_ba^{2}=3$$ Find $b$ in terms of $a$. Tidying up a bit, letting; $y=\log_ab$ ; and then solving the quadratic gives two solutions. $$\log_ab=1$$ and; $$\log_ab=2$$ Therefore ($a=b$) or…
Kantura
  • 2,721
0
votes
4 answers

Solve for $x$: $14^{4x} = 3^{-x-3}$ Write the exact answer using base-10 logarithms

I am having trouble with understanding this question and would appreciate some help and guidance. Solve for x. $$14^{4x} = 3^{-x-3}$$ Write the exact answer using base-10 logarithms
Paul
  • 11
0
votes
1 answer

It's correct to say that $\log _{ 1 }{ 1 } =1\quad $ & $0$?

$\log _{ 1 }{ 1 } =1\quad $ v $0$? Because $1^1 = 1$ and $1^0 = 1$?
Xiaox
  • 1
0
votes
2 answers

Solving for x with logarithms

I've been asked to solve for $x\,$ in $5^x + 4·5^{x+1} = 63$ The answer is $x = \frac{\log3}{\log5}$ I cannot do this without a calculator. Is there a particular method I should be using to approach this? The calculator simplifies the…
Peter
  • 11
0
votes
2 answers

Log equation $\log(2x-1) = -x+3$ with two non log values

What is the correct approach to solving a log equation with more than one non log value? Please demonstrate using the following equation: $$\log(2x-1)=-x+3$$
Rndpbs
  • 37
0
votes
3 answers

Ambiguous conditions for $x$ in logarithm?

I have just realised that there is a little ambiguity in defining conditions for $x$ in logarithm. Let me illustrate it on a simple example: $\log{x}$ is valid for $x>0$ , $2\log{x}$ is also valid only for $x>0$ , but $\log{x^2}$ is valid for both…
0
votes
1 answer

A number based on which the logarithmic function outputs negative values for proper fractions only?

Let this number be $B$, $B$ achieves the following: $\frac{\ln(x)}{\ln(B)}>0$, for x>1 $\frac{\ln(x)}{\ln(B)}<0$, for 1>x>0 If such a number is worth serious attention, what is its name by which I can find more information?
0
votes
1 answer

Logarithm common factor problem

there exist positive A, B, and C, with no common factor greater than 1, such that $A.log_{200}5 +B.log_{200}2=C$ what is A + B +C I dont know how to equal this equation
0
votes
2 answers

Minimum of the antilogarithm

Given a $ a \in \mathbb N $, what is the lowest $ b \in \{1, ..., a \} $ for which $ log_b a \in \mathbb N $ ? How to compute this function in a non-iterative way? Examples (even if too obvious): $ a = 1 \Rightarrow b = 1 $, $ a = 2 \Rightarrow b =…
0
votes
1 answer

During the 56th month or the 57th month?

A car depreciates in value according to the model $$V=Ak^t$$ where £$V$ is the value of the car $t$ months from when it was new. Its value when new was £$12499$ and $36$ months later its value was £$7000$. Find the value of $A$ \begin{align} Ak^0 &…
0
votes
7 answers

What is "8 log 2"?

When someone says "8 Log 2" what does this equate to in writing? Does it mean the following? $$ \log _{2} 8 $$ And if so, what is the value of this? When I plug those numbers into this log calculator, it tells me 3. But when I plug it into Google's…
Saqib Ali
  • 125
0
votes
2 answers

Logs - changing the base to evaluate

Just a bit confused about how to evaluate the following $$\log_3 8\times \log_5 9\times \log_2 5$$ What I have done so far: I have used the change of base rule to change each log to base $3$, so I ended up with this after cancelling: $$\log_3…
0
votes
2 answers

Log rules being applied to LN (Silent Logs)

I am doing a question on logarithms and am a bit confused regarding a solution I have found. As you can see below in the solution at one point the questions requires you to square (4ln(2))^2. When I read this this was my process: Square the 4 to 16…
Code
  • 147