Search Knowledge

© 2026 LIBREUNI PROJECT

Mathematics / Foundations & Logic

Propositional Logic

Propositional Logic

Propositional logic, also known as sentential logic or statement logic, is the branch of logic that studies ways of combining or altering statements or propositions to form more complicated statements or propositions. It is the most basic level of formal logic and serves as the foundation for all mathematical reasoning.

Propositions

A proposition is a declarative sentence that is either true or false, but not both. In mathematics, we often represent propositions using lowercase letters like .

Examples of propositions:

  • “The square root of 2 is irrational.” (True)
  • “7 is an even number.” (False)
  • .” (True)

Examples that are NOT propositions:

  • “What time is it?” (Question)
  • “Read this carefully.” (Command)
  • .” (This is an open sentence, as its truth depends on the value of . In predicate logic, we will handle this using quantifiers.)

Logical Connectives

We use logical connectives to build complex statements from simpler ones. The primary connectives are:

  1. Negation (): The negation of is (read as “not ”). If is True, is False.
  2. Conjunction (): The conjunction of and is (read as ” and ”). It is true only if both are true.
  3. Disjunction (): The disjunction of and is (read as ” or ”). It is true if at least one is true. This is the “inclusive or.”
  4. Exclusive Or (): is true if exactly one of or is true.
  5. Implication (): The conditional statement (read as “if , then ”). It is false only when is true and is false.
  6. Biconditional (): (read as ” if and only if ”) is true when and have the same truth value.

Truth Tables

Truth tables are a fundamental tool for defining connectives and analyzing the possible truth values of complex statements.

TTTTTT
TFFTFF
FTFTTF
FFFFTT

Logical Equivalences

Two statements are logically equivalent if they have the same truth values in all possible cases. We denote equivalence as .

Some important equivalences:

  • De Morgan’s Laws:
  • Distributive Laws:
  • Contrapositive:

The contrapositive is particularly important in mathematical proofs. If you want to prove “If is even, then is even,” it is often easier to prove the contrapositive: “If is odd, then is odd.”

Tautologies and Contradictions

  • A tautology is a statement that is always true (e.g., ).
  • A contradiction is a statement that is always false (e.g., ).
  • A contingency is a statement that is neither a tautology nor a contradiction.

Applications and Formal Systems

Propositional logic forms the backbone of digital circuit design (Boolean algebra is its algebraic counterpart) and computer programming. In “pure” mathematics, it is the metalanguage we use to define the rules of inference.

A formal system of propositional logic consists of a set of symbols (atoms and connectives), rules for forming well-formed formulas (WFFs), and rules of inference (like Modus Ponens: from and , infer ).

Exercise

Conceptual Check

Which of the following is logically equivalent to the implication p → q?

Understanding these foundations is critical before moving into Predicate Logic, where we introduce variables and quantifiers, allowing us to make statements about sets of objects.