Notes

Disjunction in Discrete Mathematics [ English ]

< Prev Next >

1. Introduction to Disjunction

In discrete mathematics, compound propositions are formed using logical operators. One of the most important operators is disjunction, which represents a choice or alternative between statements.

Disjunction is used when at least one condition must be true. It is widely applied in logical reasoning, programming, and digital systems.

2. Definition of Disjunction

A disjunction is a compound proposition formed by combining two propositions using the logical operator OR.

Formal Definition:

If p and q are propositions, then their disjunction is written as:

p ∨ q

The disjunction p ∨ q is true if at least one of p or q is true. It is false only when both are false.

3. Symbol and Representation

The symbol used for disjunction is:

Interpretation:

Note: This is inclusive OR, meaning both can be true.

4. Truth Table of Disjunction

p q p ∨ q
True True True
True False True
False True True
False False False

Explanation:

5. Examples of Disjunction (Formally Correct)

Example 1: Simple Propositions

Let:

Then:

p ∨ q

means: It is raining OR it is cold

✔ This is true if at least one statement is true.

Example 2: Using Predicates (Open Sentences)

Let:

Then:

p(x) ∨ q(x)

This is a predicate, not a proposition, because x is not specified.

Converting into a Proposition

Case 1: Let x = 5

p(5) ∨ q(5) → True ∨ True → True

Case 2: Let x = -3

p(-3) ∨ q(-3) → False ∨ True → True

Case 3: Let x = 15

p(15) ∨ q(15) → True ∨ False → True

Case 4: When Both are False

Let x = 0 and modify predicate slightly for demonstration:

p(0) ∨ q(0) → False ∨ False → False

✔ Only in this case the disjunction is false.

Example 3: Everyday Logical Statement

Let:

Then:

p ∨ q

means: The number is even OR divisible by 3

✔ True if at least one condition holds.

6. Properties of Disjunction

(a) Commutative Law

p ∨ q ≡ q ∨ p

(b) Associative Law

(p ∨ q) ∨ r ≡ p ∨ (q ∨ r)

(c) Identity Law

p ∨ False ≡ p

(d) Domination Law

p ∨ True ≡ True

(e) Idempotent Law

p ∨ p ≡ p

7. Disjunction with Negation

Disjunction interacts with negation in important ways.

Example:

p ∨ ¬p

This is always true and represents a tautology.

8. Inclusive OR vs Exclusive OR

Inclusive OR ()

Exclusive OR (XOR)

Example (XOR concept):

9. Applications of Disjunction

(a) Computer Science

(b) Mathematics

(c) Databases

10. Summary

< Prev Next >