Political Variaton 2



   {  Exmpl14.2-2_PoliticalVariaton.mpl  }

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

   {  Chapter 14.2,  Example 2, Variation,  Size: 4x4,  Page 656  }


TITLE
    OddsAndEven;

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

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

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