topology-homotop-paths-2.tex 2.0 KB

123456789101112131415161718192021222324252627
  1. \begin{tikzpicture}
  2. \tikzstyle{point}=[circle,thick,draw=black,fill=black,inner sep=0pt,minimum width=4pt,minimum height=4pt]
  3. \node at (3,1) [red] {$\gamma_1$};
  4. \node at (1,1) [blue] {$\gamma_1'$};
  5. \node (a)[point,label=180:$a$] at (0,0) {};
  6. \node (b)[point,label=-90:$b$] at (4, 0) {};
  7. \node (c)[point,label=0:$c$] at (8, 0) {};
  8. \draw [rounded corners, thick, red] (a) .. controls (1,-1) .. (2,0) .. controls (3,1) .. (b);
  9. \draw [rounded corners, dashed] (a) .. controls (1,-0.8) .. (2,0) .. controls (3,0.8) .. (b);
  10. \draw [rounded corners, dashed] (a) .. controls (1,-0.6) .. (2,0) .. controls (3,0.6) .. (b);
  11. \draw [rounded corners, dashed] (a) .. controls (1,-0.4) .. (2,0) .. controls (3,0.4) .. (b);
  12. \draw [rounded corners, dashed] (a) .. controls (1,-0.2) .. (2,0) .. controls (3,0.2) .. (b);
  13. \draw [rounded corners, dashed] (a) .. controls (1, 0) .. (2,0) .. controls (3,0.0) .. (b);
  14. \draw [rounded corners, dashed] (a) .. controls (1, 0.2) .. (2,0) .. controls (3,-0.2) .. (b);
  15. \draw [rounded corners, dashed] (a) .. controls (1, 0.4) .. (2,0) .. controls (3,-0.4) .. (b);
  16. \draw [rounded corners, dashed] (a) .. controls (1, 0.6) .. (2,0) .. controls (3,-0.6) .. (b);
  17. \draw [rounded corners, dashed] (a) .. controls (1, 0.8) .. (2,0) .. controls (3,-0.8) .. (b);
  18. \draw [rounded corners, dashed] (a) .. controls (1, 1.0) .. (2,0) .. controls (3,-1.0) .. (b);
  19. \draw [rounded corners, thick, blue] (a) .. controls (1,1) .. (2,0) .. controls (3,-1) .. (b);
  20. \draw [rounded corners, thick, green!80!black] (b) edge[bend right] node[below] {$\gamma_2'$} (c);
  21. \draw [rounded corners, dashed] (b) edge[bend right=20] (c);
  22. \draw [rounded corners, dashed] (b) edge[bend right=-20] (c);
  23. \draw [rounded corners, dashed] (b) edge[bend right=10] (c);
  24. \draw [rounded corners, dashed] (b) edge[bend right=-10] (c);
  25. \draw [rounded corners, thick, orange] (b) edge[bend left] node[above] {$\gamma_2$} (c);
  26. \end{tikzpicture}