2
$\begingroup$

I've been trying to solve the following limit using different approaches (L'Hôpital, asymptotic equivalences) but I can't get to the right answer. Wolfram Alpha returns $\frac{1}{2}$ as the answer, and so does my calculator when I insert small values for $x$. The step-by-step solution isn't available though.

$$\lim_{x\to 0}\frac{\log(\frac{e^{x^2}-1}{x^2})}{x\sin x}$$

Thanks in advance!

  • 0
    Welcome to MSE. You should always type all the relevant information to the question yourself (here is [how to format maths](http://math.stackexchange.com/help/notation) guide), since external links can become broken, and this question won't be searchable, thus won't help anyone in the future.2017-01-03
  • 0
    On another note, what is `sen x`?2017-01-03
  • 0
    Is that $$\lim_{x\to0}\frac{\log\frac{e^{x^2}-1}{x^2}}{x\sin x}$$2017-01-03
  • 0
    I already included the content of the link to the answer. I guess Manuel is spaniard like me, we use $sen x$ here instead of $sin$ when working in our native language.2017-01-03
  • 0
    Yeah, sen is how Spanish math textbooks write sin.2017-01-03
  • 1
    Applying L'Hospital twice yields the wanted result. Not really nice since the numerator gets quite long but it works.2017-01-03

4 Answers 4

3

You have :

$$ \lim_{x \to 0} \frac{\log \left(\frac{e ^ {x^2} - 1}{x^2} \right)}{x\sin x} = \lim_{x \to 0} \frac{\log \left(\frac{e ^ {x^2} - 1}{x^2} \right)}{x^2} \times \frac{x}{\sin x} $$

We know that $\displaystyle{\lim_{x \to 0} \frac{x}{\sin x} = 1}$. Now, substituting $x^2 \rightarrow t$, $$ \begin{align} \lim_{t\to 0} \frac{\log \left(\frac{e ^ {t} - 1}{t} \right)}{t} &= \lim_{t\to 0} \frac{\log \left(1 + \frac{e ^ {t} - 1 - t}{t} \right)}{\frac{e ^ {t} - 1 - t}{t}} \times \frac{e ^ {t} - 1 - t}{t^2} \\ &= 1 \times \frac{1}{2} = \frac{1}{2} \end{align}$$

  • 0
    Thanks, Guru! I hadn't thought about that transformation, but it makes sense and yields the same result as Wolfram Alpha.2017-01-03
  • 0
    You're welcome, don't forget to mark the answer to your question as accepted.2017-01-03
  • 0
    I don't think I completely understand something. Why do you add and substract 1? It's the last step that I don't understand. How do you infer that all those things equal 1 times 1/2? Edit: okay, I get it now haha. Thanks!2017-01-04
0

Hint

  • replace $\sin(x)$ by its equivalent $x$.

  • put $x^2=t$

  • use $\frac{\ln(1+X)}{X}\sim X \;(X\to 0)$.

with $X=\frac{e^x-1}{x}-1$.

  • 0
    Is $\lim\frac{\ln(1+x)}{x}\to1$ equivalent to $\lim x\to0$ as $x\to0$?2017-01-03
0

Explaining things a little bit, if $x \to 0 \ e^{x^2} \sim 1+x^2 + \frac{x^4}{2} + O(x^8)$. IF you make this expansion, the rest comes out easily once you use $\log(1+t) \sim t \to \frac{\log (1+t)}{t} \to _t 1$.

This is the result of Maclaurin series expansion.

0

I am converting my comment into an answer. You can actually use L'Hospital to evaluate your limit. But you have to apply it twice. This can be seen as differentiating the denominator twice yields $$(x\sin(x))''=2\cos(x)-x\sin(x)$$ which converges to $2$ for $x \to 0$.

Applying L'Hospital the first time is legit since $x\sin(x) \to 0$ and $\log\left(\frac{e^{x^2}-1}{x^2}\right) \to 0$ for $x\to 0$ as

$$\lim_{x\to 0} \frac{e^{x^2}-1}{x^2}=\lim_{x \to 0} \frac{2x e^{x^2}}{2x}=1.$$

The same can be seen when applying L'Hospital for the second time. I leave that to you. Finally you get

$$\lim_{x \to 0} \frac{\log\left(\frac{e^{x^2}-1}{x^2}\right)}{x\sin(x)} = \frac12.$$