Intelligent Agent Foundations Forumsign up / log in
An implementation of modal UDT
post by Benja Fallenstein 614 days ago | Jessica Taylor, Luke Muehlhauser, Nate Soares and Patrick LaVictoire like this | discuss

One of the great advantages of working with Gödel-Löb provability logic is that it’s possible to implement an evaluator which efficiently checks whether a sentence in the language of GL is true. Mihaly and Marcello used this to write a program that checks whether two modal agents cooperate or defect against each other. Today, Nate and I extended this with an implementation of modal UDT, which allows us to check what UDT does on different decision problems—see Program.hs in the Github repository. No guarantees for correctness, since this was written rather quickly; if anybody is able to take the time to check the code, that would be very much appreciated!


The implementation of UDT is rather pleasing, I think. Here’s the informal definition of modal UDT, using PA + \(\ell\):

  • For every possible outcome \(j\), from best to worst:
    • For every possible action \(i\), in order:
      • If it’s provable in PA + \(\ell\) that “UDT takes action \(i\)” implies “the universe returns outcome \(j\)”, then take action \(i\).
  • If you’re still here, return a default action.

Here is the corresponding Haskell code:

udt :: (Enum a,Ord b,Show b,Enum b)
    => Int -> ModalProgram b a -> b -> ModalProgram b b
udt level univ dflt = modalProgram dflt $
  mFor $ \a ->
    mFor $ \b ->
      mIf (boxk level (Var b %> univ a)) (mReturn b)

Being able to write modal UDT like this makes it very easy to implement and try small variations on the code.


We used this code to check what modal UDT would do in a version of Newcomb’s problem where Omega uses proofs in PA (rather than simulations) to decide whether to put the money in the box; that is, it will put a million dollars in the first box if and only if it can prove that you will one-box. If our code is correct, it turns out that in this case, modal UDT will do whatever its default action was.

Earlier, we thought we had proved a different result on the whiteboard, but after the code disagreed with us, we went over it again and found a bug in our proof. After fixing that bug, we now have a manual proof that UDT will end up taking its default action in this scenario (which I’ll write about some other time). So looks like this can be a useful tool for figuring out this sort of thing!



NEW LINKS

NEW POSTS

NEW DISCUSSION POSTS

RECENT COMMENTS

> I think that the main
by Vladimir Nesov on Control and security | 0 likes

It seems to me like failures
by Paul Christiano on Control and security | 0 likes

This works as a subtle
by Vladimir Nesov on Control and security | 0 likes

In general finding
by Jessica Taylor on Online Learning 1: Bias-detecting online learners | 0 likes

After reading your post, I
by Jessica Taylor on Control and security | 0 likes

We could also generalize this
by Paul Christiano on Online Learning 1: Bias-detecting online learners | 0 likes

This is cool! It would be
by Paul Christiano on Online Learning 1: Bias-detecting online learners | 0 likes

Can you provide links to the
by Vadim Kosoy on Two Questions about Solomonoff Induction | 0 likes

And I just wanted to write a
by Vadim Kosoy on Online Learning 1: Bias-detecting online learners | 0 likes

Also see the notion of
by Paul Christiano on Online Learning 1: Bias-detecting online learners | 2 likes

Given that this is my first
by Ryan Carey on Online Learning 1: Bias-detecting online learners | 1 like

I initially played around
by Devi Borg on Logical Inductors that trust their limits | 2 likes

I still feel like I don't
by Devi Borg on Logical Inductors that trust their limits | 2 likes

Running the traders on some r
by Sune Kristian Jakobsen on Variations of the Garrabrant-inductor | 0 likes

1. Note that IRL is
by Jessica Taylor on Heroin model: AI "manipulates" "unmanipulatable" r... | 0 likes

RSS

Privacy & Terms (NEW 04/01/15)