4

I have problem with $$\lim_{x\to 0}\frac {e^{3x}-1}{e^{x}-1} $$ I have no idea what to do first.

3SAT
  • 7,512
K.Hurwitz
  • 149

7 Answers7

20

without using L'Hopital's rule

$$\lim_{x\to 0}\frac{e^{3x}-1}{e^x-1}=\lim_{x\to 0}\frac{(e^x-1)(e^{2x}+e^x+1)}{e^x-1}=\lim_{x\to 0} e^{2x}+e^x+1=3$$

13

Hint Recognize $e^{3x}-1$ as a difference of cubes.

9

HINT: Note that $x^3-1=(x-1)(x^2+x+1)$

Mark Bennet
  • 100,194
  • 2
    Great answer, and no need for L'Hopital's Rule. Perhaps use a different variable than the one already in use in the original question? For example $y^3-1 \equiv (y-1)(y^2+y+1)$. – Fly by Night Jan 06 '16 at 18:03
7

Hint: Use equivalents: $$\mathrm e^{ax}-1\sim_0 ax,\quad\text{hence}\quad \frac{\mathrm e^{ax}-1}{\mathrm e^x-1}\sim_0 \frac{ax}x=a.$$

Alternative hint: $$\frac{\mathrm e^{ax}-1}{x}\xrightarrow[x\to0]{}(\mathrm e^{ax})'\,\Big\lvert_{x=0}$$

Bernard
  • 175,478
  • 1
    This answer needs more explanation. I know about limits, but don't really understand what you're doing here. What does $\sim_0$ mean? How is the limit of the fraction $$\frac{\mathrm{e}^{ax}-1}{x}$$ related to the derivative of $\mathrm{e}^{ax}$? – Fly by Night Jan 06 '16 at 18:08
  • @Fly by Night: The problem is with the first hint? – Bernard Jan 06 '16 at 18:09
  • This answer does not need to be improve, everything is crystal-clear. Besides, the OP has shown no effort. @FlybyNight there is no need to be aggresive. – C. Falcon Jan 06 '16 at 18:14
  • @ClementC. If you hover your mouse over "add a comment", what does the pop-up say? – Fly by Night Jan 06 '16 at 18:14
  • @ClementC. Your links were very helpful. But my comment was directed at the poster of this answer to improve his post. I thought you where him. That was my mistake. I suppose that you could edit his original and add your links? I'll be deleting my comments because they aren't relevant to the discussion. Take care. – Fly by Night Jan 06 '16 at 18:18
  • @Clement C. : Sometimes, people are really aggressive on this site… Anyway, I only wrote hints, not a full solution. – Bernard Jan 06 '16 at 18:19
  • @Bernard The problem was that your "hint" was very hard to understand. As someone not able to evaluate the original limit, one would find words like "equivalents" and symbols like $\sim_0$ very hard to understand. The truth is that I don't know what they mean. Like I said: your post would be improved by adding more explanation. – Fly by Night Jan 06 '16 at 18:24
  • @Bernard Thanks for adding the links and explainations. It's a much better answer now. +1 – Fly by Night Jan 06 '16 at 18:26
  • 2
    @Fly by Night: I've added a link (different from Clement C's, more specifically about equivalence) hopefully useful about this important notion in analysis. – Bernard Jan 06 '16 at 18:28
  • 1
    @Bernard That's great, thank you! – Fly by Night Jan 06 '16 at 18:34
  • (Since this is no longer relevant, and of little interest to anyone, I'll remove my comments :) ) – Clement C. Jan 06 '16 at 18:51
5

Let's apply L'Hospital's Rule here; i.e.,

$$\lim_{x\to 0}\frac {e^{3x}-1}{e^{x}-1}= \lim_{x\to 0}\frac {3e^{3x}}{e^{x}}=\bbox[5px,border:2px solid #F0A]3\,.$$

OR We can try substitution if you're not familiar with L'H rule:

$$t=e^x\Rightarrow \color{blue}{t\rightarrow1 \: as \: x\rightarrow0} \: \Rightarrow\lim_{x\to 0}\frac {e^{3x}-1}{e^{x}-1}=\lim_{t\to 1}\frac {t^3-1}{t-1}=\lim_{t\to 1}\frac {(t-1)(t^2+t+1)}{t-1}=\lim_{t\to 1}(t^2+t+1)=\bbox[5px,border:2px solid #F0A]3$$

What you see above is the graph of $y=\frac{t^3-1}{t-1}$. As you can see it is not defined at $t=1$, but it has a limit that is equal to $3$ at $t=1$.

frosh
  • 1,300
4

My first thought was to write it as $$ \frac{\left(\lim\limits_{x\to 0} \dfrac{e^{3x}-e^{3\,\cdot\,0}}{x-0} \right)}{\left(\lim\limits_{x\to 0} \dfrac{e^x-e^0}{x-0} \right)} = \frac{\left.\dfrac d {dx} e^{3x} \,\right|_{x=0}}{\left.\dfrac d {dx} e^x \,\right|_{x=0}} = \text{etc.} $$

But the simpler way is to write $e^{3x}-1 = (e^x-1)(e^{2x}+e^x+1)$ and then cancel.

1

Looking at Taylor series for $x \to 0$: $$ \lim_{x \to 0} \frac{e^{3x}-1}{e^x-1} = \frac{1 + 3x - 1 + \mathcal{O}(x^2)}{1 + x - 1 + \mathcal{O}(x^2)} = \frac{3x + \mathcal{O}(x^2)}{x + \mathcal{O}(x^2)} = 3 $$

SSF
  • 1,260