Im trying to reproduce the attached figure in ordre to clarify the definition of the limit of a function. Can you help me please to finish the tikz code that I already started.
My problem is the random function in the picture as well as the arrows on both x et y axis.
This is my code :
\begin{center}
\begin{tikzpicture}
\draw[help lines, color=gray!30, dashed] (-3,-3) grid (6,4);
\draw[->,ultra thick] (-3,0)--(5,0) node[right]{$x$};
\draw[->,ultra thick] (0,-3)--(0,4) node[above]{$y$};
\draw[dashed,color=blue] (2,0) node[below] {$$} -- (2,0.69) -- (0,0.69)
node[left] {};
\draw[dashed,] (2.5,0) node[below] {$x_0$} -- (2.5,0.916) -- (0,0.916)
node[left] {$l$};
\draw[dashed,color=blue] (3,0) node[below] {$$} -- (3,1.09) -- (0,1.09)
node[left] {};
\draw[thick,red,domain=0.5:5.5,samples=200] (2,3) node[anchor=north west] {} plot (\x,{ln(\x)});
%\node[fill=green, text=red, circle, draw=black] {With node}
\end{tikzpicture}
\end{center}
and this is the result


