Chapter 2 Questions.
Predicate logic.
Declarative sentences in predicate logic.
Question 1
In this question, assume the following predicate and constant symbols:
W(x,y) : x wrote y
L(x,y) : x is longer than y
N(x) : x is a novel
h : Hardy
a : Austen
j : Jude the Obscure
p : Pride and Predjudice
Given these specifications, which of the predicate logic formulas below
represent the sentence, 'Hardy wrote a novel which is longer than any of Austen's' in predicate logic?
x (W(h,x)
L(x,a)))
x
y (L(x,y)
W(h,y)
W(a,x))
x
y (W(h,x)
W(a,y)
L(x,y)))
x (N(x)
W(h,x)
y (N(y)
W(a,y)
L(x,y)))
x
y (W(h,x)
W(a,y)
L(x,y))
Question 2
In this question, assume the following predicate and constant symbols.
W(x,y) : x wrote y
L(x,y) : x is longer than y
h : Hardy
a : Austen
j : Jude the Obscure
p : Pride and Predjudice
Which of the following represents the sentence, ''Jude the Obscure' is not longer than 'Pride and Predjudice'', in predicate logic?
- W(h,j)
W(a,p)

x
y
L(x,y)
- L(p,j)
L(j,p)
- L(h,a)
Semantics.
Question 3
Working with a unary predicate sysmbol, P, a binary predicate symbol Q and a
unary function sysmbol f, which of the following formulas are satisfied in the model M, given by,
A = {a,b,c,d};
PM = {a,b}
QM = {(a,b), (b,b), (c,b)}
fM (a) = b, fM (b) = b, fM (c) = a, and fM (d) = c
x (P(x)
y Q(y,x))
x Q(f(x),x)
x (Q(f(x),x)
Q(x,x))
x
y (Q(x,y)
P(x))
x
y (Q(x,y)
Q(y,x))
Question 4
Which of the following sets of sentences is satisfiable? (Recall that a "sentence" is a predicate logic formula that has no free variables.)
- {
x Q(x),
x (Q(x)
R(x)),
x
R(x)}.
- {
y
x P(x,y),
x
P(x,x)}.
- {
x
y (P(x,y)
P(y,y)),
x
P(x,x),
x
y (P(x,y)}.
- {
x
y P(x,y),
x
P(x,x)}.
- {
x Q(x),
x
Q(x)}.
Question 5
Which of the following semantic entailments are valid in predicate logic?
x (P(x)
Q(x))
x P(x)
x Q(x)
x (P(x)
Q(x))
x P(x)
x Q(x)
x P(x)
x Q(x)
x (P(x)
Q(x))

x (P(x)
Q(x))
x
P(x)
x
Q(x)
x P(x)
x Q(x)
x (P(x)
Q(x))
More declarative sentences.
Question 6
In this question assume the specifications
F(x,y) : x is the father of y
M(x,y) : x is the mother of y.
Which of the formulas in predicate logic below express the
sentence 'Everybody has a mother'?
x
y M(x, y)
x
y M(x, y)
y
x M(x, y)
x
y M(x, y)
y
x M(x, y)
Question 7
In this question assume only the specifications
F(x,y) : x is the father of y
M(x,y) : x is the mother of y.
Which of the formulas in predicate logic below express the
sentence 'Anyone who is a father is not a maternal grandmother'?
x (
y F(x, y)

y
z (M(x, y)
M(y, z)))
x (
y F(x, y)

y M(x, M(y)))
x (
y F(x, y)

y G(x, y))
x
y F(x, y)

x
y M(x, y)
x (F(x)
M(M(x)))
Question 8
For this question and the following one, assume the specifications below:
The predicate symbols
S(x,y) : x is y's sister
B(x,y) : x is y's brother
H(x,y) : x is y's husband and
O(x,y) : x is older than y
and the constant symbols
j : John,
c : Carl, and
m : Monique.
Which of the following formulas express the sentence 'Carl is Moniques brother-in-law'?
- B(c,m)
H(c,m).
- B(c,m)
H(c,m).
x
y (S(x,m)
H(c,y)
x = y).
x ((S(x,m)
H(c,x))
(H(x,m)
B(c,x))).
- None of the above.
Question 9
Assuming the same specifications as for Question 8,
which of the following sentences are expressed by the predicate logic formula
x
y (S(x,j)
S(y,j)
O(x,y))?.
- John has an older sister.
- All of John's sisters are older than him.
- John is older than his sisters.
- One of John's sisters is older than another.
- None of the above.
Back to chapter index.