I'm presenting some basic functions to my students, one of them being square root. When using TikZ to represent it, I always see an annoying "break" between 0 and 1, on what should be a very smooth curve, despite using "smooth".
Here is my MWE, how can I have a proper rendering of the square root function?
Thanks!
Note: square and cube are perfectly smooth. At this stage, square root and cubic root are the 2 showing such an annoying "break".
\documentclass{report}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[->] (0,0) -- (10,0) node[right] {$x$};
\draw[->] (0,0) -- (0,4) node[above] {$y$};
\draw[domain=0:10, smooth, variable=\x, blue, line width=0.8pt] plot (\x,{sqrt(\x)});
\end{tikzpicture}
\end{document}