number-ray-circle-topology.tex 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. \tikzset{
  2. point/.style={
  3. thick,
  4. draw=gray,
  5. cross out,
  6. inner sep=0pt,
  7. minimum width=4pt,
  8. minimum height=4pt,
  9. },
  10. }
  11. \begin{tikzpicture}
  12. \draw[->] (-1.5,0) -- (5.5,0) node [below] {$\mathbb{R}$};
  13. \foreach \x in {-1,...,5}
  14. \draw (\x,0.1) -- (\x,-0.1) node [below] {\x};
  15. \foreach \x in {-1,...,4} {
  16. \draw[red] (\x+0.6,0.01) -- (\x+0.6,-0.14) node [below] {};
  17. \draw[red] (\x+1.2,0.01) -- (\x+1.2,-0.14) node [below] {};
  18. \draw[red] (\x+0.6,-0.07) -- (\x+1.2,-0.07) node [below] {};
  19. }
  20. \begin{scope}[shift={(0,-2)}]
  21. \draw[thick] (0cm,0cm) circle(1cm);
  22. \draw[thick, red] ([shift={(216:1cm)}]-0.0,0) arc (216:-72:1cm);
  23. \draw (0:1cm) node[point, label=right:{$0$}] {};
  24. \path node[point, blue, label={[blue,above]{$\overline{a}$}}] (posU) at (-252:1cm) {};
  25. \path node[label={[red,left]{$U$}}] at (30:1cm) {};
  26. \end{scope}
  27. \draw (3.7cm,0cm) node[point, blue, label={[blue,above]{$a$}}] (posA) {};
  28. \draw (0.7cm,0cm) node[point, blue, label={[blue,above]{$\pi^{-1}(u)$}}] {};
  29. \draw[dashed, blue, thick] plot [smooth] coordinates{(posU) (0.2,-0.8) (2.5,-1) (posA)};
  30. \draw[blue, dashed, thick] (3.7cm,0cm) arc (0:180:1.5 and 0.5);
  31. \end{tikzpicture}