4

So the limit is as $h$ approaches $0$ of $\displaystyle \frac{\ln(x+h)-\ln(x)}{h}$, which simplifies to $\displaystyle\frac{\ln\left(\frac{x+h}{x}\right)}{h}$, which simplifies to $\displaystyle\frac{\ln\left(1+ \frac hx\right)}{h}$.

I got stuck here. , how should I continue?

Asaf Karagila
  • 393,674

6 Answers6

5

For finite non-zero $x,$ $$\lim_{h\to0}\dfrac{\ln\left(1+\dfrac hx\right)}h=\dfrac1x\cdot\lim_{h\to0}\dfrac{\ln\left(1+\dfrac hx\right)}{\dfrac hx}=?$$

  • And how does one evaluate that limit? That is the point of the problem. – Mark Viola Jun 29 '19 at 15:09
  • @MarkViola, https://math.stackexchange.com/questions/650502/evaluate-lim-limits-y-to-0-log1y-y-without-lhr-or-taylor-series – lab bhattacharjee Jun 29 '19 at 15:14
  • And neither of the answers posted in that reference are satisfactory as they rely on circular logic. I just posted a solution on this page that relies only on simple bounds for the logarithm, which can be found using elementary (i.e., pre-calculus) analysis only. – Mark Viola Jun 29 '19 at 15:17
5

In THIS ANSWER, I used only the limit definition of the exponential function and Bernoulli's Inequality to show that the logarithm function satisfies the inequalities

$$\frac{x-1}{x}\ge \log(x)\le x-1\tag1$$

Hence, using $\log(x+h)-\log(x)=\log\left(1+\frac hx\right)$, we from $(1)$ we have

$$\frac{\frac1x}{1+\frac hx}\le \frac{\log\left(1+\frac hx\right)}{h}\le \frac1x\tag2$$

Applying the squeeze theorem to $(2)$ we find the coveted limit

$$\lim_{h\to 0}\frac{\log(x+h)-\log(x)}{h}=\frac1x$$

Mark Viola
  • 179,405
3

If the definition of $\ln x$ is

$$\ln x = \int_1^x \frac{1}{t} \; dt$$

Then you can write your limit as

$$\lim_{h \to 0 } \frac{1}{h} \int_x^{x+h} \frac{1}{t} \; dt.$$

Then note that for very small $h$, the area represented by the integral is nearly a rectangle of width $h$ and height $1/x$, so the limit equals

$$\lim_{h \to 0} \frac{1}{h}(h/x) = \frac{1}{x}.$$

  • 1
    Of course this approach is the one I would take. But the OP might not have learned anything about integrals yet. So, I posted a solution that relies simple bounds for the logarithm, which can be found using elementary (i.e., pre-calculus) analysis only. – Mark Viola Jun 29 '19 at 15:12
2

$$\lim_{h\to 0} \frac{\ln(1+\frac hx)}{h}=\frac1x\lim_{\frac hx \to 0}\frac{\ln(1+\frac hx)}{\frac hx}=\frac1x$$

1

Multiply and divide the denominator by $x$. Clearly we won't differentiate at $x=0$.

So,

$$L = \lim_{h\to0}\frac{\ln(1+\frac{h}{x})}{x\cdot\frac{h}{x}} = \frac{1}{x}\lim_{\frac{h}{x}\to0}\frac{\ln(1+\frac{h}{x})}{\frac{h}{x}} = \frac{1}{x}\cdot1 = \frac{1}{x}$$

19aksh
  • 12,768
0

Option:

$x >0$

$\log x=\displaystyle{\int_{1}^{x}} (1/t )dt.$

MVT for integration.

$(1/h)\dfrac{\log (x+h)-\log x}{h}=$

$(1/h)\displaystyle{\int_{x}^{x+h}}(1/t)dt=$

$(1/h)(1/s)\displaystyle{\int_{x}^{x+h}}1 dt=$

$(1/h)(1/s)h$; where $s \in [x,x+h].$

Take the limit $h \rightarrow 0.$

Peter Szilas
  • 20,344
  • 2
  • 17
  • 28
  • Of course this approach is the one I would take. But the OP might not have learned anything about integrals yet. So, I posted a solution that relies simple bounds for the logarithm, which can be found using elementary (i.e., pre-calculus) analysis only. – Mark Viola Jun 29 '19 at 15:13
  • Agreed.Thought it could complement the given answers. – Peter Szilas Jun 29 '19 at 15:28