latex code for this linear combination:
I have this code for the cyclic text but I have no idea how to make a bunch of them as a linear combination.
\documentclass[tikz,border=2pt]{standalone}
\begin{document}
\begin{tikzpicture}[->]
\node (a) at (90:2cm) {Democrat};
\node (b) at (-30:2cm) {Republician};
\node (c) at (210:2cm) {Third};
\draw (-20:2cm) arc (-20:60:2cm) node[midway, right] {{\footnotesize 1}};
\draw (120:2cm) arc (120:200:2cm) node[midway, left] {{\footnotesize -1}};
\draw (220:2cm) arc (220:320:2cm) node[midway, below] {{\footnotesize 1}};
\end{tikzpicture}
\end{document}


