SlideShare a Scribd company logo
2
Most read
6
Most read
8
Most read
USE OF QUANTIFIERS
By,
Lakshmi R
Asst. professor,
Dept. of ISE
OPEN STATEMENT
It is a declarative statement which contains one or more
variable.
It is not a statement, but when the variables in it are replaced by certain
allowable choices, it can be called as a statement.
Eg: i) x + 5 = 10 ii) x3 < 100
Open statements containing a variable are denoted by p(x), q(x), etc..
x is called a free variable.
Eg: p(x): x3 < 100. if x = 4, p(x): 64 < 100
Truth value of p(4) is true
Lakshmi R, Asst. Professor, Dept. Of ISE
OPEN STATEMENT
Suppose the universe consists of all integers, consider the
following open statements.
p(x): x ≤ 3 q(x): x+1 is odd r(x): x > 0
Give the truth values of the following.
i) p(2) ii) ¬ q(4) iii) p(-1) ∧ q(1)
iv) ¬p(3) ∨ r(0) v) p(0) → q(0)
vi) p(1) ↔ ¬ q(2) vii) p(4) ∨ [q(1) ∧ r(2)]
viii) p(2) ∧ [q(0) ∨ ¬r(2)]
Lakshmi R, Asst. Professor, Dept. Of ISE
OPEN STATEMENT
p(x): x ≤ 3 q(x): x+1 is odd r(x) > 0
i) p(2): 2 ≤ 3 ---- True
ii) ¬ q(4): 4+ 1 is not odd ---- False
iii) p(-1) ∧ q(1) : -1 ≤ 3 ∧ 1+1 is odd ----- true ∧ false = false
iv) ¬p(3) ∨ r(0) : 3 ≤ 3 ∨ 0 > 0 ---- false ∨ false = false
v) p(0) → q(0): 0 ≤ 3 → 0+1 is odd ---- true → true = true
vi) p(1) ↔ ¬ q(2): 1 ≤ 3 ↔ 2+1 is not odd ---- true ↔ false = false
vii) p(4) ∨ [q(1) ∧ r(2)]: 4 ≤ 3 ∨ [1+1 is odd ∧ 2 > 0)]
false ∨ [false ∧ true)] = false ∨ false
= false
viii) p(2) ∧ [q(0) ∨ ¬r(2)]: 2 ≤ 3 ∧ [0+1 is odd ∨ 2 ≯ 0]
true ∧ [true ∨ false] = true ∧ true
= true
Lakshmi R, Asst. Professor, Dept. Of ISE
QUANTIFIERS
Statements that contain phrases that are associated with the idea of quantity
are called quantifiers.
Types of quantifiers:
Universal Quantifiers: denoted by ∀x – “for all x”, “for any x”, “for each x”,
“for every x”
Eg: ∀x ∈ s, p(x): for all x belong to S.
Where, p(x) is an open statement
Existential quantifiers: denoted by ∃x – “for some x”, “for at least one x”,
“there exists an x”
Lakshmi R, Asst. Professor, Dept. Of ISE
1. For the universe of all
integers, let
p(x): x > 0
q(x): x is even
r(x): x is a perfect square
s(x): x is divisible by 3
t(x): x is divisible by 7
Lakshmi R, Asst. Professor, Dept. Of ISE
Write the following quantified
statements in symbolic form.
i. At least one integer is even
ii. There exists a positive integer that
is even
iii. Some even integers are divisible
by 3
iv. Every integer is either even or
odd
v. If x is even and a perfect square,
then x is not divisible by 3
vi. If x is odd or is no divisible by 7,
then x is divisible by 3
p(x): x > 0
q(x): x is even
r(x): x is a perfect square
s(x): x is divisible by 3
t(x): x is divisible by 7
Lakshmi R, Asst. Professor, Dept. Of ISE
i. At least one integer is even
Sol: ∃x q(x)
ii. There exists a positive integer that is even
Sol: ∃x [p(x) ∧ q(x)]
iii. Some even integers are divisible by 3
Sol: ∃x [q(x) ∧ s(x)]
iv. Every integer is either even or odd
Sol: ∀x [q(x) ⊻ ¬q(x)]
v. If x is even and a perfect square, then x is not divisible by 3
Sol: ∀x [q(x) ∧ r(x)] → ¬s(x)
vi. If x is odd or is not divisible by 7, then x is divisible by 3
Sol: ∀x [¬ q(x) ∨ ¬ t(x)] → s(x)
2. Consider the open statements
given below.
p(x): x > 0
q(x): x is even
r(x): x is a perfect square
s(x): x is divisible by 3
t(x): x is divisible by 7
Lakshmi R, Asst. Professor, Dept. Of ISE
Express each of the following
symbolic statements in words
and indicate its truth value
i. ∀x [r(x) → p(x)]
ii. ∃x [s(x) ∧ ¬ q(x)]
iii. ∀x [¬ r(x)]
iv. ∀x [r(x) ∨ t(x)]
p(x): x > 0
q(x): x is even
r(x): x is a perfect square
s(x): x is divisible by 3
t(x): x is divisible by 7
Lakshmi R, Asst. Professor, Dept. Of ISE
i. ∀x [r(x) → p(x)]
Sol: “ for all integers x, if x is a perfect squares, then x > 0”
Let x = 0.
r(0): 0 is a perfect square.This statement is true. 02 = 0
p(0): 0 > 0. this statement is false.
∴ ∀x [r(x) → p(x)] = ∀x [true → false] is a false statement
ii. ∃x [s(x) ∧ ¬ q(x)]
Sol: “there exists some integers x such that x is divisible by 3
and x is not even”
Let x = 9
S(9): 9 is divisible by 3.This statement is true.
¬ q(x): 9 is not even.This statement is true
∴ ∃x [s(x) ∧ ¬ q(x)]= ∃x [true ∧ true] is a true statement.
p(x): x > 0
q(x): x is even
r(x): x is a perfect square
s(x): x is divisible by 3
t(x): x is divisible by 7
Lakshmi R, Asst. Professor, Dept. Of ISE
iii. ∀x [¬ r(x)]
Sol: “for any integer x,x is not a perfect square”
Let x = 9.
¬ r(9): 9 is not a perfect square.This is false.
∴ ∀x [¬ r(x)] is a false statement
iv. ∀x [r(x) ∨ t(x)]
Sol: “for any integer x, x is a perfect square or x is divisible
by 7”
Let x = 2.
r(2): 2 is perfect square.This is false
T(2): 2 is divisible by 7.This is false
∴ ∀x [r(x) ∨ t(x)] = ∀x [false ∨ false] is a false statement

More Related Content

PPTX
Minimal Invasive Surgery in CA Rectum
PDF
LPP, Duality and Game Theory
PPTX
Osce picture in obs and gynae 5
PPTX
formulation of first order linear and nonlinear 2nd order differential equation
PDF
Chapter-3: DIRECT PROOF AND PROOF BY CONTRAPOSITIVE
PDF
Chapter 6-INTEGER PROGRAMMING note.pdf
PPTX
Asymptotes.pptx
PDF
Transportation and transshipment problems
Minimal Invasive Surgery in CA Rectum
LPP, Duality and Game Theory
Osce picture in obs and gynae 5
formulation of first order linear and nonlinear 2nd order differential equation
Chapter-3: DIRECT PROOF AND PROOF BY CONTRAPOSITIVE
Chapter 6-INTEGER PROGRAMMING note.pdf
Asymptotes.pptx
Transportation and transshipment problems

Similar to Use of quantifiers (20)

PDF
Lecture 2 predicates quantifiers and rules of inference
PDF
02 Predicates and Quantifiers is about predicates
PDF
Discrete Structure Lecture #5 & 6.pdf
PDF
Course notes2summer2012
PDF
Discrete Mathematics: Lecture 2 - Predicate Logic
PPT
3 fol examples v2
PDF
Lecture 1.2 quadratic functions
PDF
Chapter 01 - p2.pdf
PPTX
CALCULUS 2.pptx
PPTX
Quantification
PDF
Optimization Methods for Machine Learning and Engineering: Optimization in Ve...
PPTX
Lecture in the topic of Predicate Calculus.pptx
PPTX
Quantifiers and its Types
PPTX
CMSC 56 | Lecture 3: Predicates & Quantifiers
PPTX
Math Assignment Help
PPT
Predicate &amp; quantifier
PPTX
Presentation of Polynomial
PDF
Formal Logic - Lesson 8 - Predicates and Quantifiers
PPT
X02PredCalculus.ppt
PDF
Advanced Microeconomics
Lecture 2 predicates quantifiers and rules of inference
02 Predicates and Quantifiers is about predicates
Discrete Structure Lecture #5 & 6.pdf
Course notes2summer2012
Discrete Mathematics: Lecture 2 - Predicate Logic
3 fol examples v2
Lecture 1.2 quadratic functions
Chapter 01 - p2.pdf
CALCULUS 2.pptx
Quantification
Optimization Methods for Machine Learning and Engineering: Optimization in Ve...
Lecture in the topic of Predicate Calculus.pptx
Quantifiers and its Types
CMSC 56 | Lecture 3: Predicates & Quantifiers
Math Assignment Help
Predicate &amp; quantifier
Presentation of Polynomial
Formal Logic - Lesson 8 - Predicates and Quantifiers
X02PredCalculus.ppt
Advanced Microeconomics
Ad

More from Lakshmi R (11)

PDF
Proofs and disproofs
PDF
Css basics
PDF
Html basics
PDF
Logical implication - Necessary and Sufficient conditions
PDF
NAND and NOR connectives
PDF
Discrete Mathematical Structures - Fundamentals of Logic - Principle of duality
PDF
Fundamentals of logic 1
PDF
Logical equivalence, laws of logic
PDF
Rules of inference
PDF
Java Collection Framework
PDF
Jsp presentation
Proofs and disproofs
Css basics
Html basics
Logical implication - Necessary and Sufficient conditions
NAND and NOR connectives
Discrete Mathematical Structures - Fundamentals of Logic - Principle of duality
Fundamentals of logic 1
Logical equivalence, laws of logic
Rules of inference
Java Collection Framework
Jsp presentation
Ad

Recently uploaded (20)

PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPT
Mechanical Engineering MATERIALS Selection
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
PPTX
additive manufacturing of ss316l using mig welding
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
Geodesy 1.pptx...............................................
PPTX
Construction Project Organization Group 2.pptx
PPTX
UNIT 4 Total Quality Management .pptx
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
web development for engineering and engineering
PDF
composite construction of structures.pdf
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPTX
Sustainable Sites - Green Building Construction
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Embodied AI: Ushering in the Next Era of Intelligent Systems
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Mechanical Engineering MATERIALS Selection
Automation-in-Manufacturing-Chapter-Introduction.pdf
additive manufacturing of ss316l using mig welding
CH1 Production IntroductoryConcepts.pptx
Geodesy 1.pptx...............................................
Construction Project Organization Group 2.pptx
UNIT 4 Total Quality Management .pptx
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
Internet of Things (IOT) - A guide to understanding
web development for engineering and engineering
composite construction of structures.pdf
R24 SURVEYING LAB MANUAL for civil enggi
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
Sustainable Sites - Green Building Construction

Use of quantifiers

  • 1. USE OF QUANTIFIERS By, Lakshmi R Asst. professor, Dept. of ISE
  • 2. OPEN STATEMENT It is a declarative statement which contains one or more variable. It is not a statement, but when the variables in it are replaced by certain allowable choices, it can be called as a statement. Eg: i) x + 5 = 10 ii) x3 < 100 Open statements containing a variable are denoted by p(x), q(x), etc.. x is called a free variable. Eg: p(x): x3 < 100. if x = 4, p(x): 64 < 100 Truth value of p(4) is true Lakshmi R, Asst. Professor, Dept. Of ISE
  • 3. OPEN STATEMENT Suppose the universe consists of all integers, consider the following open statements. p(x): x ≤ 3 q(x): x+1 is odd r(x): x > 0 Give the truth values of the following. i) p(2) ii) ¬ q(4) iii) p(-1) ∧ q(1) iv) ¬p(3) ∨ r(0) v) p(0) → q(0) vi) p(1) ↔ ¬ q(2) vii) p(4) ∨ [q(1) ∧ r(2)] viii) p(2) ∧ [q(0) ∨ ¬r(2)] Lakshmi R, Asst. Professor, Dept. Of ISE
  • 4. OPEN STATEMENT p(x): x ≤ 3 q(x): x+1 is odd r(x) > 0 i) p(2): 2 ≤ 3 ---- True ii) ¬ q(4): 4+ 1 is not odd ---- False iii) p(-1) ∧ q(1) : -1 ≤ 3 ∧ 1+1 is odd ----- true ∧ false = false iv) ¬p(3) ∨ r(0) : 3 ≤ 3 ∨ 0 > 0 ---- false ∨ false = false v) p(0) → q(0): 0 ≤ 3 → 0+1 is odd ---- true → true = true vi) p(1) ↔ ¬ q(2): 1 ≤ 3 ↔ 2+1 is not odd ---- true ↔ false = false vii) p(4) ∨ [q(1) ∧ r(2)]: 4 ≤ 3 ∨ [1+1 is odd ∧ 2 > 0)] false ∨ [false ∧ true)] = false ∨ false = false viii) p(2) ∧ [q(0) ∨ ¬r(2)]: 2 ≤ 3 ∧ [0+1 is odd ∨ 2 ≯ 0] true ∧ [true ∨ false] = true ∧ true = true Lakshmi R, Asst. Professor, Dept. Of ISE
  • 5. QUANTIFIERS Statements that contain phrases that are associated with the idea of quantity are called quantifiers. Types of quantifiers: Universal Quantifiers: denoted by ∀x – “for all x”, “for any x”, “for each x”, “for every x” Eg: ∀x ∈ s, p(x): for all x belong to S. Where, p(x) is an open statement Existential quantifiers: denoted by ∃x – “for some x”, “for at least one x”, “there exists an x” Lakshmi R, Asst. Professor, Dept. Of ISE
  • 6. 1. For the universe of all integers, let p(x): x > 0 q(x): x is even r(x): x is a perfect square s(x): x is divisible by 3 t(x): x is divisible by 7 Lakshmi R, Asst. Professor, Dept. Of ISE Write the following quantified statements in symbolic form. i. At least one integer is even ii. There exists a positive integer that is even iii. Some even integers are divisible by 3 iv. Every integer is either even or odd v. If x is even and a perfect square, then x is not divisible by 3 vi. If x is odd or is no divisible by 7, then x is divisible by 3
  • 7. p(x): x > 0 q(x): x is even r(x): x is a perfect square s(x): x is divisible by 3 t(x): x is divisible by 7 Lakshmi R, Asst. Professor, Dept. Of ISE i. At least one integer is even Sol: ∃x q(x) ii. There exists a positive integer that is even Sol: ∃x [p(x) ∧ q(x)] iii. Some even integers are divisible by 3 Sol: ∃x [q(x) ∧ s(x)] iv. Every integer is either even or odd Sol: ∀x [q(x) ⊻ ¬q(x)] v. If x is even and a perfect square, then x is not divisible by 3 Sol: ∀x [q(x) ∧ r(x)] → ¬s(x) vi. If x is odd or is not divisible by 7, then x is divisible by 3 Sol: ∀x [¬ q(x) ∨ ¬ t(x)] → s(x)
  • 8. 2. Consider the open statements given below. p(x): x > 0 q(x): x is even r(x): x is a perfect square s(x): x is divisible by 3 t(x): x is divisible by 7 Lakshmi R, Asst. Professor, Dept. Of ISE Express each of the following symbolic statements in words and indicate its truth value i. ∀x [r(x) → p(x)] ii. ∃x [s(x) ∧ ¬ q(x)] iii. ∀x [¬ r(x)] iv. ∀x [r(x) ∨ t(x)]
  • 9. p(x): x > 0 q(x): x is even r(x): x is a perfect square s(x): x is divisible by 3 t(x): x is divisible by 7 Lakshmi R, Asst. Professor, Dept. Of ISE i. ∀x [r(x) → p(x)] Sol: “ for all integers x, if x is a perfect squares, then x > 0” Let x = 0. r(0): 0 is a perfect square.This statement is true. 02 = 0 p(0): 0 > 0. this statement is false. ∴ ∀x [r(x) → p(x)] = ∀x [true → false] is a false statement ii. ∃x [s(x) ∧ ¬ q(x)] Sol: “there exists some integers x such that x is divisible by 3 and x is not even” Let x = 9 S(9): 9 is divisible by 3.This statement is true. ¬ q(x): 9 is not even.This statement is true ∴ ∃x [s(x) ∧ ¬ q(x)]= ∃x [true ∧ true] is a true statement.
  • 10. p(x): x > 0 q(x): x is even r(x): x is a perfect square s(x): x is divisible by 3 t(x): x is divisible by 7 Lakshmi R, Asst. Professor, Dept. Of ISE iii. ∀x [¬ r(x)] Sol: “for any integer x,x is not a perfect square” Let x = 9. ¬ r(9): 9 is not a perfect square.This is false. ∴ ∀x [¬ r(x)] is a false statement iv. ∀x [r(x) ∨ t(x)] Sol: “for any integer x, x is a perfect square or x is divisible by 7” Let x = 2. r(2): 2 is perfect square.This is false T(2): 2 is divisible by 7.This is false ∴ ∀x [r(x) ∨ t(x)] = ∀x [false ∨ false] is a false statement