Search in Co-Wiki

Compositional game theory

game-theory 943 tokens 2 outbound links

Compositional game theory

Motivation A major theme in computer science is the ability to construct simple building-blocks (e.g. functions or procedures in a programming language), and compose them into larger structures (e.g. more complex functions or programs). This principle is also called modularity.

In contrast, in classic game-theory, even complex games are treated as single, monolithic objects. This makes the analysis of games hard to scale.

Higher-order game A higher-order simultaneous game is a generalization of a simultaneous-game in which players are defined by selection functions rather than by utility functions. Formally, a higher-order simultaneous game for n players contains the following elements:

The term "higher-order" comes from the latter element. The best-response correspondence of each player is a higher-order function, as is input is itself a function. Every strategy-profile s1 in Σ, defines for each player i a function from Xi to R: the function maps each possible action xi in Xi to the outcome that would result if all players except i play as in s1, whereas player i switches his action to xi. In other words, s1 defines the context in which player i operates.

Given two strategy-tuples s1 and s2 in Σ, we say that s2 is a best-response to s1 if, for each player i, s2,i is contained in the output of di on the context generated by s1. The best-response relation is a binary relation contained in Σ x Σ, denoted by B.

In a standard game, instead of the selection function, there is a utility function ui for each player i. A utility function takes as input an outcome from R, and returns a real number. Such a game can be represented as a higher-order game as follows. For each player i, the selection function returns the set of actions from Xi that maximize the utility of agent i, given the context.

Open games The main object of study in CGT is the open game. An open game has the following elements:

It is an abstraction of a higher-order game.

Open games can be decomposed in two ways:

External links * [Open game engine](https://github.com/CyberCat-Institute/open-game-engine) - Haskell code for constructing and analyzing open games. * [Institute for Categorical Cybernetics](https://cybercat.institute) - The research institute responsible for the creation of the Open Game Engine and further research on Compositional Game Theory and its applications to Cybernetics

References