Political Variaton 1



   {  Exmpl14.2-1_PoliticalVariaton.mpl  }

   {  Hillier and Lieberman, Introduction to Operations Research, 9th ed.  }

   {  Chapter 14.2,  Example 1, Game Theory - Dominated,  Size: 4x4,  Page 653  }


TITLE
    OddsAndEven;

INDEX
    strategy1 := 1..3;
    strategy2 := strategy1;

DATA
    Payoff[strategy1, strategy2] := ( 1,  1,  4,
                                      1,  0,  5,
                                      0,  1, -1);

VARIABLES
    Probabilities[strategy1] -> x;
    ValueOfGame;

MODEL

    MAX GameValue = ValueOfGame;

SUBJECT TO

    TotalProbabilities:

       SUM(strategy1: Probabilities)  =  1;


    ExpectedPayoff[strategy2]:

       SUM(strategy1: Payoff * Probabilities)  >=  ValueOfGame;

END



Back To Top | Maximal Home Page | List of Models | Previous Page | Next Page