Notes

Conditional in Discrete Mathematics [ English ]

< Prev Next >

1. Introduction to Conditional

In discrete mathematics, many logical statements express a dependency between two propositions. Such relationships are captured using the conditional statement, also known as implication.

Conditional statements are fundamental in:

They describe situations where one statement depends on another.

2. Definition of Conditional (Implication)

A conditional statement is a compound proposition of the form:

p → q

Formal Definition:

If p and q are propositions, then p → q is read as:

3. Components of a Conditional Statement

In p → q:

4. Truth Table of Conditional

p q p → q
True True True
True False False
False True True
False False True

5. Explanation of Truth Table

The conditional statement p → q is false only when:

Key Insight:

This may feel unintuitive initially, but it ensures consistency in logical reasoning.

6. Examples of Conditional (Formally Correct)

Example 1: Simple Propositions

Let:

Then:

p → q

means: If it is raining, then the ground is wet

Example 2: Numerical Statement

Let:

Then:

p → q

✔ This is logically valid.

Example 3: Using Predicates

Let:

Then:

p(x) → q(x)

This is a predicate, not a proposition, until a value is assigned.

Converting into a Proposition

Case 1: Let x = 5

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

Case 2: Let x = 1

p(1) → q(1) → False → True → True

7. Important Observations

8. Related Forms of Conditional

(a) Converse

q → p

(b) Inverse

¬p → ¬q

(c) Contrapositive

¬q → ¬p

Important Fact:

9. Logical Equivalence

A conditional can be rewritten as:

p → q ≡ ¬p ∨ q

Meaning:

“If p then q” is equivalent to “not p OR q”

10. Applications of Conditional

(a) Mathematics

(b) Computer Science

(c) Real-Life Reasoning

11. Summary

< Prev Next >