When plotting the square root function I get a kink, in this MWE at ca. x=0.2 (this depends on the domain). Is there a way avoiding this?
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw [color=blue, domain=0:4, line width=1.2] plot [smooth] (\x,{sqrt(\x)});
%\filldraw[black] (0.2,0.45) circle (1pt);
\end{tikzpicture}
\end{document}
