<< Chapter < Page
  Intro to logic   Page 1 / 1
Chapter >> Page >
The domain axioms of WaterWorld in first-order logic.

We summarize the details of how we choose to model WaterWorld boards in first-order logic: exactly what relations we make up, and the formaldomain axioms which capture the game's rules.

This will follow almost exactly the same pattern as our WaterWorld model in propositional logic . However, we will take advantage of the additional flexibility providedby first-order logic.

Rather than modeling only the default 64 WaterWorld board;, we will be able to model any board representable by our relations.This will allow boards of any size and configuration, with one major constrainteach location can have at most three neighboring pirates.

Domain and relations

Our domain is simply the set of all board locations. This set can be arbitrarily largeeven infinite!

The board configuration is given by the binaryneighborrelation nhbr .

The next relations correspond directly to the propositions in the propositional logic model.

  • Whether or not a location contains a pirate: safe . This is a unary relation.
    We choose not to include a redundant relation unsafe .
  • Unary relations indicating the number of neighboring pirates: has0 , has1 , has2 , and has3 .
    Thus, we have our restriction to three unsafe neighbors. This will also be reflected in our domain axioms below. See also this problem for a discussion of how to avoid this restriction.

In addition, to have encode the domain axioms for an arbitrary domain, we also need an equality relation over our domain of locations.As is traditional, we will use infix notation for this relation, for example, x y . Furthermore, we will allow ourselves to write x y as shorthand for x y . Thus, we do not need a distinct inequality relation.

Note that these relations describe the state of the underlying boardthe modeland not our particular view of it. Our particular view will be reflected in which formulaswe'll accept as premises. So we'll accept has2 A as a premise only when A has been exposed and shows a 2.

The domain axioms

Many of our axioms correspond directly, albeit much more succinctly, with those of the propositional model. In addition, we have axioms that specify that our neighbor and equalityrelations are self-consistent.

Axioms asserting that the neighbor relation is anti-reflexive and symmetric:

  • x nhbr x x
  • x y nhbr x y nhbr y x

Axioms asserting that=truly is an equality relation, i.e. , it is reflexive, symmetric, and transitive.

  • x x x
  • x y x y y x
  • x y z x y y z x z

Axioms asserting that the neighbor counts are correct. Each of these is of the formif location x has n neighboring pirates, then there are n distinct unsafe neighbors of x , and any other distinct neighbor x is safe.We use the equality relation to specify the distinctness of each neighbor.

  • x has0 x y nhbr x y safe y
  • x has1 x a nhbr x a safe a y nhbr x y a y safe y
  • x has2 x a b nhbr x a nhbr x b a b safe a safe b y nhbr x y a y b y safe y
  • x has3 x a b c nhbr x a nhbr x b nhbr x c a b a c b c safe a safe b safe c y nhbr x y a y b y c y safe y

In addition, we want the implications to go the opposite way. Otherwise, each of has0 , has1 , has2 , and has3 could always be false, while still satisfying the above!For brevity, we elide the details in the following list:

  • x y nhbr x y safe y has0 x
  • x has1 x
  • x has2 x
  • x has3 x

Axioms asserting that the neighbor counts are consistent. While redundant, including axioms like the following can be convenient.

  • x has0 x has1 x has2 x has3 x
  • x has1 x has0 x has2 x has3 x
  • x has2 x has0 x has1 x has3 x
  • x has3 x has0 x has1 x has2 x

Note that this set of axioms is not quite complete, as explored in an exercise .

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Intro to logic. OpenStax CNX. Jan 29, 2008 Download for free at http://cnx.org/content/col10154/1.20
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Intro to logic' conversation and receive update notifications?

Ask