Lecture 8-9a
Lecture 8-9a
Lecture: 7
What is Predicate?
A predicate is property that some object has.
Example 1
He goes to school.
The above sentence has two parts:
(1) He: which is called subject
(2) goes to school: called the property of the subject. (predicate)
Example 2
x > 5.
(1) x is called subject
(2) > 5: called the property of the subject. (predicate)
Example 5
Let Q(x, y, z) denote the statement “x + y =z.” What are the
truth values of the propositions Q(2, 3, 5) and Q(0, 1, 2)?
(1) Q(2, 3, 5): 2+3=5 True
(2) Q(0, 1, 2): 0+1=2 False
Example 7
What is the truth value of ∀P(x), where P(x) is the statement
”x 2 < 10” and the universe of discourse consists of positive
integers not exceeding 4.
Solution:
Positive integers not exceeding 4 are: 1,2,3,4
Next, it is easy to see that 12 < 10, 22 < 10, 32 < 10 and 42 6< 10.
It follow that ∀P(x) is False.
The statement ∀P(x) is the same as the conjunction
P(1) ∧ P(2)∧ P(3)∧ P(4)
Lecture: 7 Discrete Mathematics 6/11
Definition 8 (Existential Quantifier ∃)
The existential quantification of P(x) is the statement
”There exists an element x in the domain such that P(x)”.
We use the notation ∃P(x) for the existential quantification of
P(x). Here ∃ is called the existential quantifier.
Example 9
What is the truth value of ∃P(x), where P(x) is the statement
”x 2 < 10” and the universe of discourse consists of positive
integers not exceeding 4.
Solution:
Positive integers not exceeding 4 are: 1,2,3,4
Next, it is easy to see that 12 < 10, 22 < 10, 32 < 10 and 42 6< 10.
It follow that ∀P(x) is True.
The statement ∀P(x) is the same as the disjunction
P(1) ∨ P(2)∨ P(3)∨ P(4)
Question 1
Question 2