topology-non-homotop-paths.tex 629 B

1234567891011
  1. \begin{tikzpicture}
  2. \tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
  3. \node (a)[point,label=180:$a$] at (0,0) {};
  4. \node (b)[point,label=0:$b$] at (3, 0) {};
  5. \draw[orange,pattern color=orange,pattern=north east lines] (1.5,0) circle (0.3cm);
  6. \draw [rounded corners,->, thick, red] (a) .. controls (1,1) .. (2,1) .. controls (2.5,1) .. (b);
  7. \draw [rounded corners,->, thick, blue] (a) .. controls (1,-1) .. (2,-0.5) .. controls (2.2,-1) .. (b);
  8. \node at (1,1.2) [red] {$\gamma_1$};
  9. \node at (0.5,-0.8) [blue] {$\gamma_2$};
  10. \end{tikzpicture}