Tuesday, June 13, 2017

calculus - Why doesn't using the approximation sinxapproxx near 0 work for computing this limit?



The limit is
limx0(1sin2x1x2)


which I'm aware can be rearranged to obtain the indeterminate 00, but in an attempt to avoid L'Hopital's rule (just for fun) I tried using the fact that sinxx near x=0. However, the actual limit is 13, not 0.




In this similar limit, the approximation reasoning works out.


Answer



If we take one more term in the Taylor expansion:



sinxxx36+sin2xx22xx36+1sin2x1x2x4/3=1x211x2/3limx0[1sin2x1x2]=limx0[1x2(11x2/31)]=limx0[1x211+x2/31x2/3]=limx013x2=13






To see where the first-order expansion went wrong, it's necessary to keep track of where the error term goes:




sinx=x+O(x3)sin2x=x2+2xO(x3)+O(x3)2=x2+O(x4)+O(x6)=x2+O(x4)1sin2x=1x2+O(x4)=1x211+O(x2)1sin2x1x2=1x2[11+O(x2)1]=1x211+O(x2)1+O(x2)=O(x2)x211+O(x2)=O(1)



Thus the sinxx approximation is not accurate enough to estimate even the constant term of the expression in the limit. (Note that it does allow us to say that there are no O(n1) or bigger terms, so the limit probably won't diverge.)


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...