MUN Computer Science 1002 - Lab 3

Predicates and quantifiers

Review:

Vocabulary

 

Individual work

Solve each of the following exercises.

  1. For each of the following Boolean functions, construct a canonical CNF and a canonical DNF. Hint: you can write the whole truth table, but you don't necessarily need to.
    1. $AllTheSame(x,y,z)$ which returns true when either all its inputs are true, or all its inputs are false.
    2. $Parity(x,y,z)$ which returns true when an odd number of its inputs are true (that is, either one or three)
  2. Let $x = y, x < y, Even(x)$ and $Prime(x)$ be predicates. Translate the following from English to logic (you can use standard arithmetic operations). Make sure to specify domains of quantifiers using $\mathbb{N, Z, Q, R}$, and note which of these statements are true, and which are false.
    1. Every integer greater than n is not prime.
    2. There is a smallest natural number.
    3. If an integer gives the same value when multiplied by two different integers, that integer must be 0. (Hint: in order to ensure that two variables take different values state explicitly that they are not equal.)
  3. Which of the following pairs consist of equivalent formulas? That is, when is $F \equiv G$ for formulas below?
    1. $F=\forall x \forall y P(x,y)$, $G= \forall y \forall x P(x,y)$
    2. $F = \forall x \exists y P(x,y)$, $G = \forall y \exists x P(x,y)$
    3. $F=\forall x \forall y P(y,x)$, $G= \forall x \forall y P(x,y)$
    4. $F = \forall x \exists y P(x,y)$, $G = \exists x \forall y P(x,y)$
  4. Let Parent(x,y), read as "x is a parent of y", and Female(x) be a predicates over the domain of people. Say which relationship between people denoted by free variables the following formulas describe (for example, $\exists y, Parent(x,y)\wedge Parent(y,z)$ states that x is a grandparent of z).
    1. $Parent(x,y)\wedge Female(x)$
    2. $\exists z Parent(z,x) \wedge Parent(z,y)$
    3. $\exists z \exists u Parent(z,x) \wedge Parent(z,u) \wedge Parent(u,y) \wedge \neg Female(x)$
  5. As before, take predicates Parent(x,y) and Female(x) be a predicates over the domain of people. Now, say in English what facts about people denoted by free variables these formulas describe.
    1. $\forall y \neg (\exists z Parent(z,y) \wedge Parent(z,x) \wedge Female(y)) $
    2. $Female(x) \wedge \forall y (\exists z Parent(z,y) \wedge Parent(z,x)) \to y=x $
    3. $\forall z (Parent(z,x) \leftrightarrow Parent(z,y))$

Group exercises

For this part of the lab, you will be working in groups of three. In the first part of the exercise, each of three people in the group picks one of the topics below, and solves the corresponding questions. Then, each of you will explain to two of your peers how you have solved these questions. Your explanation should be good enough that they can then solve similar questions on their own.

Topic 1: Quantifiers over finite domain

Recall that $\forall$ quantifier corresponds to $\wedge$ over elements of its domain, and $\exists$ quantifier, respectively, is an $\vee$ over elements of its domain. For the following formulas, take $x \in \{1,2,3\} $ and the domain of $y$ to be all integers such that $2 < y <5$. Now, write these formulas in propositional form by converting $\forall$ to $\wedge$ and $\exists$ to $\vee$ (hint: you should end up with propositions where a variable is replaced with a number from its domain). For each of them, say whether the formula is true or false on these domains with the standard interpretation of the predicates.

Topic 2: Prenex form of a formula

Recall that a formula is in prenex form when each quantified variable has a unique name, and all quantifiers are in front of the formula. Now, convert each of the following into prenex form. For simplicity, start by opening up implications using $F \to G \equiv \neg F \vee G$ rule.

Topic 3: Negating quantified formulas

For each of the following formulas, negate them and simplify until all negations are on predicates. Use DeMorgan, double negation, definitions of implication and quantifiers.

Review after the group exercises

Let $ F=(\exists x P(x)) \to (\exists x \neg P(x))$.

  1. Convert F into prenex form (and get rid of the implication).
  2. Negate the formula from the previous subquestion, and simplify it until all negations are on predicates.
  3. Now, suppose that the domain of x is $\{black, blue, green\}$. Write the original $F$ as a propositional formula by replacing $\forall$ with $\wedge$ over the domain, and $\exists$ with $\vee$. Is this formula true for P(x)= 'the word x starts with letter "b"'?.