A
A
60. Let P(x), Q(x), and R(x) be the statements x is a clear explanation, x is satisfactory, and x is
an excuse, respectively. Suppose that the domain for x consists of all English text. Express each of
these statements using quantifiers, logical connectives, and P(x), Q(x), and R(x).
a) All clear explanations are satisfactory.
x(P(x) Q(x))
b) Some excuses are unsatisfactory.
x(R(x) /\ Q(x))
c) Some excuses are not clear explanations.
x(R(x) /\ P(x))
d) Does (c) follow from (a) and (b)?
Yes. The unsatisfactory excuse guaranteed by part (b) cannot be a clear explanation by part (a).
9. Let L(x, y) be the statement x loves y, where the domain for both x and y consists of all people in
the world. Use quantifiers to express each of these statements.
a) Everybody loves Jerry.
xL(x, Jerry)
b) Everybody loves somebody.
xy(x, y)
c) There is somebody whom everybody loves.
xyL(x, y)
d) Nobody loves everybody.
xyL(x, y)
e) There is somebody whom Lydia does not love.
xL(Lydia, x)
f) There is somebody whom no one loves.
xyL(y, x)
g) There is exactly one person whom everybody loves.
x(yL(y, x) /\ z(wL(w, z)) z = x))
h) There are exactly two people whom Lynn loves.
xy(x y /\ (Lynn, x) /\ L(Lynn, y) /\ z(L(Lynn, z) (z = x \/ z = y)))
i) Everyone loves himself or herself.
xL(x, x)
j) There is someone who loves no one besides himself or herself.
xy(L(x, y) x = y)
23. Express each of these mathematical statements using predicates, quantifiers, logical connectives,
and mathematical operators.
a) The product of two negative real numbers is positive.
xy((x < 0) /\ (y < 0) (xy > 0))
b) The difference of a real number and itself is zero.
x(x x = 0)
c) Every positive real number has exactly two square roots.
xab(a b /\ c(c = x (c = a \/ c = b)))
d) A negative real number does not have a square root that is a real number.
x((x < 0) y(x = y))
37. Express each of these statements using quantifiers. Then form the negation of the statement so that
no negation is to the left of a quantifier. Next, express the negation in simple English.
a) Every student in this class has taken exactly two mathematics classes at this school
There is someone in this class such that for every two different math courses, these are not the two and
only two math courses this person has taken.
b) Someone has visited every country in the world except Libya.
Every person has either visited Libya or has not visited a country other than Libya
c) No one has climbed every mountain in the Himalayas.
Someone has climbed every mountain in the Himalayas.
d) Every movie actor has either been in a movie with Kevin Bacon or has been in a movie with
someone who has been in a movie with Kevin Bacon.
There is someone who has neither been in a movie with Kevin Bacon nor has been in a movie with
someone who has been in a movie with Kevin Bacon.
1. Consider the universe of discourse N (all integers 0). Let p(n) = n is prime and e(n) = n is
even. Write the following in ordinary English:
a) mn(e(n) /\ p(m + n))
There is an integer m such that for all integers n, n is even and m + n is prime.
b) nm(e(n) e(m + n))
For all integers n, there is an integer m such that if n is odd, then m + n is even.
Translate the following into logical notation using p and e.
a) There are two prime integers whose sum is even.
xy(x y /\ p(x) /\ p (y) /\ e(x + y))
b) If the sum of two primes is even, then neither of them equals 2.
xy((p(x) /\ p(y) /\ e(x + y)) (x 2 /\ y 2))
c) The sum of two prime integers is odd.
xy((p(x) /\ p(y)) e(x + y))