Spieltheorie Auszahlungsmatrix mit Pfeilen zur Darstellung von Equilibria
([Repost][1] von [Stackexchange TeX][2])
Zu diesem tikzpicture
    \documentclass{minimal}
\documentclass{article}
    \usepackage{tikz}
    \usetikzlibrary{calc}
    \usetikzlibrary{matrix}
    \usetikzlibrary{positioning}
    
    \begin{document}
    
    \begin{tikzpicture}
    
    \matrix[matrix of math nodes,every odd row/.style={align=right},every even row/.style={align=left},every node/.style={text width=1.5cm},row sep=0.2cm,column sep=0.2cm] (m) {
        10&5\\
        10&25\\
        5&20\\
        25&20\\
    };
    \draw (m.north east) rectangle (m.south west);
    \draw (m.north) -- (m.south);
    \draw (m.east) -- (m.west);
    
    \coordinate (a) at ($(m.north west)!0.25!(m.north east)$);
    \coordinate (b) at ($(m.north west)!0.75!(m.north east)$);
    \node[above=5pt of a,anchor=base] {Low Price};
    \node[above=5pt of b,anchor=base] {High Price};
    
    \coordinate (c) at ($(m.north west)!0.25!(m.south west)$);
    \coordinate (d) at ($(m.north west)!0.75!(m.south west)$);
    \node[left=2pt of c,text width=1cm]  {Low Price};
    \node[left=2pt of d,text width=1cm]  {High Price};
    
    \node[above=18pt of m.north] (firm b) {Firm B};
    \node[left=1.6cm of m.west,rotate=90,align=center,anchor=center] {Firm A};
    
    \node[above=5pt of firm b]  {Payoff Matrix};
    \end{tikzpicture}
    
    \end{document}
mit diesem Ergebnis
![Einfache Payoff-Matrix][3]
möchte ich gerne Pfeile zur Anzeige der Equilibria hinzufügen, sodass in etwa folgende Auszahlungsmatrix herauskommt.
![Payoff-Matrix mit Equilibria / dominanten Strategien][4]
Jegliche Hilfe ist überaus willkommen!
  [1]: http://tex.stackexchange.com/questions/272513/game-theory-payoff-matrix-with-arrows
  [2]: https://tex.stackexchange.com/
  [3]: http://i.stack.imgur.com/TgksQ.png
  [4]: http://i.imgur.com/tnMGsRj.png