ScholarQuill logoScholarQuillUniversity Notes
  • Notes
  • Past Papers
  • Blogs
  • Todo
Login
ScholarQuill logoScholarQuillUniversity Notes
Login
NotesPast PapersBlogsTodo
More
SubjectsDiscussionCGPA CalculatorGPA CalculatorStudent PortalCourse Outline
About
About usPrivacy PolicyReportContact
Notes
Past Papers
Blogs
Todo
Analytics
    Current Subject
    🧩
    Discrete Mathematics
    MATH2113
    Progress0 / 25 topics
    Topics
    1. Mathematical Reasoning: Sets, Subsets, Algebra of Sets2. Propositions and Compound Statements3. Basic Logical Operations4. Propositional Logic and its Applications with Statement Problems5. Propositions and Truth Tables6. Tautologies and Contradictions7. Conditional and Bi-conditional Statements8. Arguments in Propositional Logic9. Propositional Functions10. Quantifiers and Negation of Quantified Statements11. Relations and Equivalence Relations12. Partial Ordering Relations13. Functions and Recursively Defined Functions14. Combinatorics: Basics of Counting Methods15. Combinations and Permutations16. Pigeonhole Principle17. Graphs and its Types18. Graph Isomorphism19. Trees in Graph Theory20. Connectivity in Graphs21. Eulerian and Hamiltonian Paths22. Spanning Trees and Shortest Path Problem23. Revisiting Special Functions: Power, Floor, Increasing, Decreasing24. Big O, Little O and Omega Notations25. Orders of the Polynomial Functions
    MATH2113›Quantifiers and Negation of Quantified Statements
    Discrete MathematicsTopic 10 of 25

    Quantifiers and Negation of Quantified Statements

    5 minread
    825words
    Beginnerlevel

    Quantifiers and Negation of Quantified Statements


    1. Quantifiers

    Quantifiers are symbols used in predicate logic to express the quantity of elements in a domain for which a propositional function is true. They convert propositional functions into propositions.

    There are two main types:


    a) Universal Quantifier ( ∀ )

    Denoted as:

    ∀x P(x)\forall x \, P(x)∀xP(x)

    Read as: “For all xxx, P(x)P(x)P(x) is true”

    • This statement is true if P(x)P(x)P(x) is true for every xxx in the domain.
    • It is false if there is at least one value of xxx for which P(x)P(x)P(x) is false.

    Example:
    Let P(x):x+1>xP(x): x + 1 > xP(x):x+1>x, over domain Z\mathbb{Z}Z
    Then ∀x P(x)\forall x \, P(x)∀xP(x): True


    b) Existential Quantifier ( ∃ )

    Denoted as:

    ∃x P(x)\exists x \, P(x)∃xP(x)

    Read as: “There exists an xxx such that P(x)P(x)P(x) is true”

    • This statement is true if there is at least one value of xxx in the domain for which P(x)P(x)P(x) is true.
    • It is false if P(x)P(x)P(x) is false for every value of xxx.

    Example:
    Let Q(x):x2=16Q(x): x^2 = 16Q(x):x2=16, over domain Z\mathbb{Z}Z
    Then ∃x Q(x)\exists x \, Q(x)∃xQ(x): True (since x=4x = 4x=4 or x=−4x = -4x=−4 work)


    2. Negation of Quantified Statements

    To negate quantified statements, you switch the quantifier and negate the predicate.


    a) Negation of Universal Quantifier

    ¬(∀x P(x))≡∃x ¬P(x)\neg (\forall x \, P(x)) \equiv \exists x \, \neg P(x)¬(∀xP(x))≡∃x¬P(x)

    Meaning: "It is not true that P(x) is true for all x"
    ⇨ "There exists at least one x for which P(x) is false"


    b) Negation of Existential Quantifier

    ¬(∃x P(x))≡∀x ¬P(x)\neg (\exists x \, P(x)) \equiv \forall x \, \neg P(x)¬(∃xP(x))≡∀x¬P(x)

    Meaning: "It is not true that there exists an x for which P(x) is true"
    ⇨ "For every x, P(x) is false"


    3. Examples of Negating Quantified Statements

    Example 1:

    Statement:

    ∀x∈N, x+1>x\forall x \in \mathbb{N}, \ x + 1 > x∀x∈N, x+1>x

    Negation:

    ∃x∈N such that x+1≤x\exists x \in \mathbb{N} \text{ such that } x + 1 \leq x∃x∈N such that x+1≤x

    Example 2:

    Statement:

    ∃x∈Z, x2=−1\exists x \in \mathbb{Z}, \ x^2 = -1∃x∈Z, x2=−1

    Negation:

    ∀x∈Z, x2≠−1\forall x \in \mathbb{Z}, \ x^2 \neq -1∀x∈Z, x2=−1

    This negated statement is true because no integer squared gives −1.


    Example 3 (Verbal Form):

    Original: “All students passed the exam.”
    Negation: “Some students did not pass the exam.”

    Original: “There exists a number that is both even and prime.”
    Negation: “No number is both even and prime.”


    4. Quantifier Order Matters

    Changing the order of quantifiers changes the meaning.

    Example:

    • ∀x ∃y (x<y)\forall x \, \exists y \, (x < y)∀x∃y(x<y): For every xxx, there is a yyy greater than xxx (True in R\mathbb{R}R)
    • ∃y ∀x (x<y)\exists y \, \forall x \, (x < y)∃y∀x(x<y): There is a single yyy that is greater than all xxx (False in R\mathbb{R}R)

    Previous topic 9
    Propositional Functions
    Next topic 11
    Relations and Equivalence Relations

    Past Papers

    Open this section to load past papers

    Click on Show Past Papers to see past papers.
    On This Page
      Reading Stats
      Est. reading time5 min
      Word count825
      Code examples0
      DifficultyBeginner