Notes

Negation in Discrete Mathematics [ English ]

< Prev Next >

1. Introduction to Negation

In discrete mathematics, logical reasoning often involves analyzing not only what is true, but also what is not true. The logical operator that allows us to reverse the truth value of a proposition is called negation.

Negation is one of the most fundamental operations in logic and serves as the basis for more complex logical constructions.

2. Definition of Negation

A negation is a unary logical operation that reverses the truth value of a proposition.

Formal Definition:

If p is a proposition, then its negation is written as:

¬p

3. Symbol and Representation

The symbol used for negation is:

¬

Interpretation:


4. Truth Table of Negation

p ¬p
True False
False True

Explanation:


5. Examples of Negation (Formally Correct)

Example 1: Simple Proposition

Let:

Then:

¬p

means: It is not raining


Example 2: Numerical Statement

Let:

Then:

¬p → True

✔ Since the original statement is false, its negation is true.


Example 3: Using Predicates

Let:

Then:

¬p(x): x ≤ 0

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


Converting into a Proposition

Case 1: Let x = 3


Case 2: Let x = -2


6. Negation of Compound Propositions

Negation can also be applied to compound statements.


(a) Negation of Conjunction

¬(p ∧ q) ≡ ¬p ∨ ¬q

(b) Negation of Disjunction

¬(p ∨ q) ≡ ¬p ∧ ¬q

These are known as De Morgan’s Laws.

7. Double Negation Law

¬(¬p) ≡ p

Explanation:

Negating a statement twice returns the original statement.

8. Real-Life Interpretation

Negation is commonly used in everyday reasoning:

In programming:

if (!condition)

9. Applications of Negation

(a) Computer Science

(b) Mathematics

(c) Logic

10. Summary

< Prev Next >