Peirce arrow

From MediaWiki
Revision as of 14:29, 20 October 2025 by Bfh-sts (talk | contribs) (Created page with "= Peirce arrow = The Peirce arrow (also called ''NOR'') is a logical operation that returns true only when both propositions are false. It is functionally complete, meaning all other logical operations can be expressed in terms of it. == Symbols == * p ↓ q (mathematical notation) * p NOR q (common name) * ¬(p ∨ q) (definition) == Definition == The Peirce arrow produces the negation of disjunction. == Truth Table == {| class="wikitable" ! p !! q !! p ↓ q |- |...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Peirce arrow

The Peirce arrow (also called NOR) is a logical operation that returns true only when both propositions are false. It is functionally complete, meaning all other logical operations can be expressed in terms of it.

Symbols

  • p ↓ q (mathematical notation)
  • p NOR q (common name)
  • ¬(p ∨ q) (definition)

Definition

The Peirce arrow produces the negation of disjunction.

Truth Table

p q p ↓ q
T T F
T F F
F T F
F F T

Examples

  • If p = "I will travel" and q = "I will study",
 then p ↓ q = "It is not the case that I will travel or study" (meaning: I do neither).
  • In Python: not (p or q)
  • In Java: !(p || q)