Game Theory without Argmax - Part 1

Published on November 11, 2023 3:59 PM GMT   
Written during the SERI MATS program under the joint mentorship of John Wentworth, Nicholas Kees, and Janus.
Create a surreal, black and white banner-like image of an agent deciding how to act in an infinitely large lattice-universe with infinitely many people. The agent should be portrayed as thoughtful and contemplative in the center of a vast, lattice-structured universe. This lattice, symbolizing infinity, should be populated with numerous small figures to represent the countless people. The image should have a surreal quality, with abstract patterns and shapes seamlessly integrated into the lattice. The panoramic, banner-style format should enhance the sense of vastness and complexity, emphasizing the enormity of the decision-making process in such an expansive and structured universe.

Preface

In classical game theory, we characterise agents by a utility function and assume that agents choose options which cause maximal utility. This is a pretty good model, but it has some conceptual and empirical limitations which are particularly troublesome for AI safety.
Higher-order game theory (HOGT) is an attempt to rebuild game theory without appealing to either utility functions or maximisation. I think Higher-Order Game Theory is cool so I'm writing a sequence on it.
I'll try to summarise the relevant bits of the literature, present my own minor extensions, and apply HOGT to problems in AI safety
You're reading the first post! Let's get into it.

The role of argmax

For each set X, let argmaxX:(X→R)→P(X) be the familiar function which receives a function u:X→R and produces the set of element which maximise u. A function like argmaxX is sometimes called a higher-order function or functional, because it receives another function as input.
Explicitly, argmaxX=λu:X→R.{x∈X|∀x′∈X,u(x)≥u(x′)}.[1]
As you all surely know, argmax plays a central role in classical game theory. Typically we interpret the set X as the agent's options,[2] and the function u:X→R as the agent's task, which assigns a payoff u(x)∈R to each option x∈X. We say an option x∈X is optimal to the agent for the task u:X→R whenever x∈argmaxX(u). Classical game theory is governed by the assumption that agents choose optimal options in whatever task they face, where optimality strictly means utility-maximisation.
Definition 1 (provisional): Let X be any set of options. A task is any function u:X→R. An option x∈X is optimal for a task u:X→R if and only if x∈argmaxX(u).
Due to the presence of the powerset operator P in argmaxX:(X→R)→P(X), this model of the agent is possibilistic — for each task u:X→R, our model says which options are possibly chosen by agent. The model doesn't say which options are probably chosen by the agent — for that we'd need a function (X→R)→Δ(X). Nor does the model say which options are actually chosen by the agent — for that we'd need a function (X→R)→X.[3]
How many options are optimal for the task?
Example
Typically there'll be a unique optimal option.
argmaxC(λz∈C(1−|z|2))={0}
Perhaps multiple options will be optimal.
argmaxR(sin)={2k+π2|k∈Z}
Perhaps no options are optimal, i.e. every option is strictly dominated by another.
argmaxR(exp)=∅
Perhaps every option is optimal, i.e. the task is a constant function.
argmaxZ(λk∈Z.sin(π⋅k))=Z
Exercise 1: Find a set X such that argmaxX(u)=∅ for every function u:X→R.

Generalising the functional

The function argmaxX is a particular way to turn tasks into sets of options, i.e. it has the type-signature (X→R)→P(X). But there are many functions with the same type-signature (see the table below), so a natural question to ask is... What if we replace argmaxX in classical game theory with an arbitrary functional ψ:(X→R)→P(X)?
What we get is higher-order game theory.[4] Surprisingly, we can recover many game-theoretic concepts in this more general setting. We can typically recover the original classical concepts from the more general higher-order concepts by restricting our attention to either ψ=argmaxX or ψ=argminX.
So let's revise our definition —
Definition 2 (provisional): Let X be any set of options. An optimiser is any functional ψ:(X→R)→P(X). A ψ-task is any function u:X→R. An option x∈X is ψ-optimal for a task u:X→R if and only if x∈ψ(u).
When clear from context, I'll just say task and optimal.
In higher-order game theory, we model the agents options with a set X and model their task with a function u:X→R. But (unlike in classical game theory) we're free to model the agent's optimisation with any functional ψ:(X→R)→P(X). I hope to persuade you that this additional degree of freedom is actually quite handy.[5]
Higher-order game theory is governed by the central assumption that agents choose ψ-optimal options in whatever ψ-tasks they face, where ψ is our model of the agent's optimisation. If we observe the agent choosing an option x∈ψ(u) then that would be consistent with our model, and any observation of a choice x∉ψ(u) would falsify our model.[6]
Anyway, here is a table of some functionals and their game-theoretic interpretation —
ψ:(X→R)→P(X)
Remarks
argmin=λu:X→R.{x∈X|∀x′∈X,u(x)≤u(x′)}
This agent will choose an option x∈X which minimises u. In classical game theory, this type of optimiser is typically used to model the adversary to the agent modelled by argmax.
satisfices=λu:X→R.{x∈X|u(x)≥u(s)}
This agent will choose an option x∈X which dominates some fixed option s∈X. The option s is called the anchor point. It might represent the "default" option, or the "do nothing" option, or the "human-approved" option.
According to Herbert Simon, satisficing is an accurate model of human and institutional decision-making.
Utility-satisficers are a kind of mild optimiser, which might be a safer way to build AI than a full-blown utility-maximiser.
argmax-ϵ-slack=λu:X→R.{x∈X|∀x′∈X,u(x)+ϵ≥u(x′)}
This agent will chooses an option x∈X which maximises the function u up to some fixed slack ϵ>0. Such agents behave like argmax except that their utility u(x)∈R is measured with finite precision.
better-than-average=λu:X→R.{x∈X|u(x)≥Ex′∼πu(x′)}
This agent will choose an option x∈X which scores better than the average option, given that the option space is equipped with a distribution π∈Δ(X).
rockS=λu:X→R.S
This agent will choose an option in a fixed subset S⊆X, regardless of the task, e.g. DefectBot and CooperateBot.[7]
Using rockS, we can model a non-agents as a special (degenerate) case of agents.
quantϵ=λu:X→R.{x∈X:Px′∼π[u(x′)≥u(x)]≤ϵ}
This agent will choose an option x∈X in the top ϵ quantile, given that the option space is equipped with a distribution π∈Δ(X).
This is the possibilistic version of Jessica Taylor's quantiliser. Her original probabilistic version is a function (X→R)→ΔX, and so wouldn't count as an optimiser according to Definition 2.[8]
satisficeS=λu:X→R.{x∈X|∀s∈S,u(s)≤u(x)}
This agent will choose an option x∈X which dominates every anchor pointin S⊆X. As special cases, when S=X we get argmaxX, and when S is a singleton set we get Simon's satisficer mentioned before. When the set of anchor points is smaller, then the resulting optimiser is less selective, i.e. more options will be optimal.
threshα=λu:X→R.{x∈X|u(x)≥α}
Exercise 2
Exercise 3
This agent will choose an option in the largest equivalence class, where two options are equivalent if they result in the same payoff.


Generalising the payoff space.

Now let's generalise the payoff space to any set R, not only R. We will think of the elements of R as payoffs in a general sense, relaxing the assumption that the payoffs assigned to the options are real numbers. The function u:X→R describes which payoff u(x)∈R would result from the agent choosing the option x∈X.
Definition 3 (provisional): Let X be any set of options and R be any set of payoffs. An optimiser is any functional ψ:(X→R)→P(X). A ψ-task is any function u:X→R. An option x∈X is ψ-optimal for a task u:X→R if and only if x∈ψ(u).
This is the final version to this definition today.
This is significantly more expressive! When we are tasked with modelling a game-theoretic situation, we are can pick any set R to model the agent's payoffs![9]
I'll use the notation JP(X,R) to denote the set of functionals (X→R)→P(X), e.g. argmaxZ∈JP(Z,R).
Anyway, here is a table of some functionals and their game-theoretic interpretation —
Payoff space
Remarks
R=[0,1]
An optimiser ψ∈JP(X,[0,1]) only needs to be well-defined for bounded utility functions u:X→[0,1].
R=N
An optimiser ψ∈JP(X,N) only needs to be well-defined forutility functions u:X→N.
R=R∪{−∞,+∞}
An optimiser ψ∈JP(X,R∪{−∞,+∞}) must be well-defined for infinatary utility functions u:X→R∪{−∞,+∞}.
For example, u(x) might be the expected total winnings of a gambler employing the gambling strategy x∈X. The gambler themselves are modelled by an optimiser ψ:(X→R∪{−∞,+∞})→P(X). This functional ψ is characterised by its attitude towards infinite expected profit/loss.
R=Δ(R), where Δ is the distribution monad on Set.
An optimiser ψ∈JP(X,ΔR) will choose options given a stochastic task u:Γ→ΔR. This is the type-signature of risk-averse and risk-seeking maximisers studied in behavioural microeconomics. The field of Portfolio Theory is (largely) the comparison of rival optimisers in JP(X,ΔR).
R is the Levi-Civita Field, an extension of the reals with infinitesimals.
The Levi-Civita field contains infinitesimals like ϵ,ϵ2,2ϵ+ϵ2,√ϵ , as well as infinite values like ϵ−1,ϵ−2,ϵ1/3+ϵ−1/3+2. In infinite ethics, we encounter tasks u:X→Levi-Civita Field, and we can model the infinitary ethicist by an optimiser ψ∈JP(X,Levi-Civita Field).
Exercise 4: Solve infinite ethics.
R=Rn
An optimiser ψ∈JP(X,Rn) can model different multi-objective optimisers. For example, there's an optimiser which, given multi-objective task u:X→Rn, returns those options which are maximal according to the lexicographic ordering, and there's another optimiser which uses the product ordering instead.[10]
Later in this post, we'll encounter an optimiser in JP(X1×⋯×Xn,R) which returns the nash equilibria of n-player games, where a task for this optimiser is an n-by-npayoff matrix u:X1×⋯×Xn→R.
The field of cooperative bargaining is concerned with different optimisers JP(X+1,Rn). A bargaining task f:(X+1)→Rn parameterises both the feasibility set F={f(x)∈Rn:x∈X} and the disagreement point d=f(⋆)∈Rn where 1={⋆} is the singleton set.
Any preorder (R,≤)
Suppose that R is any set equipped with a preorder ≤.[11] Then a function u:X→R will induce a preorder ≤u on X via x≤ux′⟺u(x)≤u(x′).
Let argmaxX∈JP(X,R) be the optimiser which chooses the maximal points of ≤u, i.e. options which aren't strictly dominated by any other options.
Explicitly λu:X→R.{x∈X:∀x′∈X.u(x)≤u(x′)⟹u(x′)≤u(x)}
If ≤ isn't total (i.e. the agent has incomplete preferences over the payoffs) then the resulting optimiser argmaxX is less selective (i.e. more options are optimal). In the extreme case, where no options are comparable, then argmaxX might choose any option.[12]
Exercise 5: Which optimisers ψ∈JP(X,R) defined in the previous table can be generalised to any preorder (R,≤)?
R=X, where X is the option space of the agent.
Occasionally the same set X will serve as both the option space and the payoff space. In this case, a task u:X→X represents some transformation of the underlying option space.
There's an optimiser fix:JP(X,X), which choices options which are fixed-points of u:X→X. That is, fix=λu:X→X.{x∈X|u(x)=x}. We can use fix to model a conservative agent who chooses options which remain untransformed by the task. Note that this optimiser is not consequentialist, because the optimality of an option is not determined by its payoff alone. For example, 0∈fixR(sin) but π∉fixR(sin), despite the fact that sin(0)=sin(π).


Subjective vs objective optimisers

It's standard practice, when modelling agents and their environments, to use payoff spaces like R, Rn, Δ(R), etc, but I think this can be misleading.
Consider the following situation —
A robot is choosing an option from a set X. There's a function f:X→W+ such that, were the robot to choose the option x∈X, then the world would end up in state f(x)∈W+, where W+ is something like the set of all configurations of the future light-cone.
You know the robot is maximising over all their options, but you aren't sure what the robot is maximising for exactly — perhaps for paperclips, perhaps for happy humans.
Now, let p:W+→R be the function which counts the number of paperclips in a light-cone, and let h:W+→R be the function which counts the number of happy humans.
Here's what classical game theory says about your predicament —
The payoff space is R. You know that the robot applies the optimiser argmaxX:(X→R)→P(X), but you don't know whether the robot faces the task (p∘f):X→R or the task (h∘f):X→R, and hence you don't know whether the robot will choose an option x∈argmaxX(p∘f) or x∈argmaxX(h∘f).
I call this a subjective account, because the robot's task depends on the robot's preferences. Were the robot to have difference preferences, then they would've faced a different task, and because you don't know the robot's preferences you don't know their task.
However, by exploiting the expressivity of higher-order game theory, we can offer an objective account which rivals the subjective account. In the objective account, the task that the robot faces doesn't depend on the robots preferences —
The payoff space is W+ itself. You know that the robot faces the task f:X→W+ but you don't know whether the robot applies the optimiser argmaxX(p∘−):(X→W+)→P(X) or the optimiser argmaxX(h∘−):(X→W+)→P(X), and hence you don't know whether the robot will choose an option x∈argmaxX(p∘f) or x∈argmaxX(h∘f).
Notice that both accounts yield the same solution! Nonetheless, I think the objective account is nicer for four reasons. (Feel free to skip if you're convinced.)
Disclaimer: Admittedly, the distinction between subjective accounts — where payoff spaces are stuff like R, Rn, R∪{−∞,∞}, Z, Δ([0,1]2), e.t.c. — and objective accounts — where payoff spaces are stuff like future light-cones, or brain states, or pixel configurations, e.t.c — is an informal (and somewhat metaphysical) distinction, but hopefully you can see what I'm pointing at.

(1) Carve nature at its joints.

The objective account, where R=W+, bares a closer structural resemblance to the physical reality. The physical robot corresponds to the functional ψ∈JP(X,W+) and the physical environment corresponds to the function u:X→W+. Notably, all the information about the robot's idiosyncratic preferences is bundled up inside the functional ψ.
In contrast, in the subjective account, where R=R, the functional ψ∈JP(X,R) contains almost no substantial information about the agent itself. It suggests (if read too literally) that all agents are basically indiscernible, and they behave differently because they face different environments.

(2) Moral antirealism.

The subjective account (again, read too literally) suggests that values are out there in the world, that the environment contains entities called utilities which all rational agents seek, that all conflict is disagreement, that correctness is a property of pebble heaps, that microeconomics is normative, and (most concerning of all) that the primary obstacle to building a safe superintelligence is writing down a utility function.
The objective account, I think, is more moral antirealist. It says, "The world contains only paperclips and happy humans, never utilities! The world contains only paperclip-maximisers and happy-human-maximisers, never utility-maximisers!"

(3) Experimental independence

In the objective account, the task f:X→W+ and the optimiser ψ:(X→W+)→P(X) have independent semantic meaning. At least in principle, I know how to find f:X→W+ independently of ψ — namely by inspecting the physical dynamics of the robot's environment or inspecting the robot's world-model. And I know how to find ψ:(X→W+)→P(X) independently of f — namely by placing the robot in different physical environments and observing their choices.
By contrast, in the subjective account, the task f:X→R and the optimiser ψ:(X→R)→P(X) have no independent meaning — they are merely exist to compress the optimality condition ψ(f)⊆X. What would it even mean for the robot to possess the utility function u:X→R without the presumption that they maximise utility? I've honestly no clue. And without the task u:X→R, how would I determine the robot's optimiser ψ:(X→R)→P(X) experimentally? Presumably I should vary the task u:X→R, however I can't do this experimentally because u:X→R contains the robot's preferences which is a variable outside my control.
Granted, for most historic applications of classical game theory, we do know the preferences of the agent — we already know that White wants to checkmate Black, and the consumer wants cheaper goods, and the statistician wants to accurate predictions, e.t.c — so it doesn't matter whether one sticks those preferences in the task or the optimiser. But in AI safety, a big chunk of our perplexity comes from the preferences of the agents. So it matters more that we stick those preferences in the right part of our model.

(4) No spooky reals.

The subjective account seems to rely on the elements of a mysterious set called "R" which is extraneous to the phenomenon under consideration. By contrast, the objective account refers only to the sets X and W+, where the elements of X and W+ are physical stuff intrinsic to the situation being modelled. Hence, higher-order game theory promises to dispense with R from game theory, along with argmax and utility functions, ensuring the weirdness of R doesn't contaminate our game theory.[13]
This has a computational upshot as well.
Supposes that X={x1,…,xn} and W+={w1,…,wm} are small finite sets. A task f:X→W+ can be implemented as dictionary whose keys lie in X and whose values lie in W+, which uses nlogm bits. The functional ψ:JP(X,W+) can be implemented as a program which receives input of type Dict[X,W] and returns output of type List[X]. Easy!
In the subjective account, by contrast, the task f:X→R requires infinite bits to specify, and the functional ψ:JP(X,R) must somehow accept a representation of an arbitrary function f:X→R. Oh no! This is especially troubling for embedded agency, where the agent's decision theory must run on a physical substrate.

Recovering utility functions

According to the objective account, what is fundamental about an agent is the functional ψ:(X→W+)→P(X) where W+ is some objective payoff, and the claim that the agent has a utility function v:W+→R is understood as the claim that ψ can be approximately decomposed into argmaxX(v∘−). Hence, the existence of a utility-decomposition of ψ is an additional fact about the agent to be discovered, rather than an assumption that should be baked into the formalism itself.
Utility functions are an emergent property of the underlying functional.
One clue that utility functions are emergent properties is that they aren't unique! It's well-known that a utility function v:W+→R for an agent is only well-defined modulo positive-affine transformation, i.e. there is no meaningful distinction between v:W+→R and v′:W+→R whenever v′=α⋅v+β for some α∈R+,β∈R. This fact falls immediately from the objective-first view, because argmaxX(v∘−) and argmaxX(v′∘−) are equal functionals whenever v=α⋅v′+β
Now, if we were dealing with argmax-ϵ-slack or threshα — instead of argmax — then there would be a meaningful difference between some utility functions which are equivalent modulo positive-affine transformation.
Let's make this notion precise —
Definition 4: Let ψ∈JP(X,W) be an optimiser. We say that v:W→R is a (classical) utility function of ψ if and only if ψ=argmaxX(v∘−). In general, for any Φ∈JP(X,R), we say that v:W→R is a Φ-utility function of ψ if and only if ψ=Φ(v∘−).
Typically, ψ is some objective optimiser and Φ is some subjective optimiser. When Φ=argmaxX then we obtain the classical utility functions of an objective optimiser ψ, and we may obtain non-classical utility functions of the same optimiser ψ by considering (e.g.) Φ=satisfices∈JP(X,R) or ψ=better-than-averageπ∈JP(X,R) or whatever.
Classical game theory is the study of optimisers with classical utility functions. There are some theoretical and empirical arguments for restricting only to such optimisers but these arguments are probably overrated. In any case, I suspect that unifying deep learning and classical game theory will require studying non-classical agents. Here's why — in the deep learning paradigm, we build agents by training a large neural network with stochastic gradient descent on tasks which fortify agentic-like behaviour. At initialisation, these neural networks aren't classical agents, and classicality emerges incrementally, probably after passing through phases of nonclassical agency. Therefore, if we want to account for the emergence of agency (classical or otherwise), then we need to account for the loss gradient over the entire space of optimisers JP(X,W+), not merely over the subspace of JP(X,W+) corresponding to classical optimisers.

Some properties of optimisers

We can define formalise various properties and operations of optimisation using arbitrary functional ψ∈JP(X,R).
I've included the list of examples below for illustrative purposes only —
Property
Remarks
Totality
We'll say that an optimiser ψ∈JP(X,R) is total iff ψ(u)≠∅ for all u:X→R. Informally, this condition states that our model of the agent never "breaks down", i.e. regardless of the task the agent faces, there's always some optimal choice.
Selectivity
We'll say that an optimiser ψ1 is (weakly) more selective than ψ2 if and only if ∀u:X→R.ψ1(u)⊆ψ2(u). This relation defines a partial order on JP(X,R). For example, satisficeA is more selective than satisficeB whenever B⊊A⊆X.
Mild optimization, an approach for mitigating Goodhart's law, replaces argmax with less selective optimisers.
Consequentialism
We'll say that an optimiser ψ∈JP(X,R) is consequentialist if ψ=λu:X→R.{x∈X|u(x)∈q(u)} for some q:(X→R)→P(R).[14]
In other words, for any task u:X→R, if u(x)=u(x′) then x∈ψ(u)⟺x′∈ψ(u).
This condition says that, once we know the agent's task, then the only thing relevant to the optimality of a particular choice is its payoff. For example, argmaxX andbetter-than-averageπ are consequentialist, but rockS and fix are not.
Context-independence
We'll say that a consequentialist optimiser ψ=λu:Γ→R.{γ∈Γ|u(γ)∈q(u)} is context-independent if Image(u)=Image(u′)⟹ψ(u)=ψ(u′).
Context-independence is a stronger condition than consequentialism — this condition says that, once we know which payoffs are achievable in the agent's task, then the only thing relevant to the optimality of a particular option is its payoff. For example, argmaxX is context-independent, but better-than-averageπ is not.
Filtered optimisation
Suppose that ψ∈JP(X,R) is an optimiser, and Xlegal⊆Xis a subset of the options which are safe/valid/legal. Then we can define another optimiser ψ′=λu:X→R.Xlegal∩ψ(u)∈JP(X,R) who always chooses options in Xlegal.
This operation captures the notion of filtering options after the agent has applied the optimisation. For example, if X=R and ψ=argmaxR then ψ(cos)={2πk:k∈Z}, so if Xlegal=[0,4π] then ψ′(cos)={0,2π,4π}.
Constrained optimisation
The filtering operation doesn't capture what we typically mean by optimisation within side-constraints. For example, if we change Xlegal to [π/4,π/2], then we would like the optimiser to choose π/4 as this maximises cos subject to the constraint Xlegal. The filtered optimisation would produce the emptyset, as none of the options optimal to argmaxR are legal.
Let's define constrained optimisation for an optimiser ψ∈JP(X,R). Suppose that there is an element ⊥∈R such that ⊥∈u(ψ(u))⟹Im(u)⊆{⊥}. Informally, this means that ψ detests the payoff ⊥∈R and would never chooses an option resulting in ⊥ unless it must. For example, argmaxX∈JP(X,R∪{−∞,+∞}) detests the payoff −∞.
We can defined constrained optimisation as follows: ψ′=λu:X→R.ψ(u′) where u′:X→R,x↦{u(x)if x∈Xlegal⊥otherwise
Exercise 6: How might we define constrained optimisation if there is no such ⊥∈R?
Supervision
Maybe the set of legal options Xlegal∈PX depends on the task u:X→R itself. This dependency itself corresponds to an optimiser ψlegal∈JP(X,R).
We can define the filtered optimiser as ψ′:λX→R.ψlegal(u)∩ψ(u).
We can define the constrained optimiser ψ′=λu:X→R.ψ(u′) where u′:X→R,x↦{u(x)if x∈ψlegal(u)⊥otherwise
The optimiser ψ′ behaves like one agent ψ being supervised by another agent ψsafe where the mode of supervision is filtering and constraining respectively.
Unanimity
For a collection of optimisers Z⊆JP(X,R), we can define a single optimiser λu:X→R.⋂{ψ(u):ψ∈Z} who will only choose an option if each constituent optimiser would also choose the option, forming a unanimous coalition of Z.
Dually, we can define the optimiser λu:X→R.⋃{ψ(u):ψ∈Z} forming a unilateral coalition.
Shards
Suppose that f:(X→R)→JP(X,R) assigns an optimiser f(u):JP(X,R) to each task u:X→R.
In terms of f, we can define the optimiser ψ=λu:X→R.f(u)(u):JP(X,R) by diagonalising — i.e. ψ will match the optimiser f(u) in each task u:X→R.
This operation captures (somewhat) the notion of shards, or context-activated optimisation.
For example, imagine an agent ψ:JP(X,R) who "plays it safe" by satisficing unless they can achieve sufficiently high payoff, i.e. f(u)={argmaxXif max(u)≥100satisficesotherwise
Or imagine an agent who desires cheese whenever they are sufficiently close to cheese, but otherwise desires to run around aimlessly.


Recap

  • In classical game theory, agents maximise their utility functions u:X→R, i.e. they might choose any option x∈argmaxX(u).
  • In higher-order game theory, we replace the utility functions u:X→R with an arbitrary function u:X→R, called a "task", and replace argmaxX:(X→R)→P(X) with an arbitrary functional ψ:(X→R)→P(X) called the "optimiser". They might choose any option x∈ψ(u).
  • This additional expressivity lets us include mild optimisers and multi-objective optimisers which don't crudely maximise utility.
  • It also lets us include objective optimisers, which strive for particular physical configurations, which dispenses with the concept of utility altogether.
  • We can recover utility functions as an emergent property of an objective optimiser, relative to any choice of subjective optimiser, not only to argmax.
  • Finally, we can define some interesting properties and operations on the optimisers JP(X,R) which correspond (loosely) to things that AI safety researchers care about.

Next time...

The next post will answer the age-old question, "What happens when two optimisers ψA∈JP(A,R) and ψB∈JP(B,R) play the simultaneous game g:A×B→R?" We know what happens when ϕA and ψB are both utility-maximisers — the possible option-profiles are pairs (a,b)∈A×B in nash equilibrium.
Can we really generalise the nash equilibrium to any pair of optimisers?

Further reading


  1. The little λ is from (simply-typed) lambda notion for introducing functions. If sin:R→R is the familiar sine function, then λx∈R.sin(x2) is the function R→R which sends each x∈R to sin(x2)∈R, so (λx∈R.sin(x2))(π3)=sin(π6). We can also use lambda notation to define higher-order functions, e.g. if doubleX=λu:X→X.u∘u then doubleR(sin)(π+1)=sin(sin(π+1)).
  2.  Synonyms: actions, alternatives, behaviours, configurations, coordinates, hypotheses, moves, options, outputs, parameters, plays, policies, positions, strategies — or whatever else is being chosen due to the payoffs assigned to it.
  3. Scott Garrabrant has called  (X→R)→X the the type-signature of agency, and you can interpret this sequence as an expansion on his remark.
    In response to Garrabrant, MrMind raises the objection that no map ψ:(X→R)→X can be parametric in both X and R because there is no map (0→0)→0. Fortunately, this objection doesn't apply here, because we're looking for functions ψ:(X→R)→P(X), and there is a function ψ:(∅→∅)→P(∅).
  4. The term higher-order game theory is coined in [Hedges 2015], presumably because functions of the form f:(A→B)→C are often called higher-order functions. Throughout the article, I will only use the term in this sense.
    Warning: The term higher-order game theory is also used in [Nisan 2021] to refer to "the study of agents thinking about agents thinking about agents..." — and [Diffractor 2021] calls this higher-level game theory. I will never use the term in this sense.
  5. Spoilers: As you'll see later, this is the definition of optimisation you need to ensure that the nash equilibrium between two optimisers is also an optimiser. 
  6. Of course, if ψ(u)=∅, then this model of the agent and their task would be falsified by any observed option, and can be eliminated a priori.
    We can also interpret ψ(u)=∅ as the statement that the computer program implementing the agent's decision theory would throw an exception, or fail to halt, when given the input u:X→R. 
  7. In tomorrow's post, P will be generalised to an arbitrary commutative monad M. When we let M be the probability monad Δ, then we get optimisers of type (X→R)→Δ(X) which would include Taylor's original probabilistic quantiliser. But don't worry about that now!
  8. ... and any set X to model the agent's options, any function u:X→R to model the agent's task, and any functional ψ:(X→R)→P(X) to model the agent's optimisation.
  9. When Rn is equipped with the product ordering, the optimiser argmaxX:JP(X,Rn) is the called the pareto optimiser which maps each multi-objective task u:X→Rn to the pareto-frontier. This is the least selective optimiser which cares about each objective πi∘u:X→R.
  10. A partial order ≤ is a relation on X satisfying three rules:
    (1) Reflectivity: x≤x.
    (2) Transitivity: If x≤y and y≤z then x≤z.
    (3) Anti-symmetry: If x≤y and y≤x then x=y.
    A preorder ≤ is a relation satisfying only reflectivity and transitivity. A preorder is the non-evil version of a partial order, because it's agnostic about ""identity"" between equivalent objects.
    Now, we say an agent's preferences are incomplete when neither x≤y nor y≤x, and an agent's preferences are indifferent when both x≤y and y≤x but not x=y. So a partial order represents preferences which might be incomplete but never indifferent, while a preorder represents preferences which might be both incomplete and indifferent. Agents with incomplete preferences have recently been proposed as a solution to the Shutdown Problem.
  11. Warning: There're another optimiser in JP(X,R) who chooses the maximum points of ≤u, i.e. options which weakly dominate all other options. Explicitly, λu:X→R.{x∈X:∀x′∈X.u(x′)≤u(x)}. This optimiser is qualitatively different, being more selective when its preferences are incomplete.
  12. In Science without Numbers (1980), Hartry Field attempted to reformulate Newtonian physics without quantification over mathematical objects. Instead, the formulae of his theory would quantify only over physical objects and regions of spacetime. He called this normalisation of Newtonian physics.
    Likewise, higher-order game theory promises a normalisation of game theory.
    I don't know why, but this smells correct to me.
  13. This property is called closedness in [Hedges 2015] because the set ψ(u)⊆X is closed under the equivalence relation x∼x′⟺u(x)=u(x′) for every u:X→R.
    A function q:(X→R)→P(R) is called a quantifier in the HOGT literature.
Discuss