برای رسم گراف بستههای متعددی هست که من پیشنهادم برای این کار بسته tkz-graph است.
\documentclass{article}
\usepackage{tkz-graph}
\begin{document}
\begin{tikzpicture}[scale=1.75]
\GraphInit[vstyle=Normal]
\Vertex{A}
\Vertex[x=4,y=0]{B}
\Vertex[x=1,y=2]{C}
\Edge[style={bend left}](B)(A)
\Edges(A,B,C,A)
\end{tikzpicture}
\end{document}