I know that the tangent at 0 of x Log [Abs [x]] is -Infinity. But this is not clearly visible on the curve at the scale x = -1 to x = 1.
Indeed, the convergence of the slope towards -Infinity is very slow.
I would really like to highlight this behavior thanks to an astute PlotRange coupled with a Manipulate which makes it possible to observe that the slope becomes infinite when looking at scales always.
I tried to do this:
Manipulate[
Show[Plot[x *Log[Abs[x]], {x, (-10)^-k, 10^-k}, PlotRange -> All],
Plot[x - 1, {x, (-10)^-k , 10^-k}], PlotRange -> All], {k, -5, 5}]
but it returns an error message.




f=x*Log[Abs[x]]or its derivative / slope? I dont see the derivative in your plot command. – Mauricio Fernández Nov 12 '16 at 23:46