Download MACM 101 — Discrete Mathematics I Exercises on Predicates and

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Elementary mathematics wikipedia , lookup

Mathematical proof wikipedia , lookup

Principia Mathematica wikipedia , lookup

Theorem wikipedia , lookup

Fundamental theorem of algebra wikipedia , lookup

Proofs of Fermat's little theorem wikipedia , lookup

Transcript
MACM 101 — Discrete Mathematics I
Exercises on Predicates and Quantifiers.
Due: Tuesday, October 11th (at the beginning
of the class)
Reminder: the work you submit must be your own. Any collaboration and consulting outside resources must be explicitly mentioned
on your submission.
Please, use a pen. 30 points will be taken off for pencil written
work.
1. Determine the truth value of each of these statements if the universe
of each variable consists of all real numbers.
(a) ∃x∃y ((x + 2y = 2) ∧ (2x + 4y = 5));
(b) ∀x∀y∃z (x2 + y 2 = z 2 ).
2. Use predicates and quantifiers to express this statement
“Every student has chatted with at least one other student in at least
one chat group.”
3. Find a counterexample, if possible, to this universally quantified statement, where the universe for all variables consists of all integers
∀x∃y (y 2 = x).
4. Rewrite the following statement so that negations appear only within
predicates (that is, no negation is outside a quantifier or an expression
involving logical connectives)
¬∀x ((∀y∀z P (x, y, z)) → (∃z∃y R(x, y, z))).
5. Find a universe for variables x, y, z, and w for which the statement
∀x∀y∀z∃w((w 6= x) ∧ (w 6= y) ∧ (w 6= z)))
is true and another universe in which it is false.
1
6. Show that quantified statements
∃x(P (x) ⊕ Q(x)) and (∃xP (x)) ⊕ (∃xQ(x))
are not logically equivalent.
7. Determine whether the following argument is valid or invalid and explain why.
‘A convertible car is fun to drive.’
‘Isaac’s car is not a convertible.’
‘Therefore, Isaac’s car is not fun to drive.’
8. Given premises:
‘All foods that are healthy to eat do not taste good.’
‘Tofu is healthy to eat.’
‘You only eat what tastes good.’
infer the conclusion
‘You do not eat tofu.’
9. What is wrong with this proof?
Theorem. 3 is an even number.
Proof. Every integer number is odd or even. Let c be an arbitrary
integer number. Therefore, it is odd or even. Suppose it is even. By the
rule of universal generalization, if an arbitrary number is even, every
number is even. Therefore, 3 is even.
2