0

How to evaluate $$\lim_{x\to0}\frac{x^2+2\cos x-2}{x \sin^3x}?$$

I tried using L'Hospital but it seemed that there is an infinite loop of 0/0 form

Bernard
  • 175,478
Jave
  • 1,160
  • Hint/suggestion: try going term by term. – Sean Roberson Jul 08 '18 at 02:30
  • 1
    You should not get an infinite loop of $0/0$ using L'Hopital. The derivatives of the numerator are

    $$2x-2\sin x,\quad 2-2\cos x,\quad 2\sin x,\quad\text{and}\quad2\cos x$$

    at which point the limit in the numerator is $2\cos0=2$, not $0$. The derivatives of the denominator are similarly straightforward, albeit increasingly tedious, to compute.

    – Barry Cipra Jul 08 '18 at 03:35
  • 1
    Use Approach0 before answering a standard exercise, please. – Jyrki Lahtonen Jul 08 '18 at 07:31

4 Answers4

2

Using that $\cos x= 1-\frac{x^2}2+\frac{x^4}{24}+o(x^6)$, and $\sin x=x+o(x^3)$, $$ \frac{(x^2+2\cos x-2)}{(x \sin^3x)} =\frac{x^4/12+o(x^6)}{x(x+o(x^3))^3} =\frac{x^4/12+o(x^6)}{x^4+o(x^6)} =\frac{1/12+o(x^2)}{1+o(x^2)}\xrightarrow[x\to0]{}\frac1{12}. $$

Martin Argerami
  • 205,756
2

Use Taylor series for $\cos x$ about $x=0$

$$\cos x = 1 -x^2/2+x^4/24 -... $$

Thus $$\lim_{x\to0}\frac{(x^2+2\cos x-2)}{(x \sin^3x)}=\lim_{x\to0}\frac{x^4}{12x \sin^3x} =\frac {1}{12}$$

1

All that is needed is $\sin(x) =x-x^3/6+O(x^5) =x(1-x^2/6+O(x^4)) $ so $\sin^2(x) =x^2(1-x^2/3+O(x^4)) $ and $\sin^3(x) =x^3(1-x^2/2+O(x^4)) $.

$\begin{array}\\ \dfrac{(x^2+2\cos x-2)}{x \sin^3x} &=\dfrac{x^2+2(\cos x-1)}{x \sin^3x}\\ &=\dfrac{x^2+2(-2\sin^2(x/2)}{x \sin^3x}\\ &=\dfrac{x^2-4\sin^2(x/2)}{x \sin^3x}\\ &=\dfrac{x^2-4(x/2)^2(1-(x/2)^2/3+O(x^4))}{x\cdot x^3(1-x^2/2+O(x^4))}\\ &=\dfrac{x^2-x^2(1-x^2/12+O(x^4))}{x^4(1-x^2/2+O(x^4))}\\ &=\dfrac{x^4/12+O(x^6))}{x^4(1-x^2/2+O(x^4))}\\ &=\dfrac{1/12+O(x^2))}{1-x^2/2+O(x^4)}\\ &\to 1/12\\ \end{array} $

marty cohen
  • 107,799
0

For the L'Hospital's rule, use $\sin x\sim x \Rightarrow \sin^3x \sim x^3, x\to0$: $$\begin{align}\lim_{x\to0}\frac{x^2+2\cos x-2}{x \sin^3x}&=\lim_{x\to0}\frac{x^2+2\cos x-2}{x^4}\stackrel{LR}=\\ &=\lim_{x\to0}\frac{2x-2\sin x}{4x^3}\stackrel{LR}=\\ &=\lim_{x\to0}\frac{2-2\cos x}{12x^2}\stackrel{LR}=\\ &=\lim_{x\to0}\frac{2\sin x}{24x}=\\ &=\frac{1}{12}.\end{align}$$

farruhota
  • 31,482