Solve the (4x3) game with pay off matrix.
8 5 8
[A] = 8 6 5
7 4 5
6 5 6
At each stage, clearly explain the steps involved.
If all the elements of Column-i are greater than or equal to the corresponding elements of any other Column-j, then the Column-i is dominated by the Column-j and it is removed from the matrix
So, we can remove 1st column (col1 col2)
If all the elements of a Row-i are less than or equal to the corresponding elements of any other Row-j, then the Row-i is dominated by the Row-j and it is removed from the matrix.
So, we can remove 3rd row (row3 row2), and 4th row (row4 row1).
Then we get matrix:
5 8
8 6
This game has no saddle point.
Then:
A play’s (p1,p2):
,
B play’s (q1,q2):
,
Value of the game:
From payoff matrix
we have:
, p2=3/5
, q2=3/5
Comments