This could probably be done more elegantly.
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning,decorations.pathreplacing,calc}
\begin{document}
\begin{tikzpicture}[%
box/.style={draw,rectangle},
decoration={brace,amplitude=4}]
\node (posint) [box] {positive integer};
\node (negint) [box,right=of posint] {negative integer};
\draw [decorate,thick]
($(negint.south east) + (0,-.3)$) -- node (mida) {} ($(posint.south west) + (0,-.3)$);
\node (int) [box,below=.4cm of mida] {integer};
\node (frac) [box,right=of int] {fractional number};
\draw [decorate,thick]
($(frac.south east) + (0,-.3)$) -- node (midb) {} ($(int.south west) + (0,-.3)$);
\node (rational) [box,below=.4cm of midb] {rational number};
\draw [->] (posint) -- (negint);
\draw [->] (int) -- (frac);
\end{tikzpicture}
\end{document}