How to solve $\lim_{x\to 0}\frac{ 2x^2}{1-\cos x}$?

554 Views Asked by At

I have a little doubt. I tried to solve this limit in two different ways, one works and the other doesn't but I don't understand why. I would really appreciate if someone could help me to understand where did I make the mistake.

Fist way (that works) \begin{align*} \lim_{x \to 0} \frac{2x^2}{1 - \cos x} \cdot \frac{1 + \cos x}{1 + \cos x} & = \lim_{x \to 0} \frac{2x^2 (1 + \cos x)}{\sin^2 x} \\ & = \lim_{x \to 0} 2 \cdot \frac{x^2}{\sin^2 x} \cdot (1 + \cos x) \\ & = 2 \cdot 1 \cdot 2 \\ & = 4. \end{align*}

Second way (that doesn't work)

\begin{align*} \lim_{x \to 0} \frac{2 x^2}{1 - \cos x} \cdot \frac{1 + \cos x}{1 + \cos x} & = \lim_{x \to 0} \frac{2 x^2 (1 + \cos x)}{(1 - \cos x)(1 + \cos x)} \\ & = \frac{0}{0} \end{align*}

3

There are 3 best solutions below

3
On BEST ANSWER

For your second way, you ended with where you started. Since you cancel away $(1+\cos x)$ after you introduce them.

If you substitute the value in and you encounter $\frac{0}{0}$, it is in indeterminate form and L'hopital's rule is a useful tool.

$$\lim_{x \to 0} \frac{2x^2}{1-\cos x}=\lim_{x \to 0} \frac{\frac{d}{dx}(2x^2)}{\frac{d}{dx}(1-\cos x)}=\lim_{x \to 0}\frac{4x}{\sin x}=4$$

0
On

Third way by Taylor's series

$$\cos x=1-\frac{x^2}{2}+o(x^2)$$

thus

$$\frac{2x^2}{1-\cos x}=\frac{2x^2}{1-1+\frac{x^2}{2}+o(x^2)}=\frac{4}{1+o(1)} \to4$$

thus

$$\lim_{x\to0} \frac{2x^2}{1-\cos x}=4$$

0
On

In the first case, by multiplying by $a/a$, you were able to rewrite the denominator. In the second, you just factored out the changes you'd made, reversing your first step.