latex-pictures

A collection of TikZ drawings and other images 🖌️

real-ordinal-surreal-venn.tikz (453B)

 1 % This picture represents the relationshipt between the real, ordinal and
 2 % surreal numbers
 3 % Copyright Pablo (C) 2021
 4 \begin{tikzpicture}
 5   % The reals
 6   \draw (0,0) circle (1)
 7   (-1.5,0) node{$\mathbb{R}$};
 8 
 9   % The ordinals
10   \draw (-1,0) circle (1)
11   (0.5,0) node{$\mathbf{ON}$};
12 
13   % The surreals (+ natural numbers)
14   \draw (-2.5, 1.5) rectangle (1.5,-1.5)
15   (-0.5,0) node{$\mathbb{N}$}
16   (1.5,-1.5) node[right]{$\mathbf{No}$};
17 \end{tikzpicture}
18