I need to solve this limit please, $\lim _{x\to 1}\left(\frac{\ln \left(\left|x-2\right|\right)}{\ln \left(x\right)}\right)$ I tried various ways to solve it but the best one was simplifying it and I got in the end 1*1 * $\lim _{x\to 1}\left(\frac{\left(\left|x-2\right|-1\right)}{x-1}\right)$ now my problem is how to solve those kind of limit, when absolute values are in. I know that we need to separate it for example 1- and 1+, but that when the operation is equals to 0, here $\left|x-2\right|$ when x=1 is not equals to 0. So, we can't discuss the possibilities right? Thanks in advance P.S: L'Hopital rule is not allowed, please do not use it nor the graphing.
-
If x is in some small environment of 1, the expression you take your absolute value if is always negative, so you can get red if the absolute value and write 2-x instead. – joedoe8585 Jan 20 '16 at 21:30
-
@joedoe8585 Thanks for your comment, but when I did it, I couldn't solve the second limit that I wrote above! – Amine Marzouki Jan 20 '16 at 21:32
-
@joedoe8585 oh what stupid I am, it's very easy. thanks again brother ! – Amine Marzouki Jan 20 '16 at 21:33
-
What about Taylor series? – Alex Jan 20 '16 at 21:47
-
@Alex I always see this name, but I have no idea about Taylor series, we didn't study a such thing, please could you give me a reference or a link that explains that ? wiki is not that great. Thanks ! – Amine Marzouki Jan 20 '16 at 21:49
-
I don't quite understand the restrictions such as L'Hospital rule is not allowed (similar restrictions happened a lot for other problems). If so, I guess you are also disallowed to use Taylor theorem and seems like the tools you can apply are very limited (also more technical). So may I ask what is the purpose of solving this problem? – Zhanxiong Jan 20 '16 at 22:23
-
@Solitary Well we didn't study Taylor nor L'Hopital rule, so we can't use it ;) . For the purpose, it's just training, know more techniques and tricks in limits, I think that's it :) – Amine Marzouki Jan 20 '16 at 22:29
-
Can you use the definition of derivatives, if so, I can give you an answer. However, it essentially repeats the proof of the general L' Hospital rule. – Zhanxiong Jan 20 '16 at 22:31
-
@Solitary I know the proof, but I avoid using it, because I want to solve it in more complex ways, just to learn more :) – Amine Marzouki Jan 20 '16 at 22:33
-
Now I see your point. – Zhanxiong Jan 20 '16 at 22:36
3 Answers
I am not sure the following answer satisfies you, which made the process (unnecessarily) more complicated.
First the absolute sign can be safely removed when $x$ is sufficiently close to $1$. Then changing the variable $t = \log x$, then as $x \to 1$, $t \to 0$, and the expression to be evaluated can be written as \begin{align} & \frac{\log(2 - e^t)}{t} = \log(1 + 1 - e^t)^{1/t} = \log[1 + (1 - e^t)]^{\frac{1}{1 - e^t}\times \frac{1 - e^t}{t}} = \frac{1 - e^t}{t} \times\log[1 + (1 - e^t)]^{\frac{1}{1 - e^t}} \end{align} Clearly, $$\lim_{t \to 0}\frac{1 - e^t}{t} = - \lim_{t \to 0}\frac{e^t - e^0}{t - 0} = -\left.(e^t)'\right|_{t = 0} = -1.$$ And the second part tends to $1$ as $t \to 0$ in view of $1 - e^t \to 0$ and $\lim_{x \to 0}(1 + x)^{1/x} = e$. Hence the result is $-1$.

- 14,040
-
Wow, that was complicated but more challenging, thank you very much for your answer ! – Amine Marzouki Jan 20 '16 at 23:00
-
@AmineMarzouki Why not the simpler, the better? Are you doing math for fun?:) – Zhanxiong Jan 20 '16 at 23:02
-
In this moment YES :D I find it fun. I found another funny limit to play with but unfortunately it was very difficult, it's been an hour or so, and still can't solve it. here is the link : http://math.stackexchange.com/questions/1445864/how-to-calculate-lim-limits-x-to-0-fracx2-sin2xx2-sin2x-with?rq=1 if you wanna play with it :D – Amine Marzouki Jan 20 '16 at 23:04
-
even if I wasn't doing it for fun, it's forbidden for us to use L'Hospital because we still didn't study it, neither the taylor series too – Amine Marzouki Jan 20 '16 at 23:06
You should have $$ \lim_{t\to0}\frac{\log(1+t)}{t}=1\tag{*} $$ available. You can also note that, for $x$ sufficiently near to $1$, $|x-2|=2-x$. Thus your limit can be written $$ \lim_{x\to 1}\frac{\log(2-x)}{x-1}\frac{x-1}{\log x}= \lim_{x\to 1}\frac{\log(2-x)}{x-1} \cdot\lim_{x\to 1}\frac{x-1}{\log x} $$ provided both limits exist. But they do, because $$ \lim_{x\to 1}\frac{\log(2-x)}{x-1}= \lim_{x\to 1}-\frac{\log(1+(1-x))}{1-x}=-1 $$ and $$ \lim_{x\to1}\frac{x-1}{\log x}= \lim_{x\to1}\frac{x-1}{\log(1+(x-1))}=1 $$ both because of (*).
Alternatively, you can use the Taylor expansion, by doing the substitution $t=x-1$, so the limit becomes $$ \lim_{t\to0}\frac{\log(1-t)}{\log(1+t)}= \lim_{t\to0}\frac{-t+o(t)}{t+o(t)}=-1 $$

- 238,574
-
Thanks for your answer, but I didn't fully understand this $$ \lim_{x\to 1}\frac{\log(2-x)}{x-1}= \lim_{x\to 1}-\frac{\log(1+(1-x))}{1-x}=-1 $$ can you clarify it more ? – Amine Marzouki Jan 20 '16 at 23:11
-
@AmineMarzouki If you do the substitution $t=1-x$, you get $\lim\limits_{t\to0}-\frac{\log(1+t)}{t}=-1$. Similarly for the other one, with $t=x-1$. – egreg Jan 20 '16 at 23:21
-
Aha That makes sense, It's nearly the same way that I solved it. Thank you ! @egreg – Amine Marzouki Jan 20 '16 at 23:25
Put $x=1+z$ so you have to calculate $$\lim _{z\to 0}\frac{\ln (|z-1|)}{\ln (z+1)}=\lim _{z\to 0}\frac{\ln (|-(1-z)|)}{\ln (z+1)}=\lim _{z\to 0}\frac{\ln (1-z)}{\ln (z+1)}=$$.
Because of the form $\frac 00$ we apply l'Hôpital's Rule and get easily $$\lim _{z\to 0}\frac{\ln (1-z)}{\ln (z+1)}=-1$$.

- 29,594