Finding Cheryl's Birthday with DEMO

2015-04-20

This report shows how to solve the famous riddle from Singapore (see New York Times) with epistemic model checking. We use DEMO_S5 from https://web.archive.org/web/20160803170251/http://homepages.cwi.nl/~jve/software/demo_s5/ and a modified version of KRIPKEVIS from https://w4eg.de/malvin/illc/kripkevis.

You can also download a PDF version of this report and the source files.

module CHERYL where
import Data.List
import Data.Function
import DEMO_S5
import KRIPKEVIS

We first define the set of all possibilities:

allpos :: [(Int, String)]
allpos = [ (15,"May"), (16,"May"), (19,"May"), (17,"June"), (18,"June"),
  (14,"July"), (16,"July"), (14,"August"), (15,"August"), (17,"August") ]

This forms the set of worlds in our initial model. Moreover, also the set of actual worlds is the full set, hence allpos occurs twice in the definition below. The two elements of rels define the epistemic relations of Albert and Bernard. Instead of listing explicitly which possibilities they can distinguish we use haskell functions to say that they confuse the same day and the same month, respectively.

initCheryl :: EpistM (Int,String)
initCheryl = Mo allpos [a,b] [] rels allpos where
  rels = [ ( a, groupBy ((==) `on` snd) allpos )
         , ( b, groupBy ((==) `on` fst) (sortBy (compare `on` fst) allpos) ) ]

This is the initial model with all possibilities:

The formula saying that i knows Cheryl’s birthday is defined as the disjunction over all statements of the form “Agent i knows that the birthday is s”:

knowsBday :: Agent -> Form (Int, [Char])
knowsBday i = Disj [ Kn i (Info s) | s <- allpos ]

Now we update the model three times, using the function upd_pa for public announcements. First with Albert: I don’t know when Cheryl’s birthday is and I know that Bernard does not know.

model2 = upd_pa initCheryl (Conj [Ng $ knowsBday a, Kn a $ Ng (knowsBday b)])

The second announcement by Bernard: “Now I know when Cheryl’s birthday is.”

model3 = upd_pa model2 (knowsBday b)

Finally, Albert says: “Now I also know when Cheryl’s birthday is.”

model4 = upd_pa model3 (knowsBday a)

Lastly, this helper function uses texModel from KRIPKEVIS to generate the drawings:

myTexModel :: EpistM (Int,String) -> String -> IO String
myTexModel (Mo states _ _ rels pointed) fn =
  texModel showState showAgent showVal ""
    (VisModel states rels [(s,0)|s<-states] pointed) fn
  where
    showState (n,string) = (show n) ++ string
    showAgent i          = if i==a then "Albert" else "Bernard"
    showVal _            = ""