Solutions to Chapter 32 Semantic concepts

A. Given the following interpretation:

domain:

people

W(x):

blank x is a woman (or girl)

M(x):

blank x is a man (or boy)

Y(x,y):

blank x is younger than blank y

O(x,y):

blank x is an offspring of blank y

d:

Dana

a:

Alex

express the following relations:

  1. 1.

    blank x is older than blank y Y(y,x)

  2. 2.

    blank x is blank y’s mother O(y,x)W(x)

  3. 3.

    blank x and blank y are siblings (note that you can’t be your own sibling) z(O(x,z)O(y,z))¬x=y

  4. 4.

    blank x is blank y’s brother z(O(x,z)O(y,z))¬x=yM(x)

B. Using the symbolization key from the previous exercise, symbolize the following sentences:

  1. 1.

    Alex and Dana are sisters. z(O(a,z)O(d,z))¬a=dW(a)W(d)

  2. 2.

    Fathers are older than their children. xy((O(x,y)M(y))Y(x,y))

  3. 3.

    Alex’s parents are the same age. xy((O(x,a)O(y,a))¬Y(x,y))