topology-non-homotop-paths.tex 783 B

12345678910111213141516171819
  1. \documentclass[varwidth=true, border=2pt]{standalone}
  2. \usepackage{pgfplots}
  3. \usepackage{tikz}
  4. \usetikzlibrary{patterns}
  5. \begin{document}
  6. \begin{tikzpicture}
  7. \tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
  8. \node (a)[point,label=180:$a$] at (0,0) {};
  9. \node (b)[point,label=0:$b$] at (3, 0) {};
  10. \draw[orange,pattern color=orange,pattern=north east lines] (1.5,0) circle (0.3cm);
  11. \draw [rounded corners,->, thick, red] (a) .. controls (1,1) .. (2,1) .. controls (2.5,1) .. (b);
  12. \draw [rounded corners,->, thick, blue] (a) .. controls (1,-1) .. (2,-0.5) .. controls (2.2,-1) .. (b);
  13. \node at (1,1.2) [red] {$\gamma_1$};
  14. \node at (0.5,-0.8) [blue] {$\gamma_2$};
  15. \end{tikzpicture}
  16. \end{document}