Also, should I be bothering to make these kinds of things with just TikZ or should I also learn the PGF package?
Code: Select all
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw [<->] (0,5)--(0,-1);
\draw [<->] (-1,0)--(5,0);
\draw [red, thick, domain=0:5] plot (\x, {sqrt(\x)});
\end{tikzpicture}
\end{document}