[Tex/LaTex] Graphical representation of complex numbers using TikZ

tikz-pgf

enter image description here

Can anyone draw this graph in LaTeX using the TikZ package?

Best Answer

Welcome to TeX.SE! Yes, many users here can draw such diagrams. Notice, however, that the purpose of this site is to exchange codes and not let others draw diagrams for you. Anyway, as you are new here, here's a start.

\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}
\draw (-3,0) -- (4,0);
\draw (0,-3) -- (0,4);
\draw (0,0) -- (15:3) node[right]{$z_1$}-- ++(75:3) node[above right]{$z_1+z_2$};
\draw (0,0) -- (75:3) node[above]{$z_2$};
\end{tikzpicture}
\end{document}

enter image description here

Related Question