Question on exercise 2 - cheating students.
Proposed solution has these payoffs:
payoffs = {{{{0, 0, 0}, {0, 0, 1}}, {{0, 1, 0}, {0, -1, -1}}}, {{{1,
0, 0}, {-1, 0, -1}}, {{-1, -1, 0}, {-1, -1, -1}}}};
However, since this is a zero-sum, they need to be normalized. Is there any benefit to doing so vs defining payoffs as zero-sum integers like below?
payoffs = {{{{0, 0, 0}, {-1, -1, 2}}, {{-1,
2, -1}, {2, -1, -1}}}, {{{2, -1, -1}, {-1, 2, -1}}, {{-1, -1,
2}, {0, 0, 0}}}};