I would love to have a nice tikz-version of this Word drawing of a tree from an exercise in game theory.
So far I've made the following:
\begin{tikzpicture}[level distance=1.5cm,
level 1/.style={sibling distance=3cm},
level 2/.style={sibling distance=1.5cm}]
\node {$1$}
child {node {$2$}
child {node {$(4,1)$}}
child {node {$(2,1)$}}
}
child {node {$2$}
child {node {$(1,0)$}}
child {node {$(0,4)$}}
};
\end{tikzpicture}
But how do add the last details? Thanks.



