Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a utility function describing the desirability of an outcome state. I weigh the expected utility with the probability of the outcome state occurring. I find the expected utility of an action, a, with

$EU(a) = \sum\limits_{s'} P(Result(a) = s' | s)U(s'))$ 

where Result(a) denotes the outcome state after executing a. There is no global set of actions, the set of actions available to each agent are not identical.

Player1 / Player2 | Action C      | Action D        |
-----------------------------------------------------
Action A          |  (500,-500)   |  (-1000,1000)   |
-----------------------------------------------------
Action B          |  (-5,-5)      |  ** (200,20) ** |
-----------------------------------------------------

Is this a valid approach? All examples of nash equilibriums i can find uses identical action sets for both agents.

share|improve this question

closed as off topic by Scharron, LittleBobbyTables, C. A. McCann, templatetypedef, NullPointerException Dec 22 '12 at 0:17

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.