In formal languages, truth functions are represented by unambiguous symbols. This allows logical statements to not be understood in an ambiguous way. These symbols are called logical connectives, logical operators, propositional operators, or, in classical logic, truth-functional connectives. For the rules which allow new well-formed formulas to be constructed by joining other well-formed formulas using truth-functional connectives, see well-formed formula.
Logical connectives can be used to link zero or more statements, so one can speak about n-ary logical connectives. The boolean constants True and False can be thought of as zero-ary operators. Negation is a unary connective, and so on.
Commonly used logical connectives include the following ones.1
For example, the meaning of the statements it is raining (denoted by p {\displaystyle p} ) and I am indoors (denoted by q {\displaystyle q} ) is transformed, when the two are combined with logical connectives:
It is also common to consider the always true formula and the always false formula to be connective (in which case they are nullary).
This table summarizes the terminology:
Some authors used letters for connectives: u . {\displaystyle \operatorname {u.} } for conjunction (German's "und" for "and") and o . {\displaystyle \operatorname {o.} } for disjunction (German's "oder" for "or") in early works by Hilbert (1904);20 N p {\displaystyle Np} for negation, K p q {\displaystyle Kpq} for conjunction, D p q {\displaystyle Dpq} for alternative denial, A p q {\displaystyle Apq} for disjunction, C p q {\displaystyle Cpq} for implication, E p q {\displaystyle Epq} for biconditional in Łukasiewicz in 1929.
Such a logical connective as converse implication " ← {\displaystyle \leftarrow } " is actually the same as material conditional with swapped arguments; thus, the symbol for converse implication is redundant. In some logical calculi (notably, in classical logic), certain essentially different compound statements are logically equivalent. A less trivial example of a redundancy is the classical equivalence between ¬ p ∨ q {\displaystyle \neg p\vee q} and p → q {\displaystyle p\to q} . Therefore, a classical-based logical system does not need the conditional operator " → {\displaystyle \to } " if " ¬ {\displaystyle \neg } " (not) and " ∨ {\displaystyle \vee } " (or) are already in use, or may use the " → {\displaystyle \to } " only as a syntactic sugar for a compound having one negation and one disjunction.
There are sixteen Boolean functions associating the input truth values p {\displaystyle p} and q {\displaystyle q} with four-digit binary outputs.21 These correspond to possible choices of binary logical connectives for classical logic. Different implementations of classical logic can choose different functionally complete subsets of connectives.
One approach is to choose a minimal set, and define other connectives by some logical form, as in the example with the material conditional above. The following are the minimal functionally complete sets of operators in classical logic whose arities do not exceed 2:
Another approach is to use with equal rights connectives of a certain convenient and functionally complete, but not minimal set. This approach requires more propositional axioms, and each equivalence between logical forms must be either an axiom or provable as a theorem.
The situation, however, is more complicated in intuitionistic logic. Of its five connectives, {∧, ∨, →, ¬, ⊥}, only negation "¬" can be reduced to other connectives (see False (logic) § False, negation and contradiction for more). Neither conjunction, disjunction, nor material conditional has an equivalent form constructed from the other four logical connectives.
The standard logical connectives of classical logic have rough equivalents in the grammars of natural languages. In English, as in many languages, such expressions are typically grammatical conjunctions. However, they can also take the form of complementizers, verb suffixes, and particles. The denotations of natural language connectives is a major topic of research in formal semantics, a field that studies the logical structure of natural languages.
The meanings of natural language connectives are not precisely identical to their nearest equivalents in classical logic. In particular, disjunction can receive an exclusive interpretation in many languages. Some researchers have taken this fact as evidence that natural language semantics is nonclassical. However, others maintain classical semantics by positing pragmatic accounts of exclusivity which create the illusion of nonclassicality. In such accounts, exclusivity is typically treated as a scalar implicature. Related puzzles involving disjunction include free choice inferences, Hurford's Constraint, and the contribution of disjunction in alternative questions.
Other apparent discrepancies between natural language and classical logic include the paradoxes of material implication, donkey anaphora and the problem of counterfactual conditionals. These phenomena have been taken as motivation for identifying the denotations of natural language conditionals with logical operators including the strict conditional, the variably strict conditional, as well as various dynamic operators.
The following table shows the standard classically definable approximations for the English connectives.
Some logical connectives possess properties that may be expressed in the theorems containing the connective. Some of those properties that a logical connective may have are:
For classical and intuitionistic logic, the "=" symbol means that corresponding implications "...→..." and "...←..." for logical compounds can be both proved as theorems, and the "≤" symbol means that "...→..." for logical compounds is a consequence of corresponding "...→..." connectives for propositional variables. Some many-valued logics may have incompatible definitions of equivalence and order (entailment).
Both conjunction and disjunction are associative, commutative and idempotent in classical logic, most varieties of many-valued logic and intuitionistic logic. The same is true about distributivity of conjunction over disjunction and disjunction over conjunction, as well as for the absorption law.
In classical logic and some varieties of many-valued logic, conjunction and disjunction are dual, and negation is self-dual, the latter is also self-dual in intuitionistic logic.
As a way of reducing the number of necessary parentheses, one may introduce precedence rules: ¬ has higher precedence than ∧, ∧ higher than ∨, and ∨ higher than →. So for example, P ∨ Q ∧ ¬ R → S {\displaystyle P\vee Q\land {\neg R}\rightarrow S} is short for ( P ∨ ( Q ∧ ( ¬ R ) ) ) → S {\displaystyle (P\vee (Q\land (\neg R)))\rightarrow S} .
Here is a table that shows a commonly used precedence of logical operators.2223
However, not all compilers use the same order; for instance, an ordering in which disjunction is lower precedence than implication or bi-implication has also been used.24 Sometimes precedence between conjunction and disjunction is unspecified requiring to provide it explicitly in given formula with parentheses. The order of precedence determines which connective is the "main connective" when interpreting a non-atomic formula.
The 16 logical connectives can be partially ordered to produce the following Hasse diagram. The partial order is defined by declaring that x ≤ y {\displaystyle x\leq y} if and only if whenever x {\displaystyle x} holds then so does y . {\displaystyle y.}
Logical connectives are used in computer science and in set theory.
Main article: Logic gate
A truth-functional approach to logical operators is implemented as logic gates in digital circuits. Practically all digital circuits (the major exception is DRAM) are built up from NAND, NOR, NOT, and transmission gates; see more details in Truth function in computer science. Logical operators over bit vectors (corresponding to finite Boolean algebras) are bitwise operations.
But not every usage of a logical connective in computer programming has a Boolean semantic. For example, lazy evaluation is sometimes implemented for P ∧ Q and P ∨ Q, so these connectives are not commutative if either or both of the expressions P, Q have side effects. Also, a conditional, which in some sense corresponds to the material conditional connective, is essentially non-Boolean because for if (P) then Q;, the consequent Q is not executed if the antecedent P is false (although a compound as a whole is successful ≈ "true" in such case). This is closer to intuitionist and constructivist views on the material conditional— rather than to classical logic's views.
Main articles: Set theory and Axiomatic set theory
Logical connectives are used to define the fundamental operations of set theory,25 as follows:
This definition of set equality is equivalent to the axiom of extensionality.
Chao, C. (2023). 数理逻辑:形式化方法的应用 [Mathematical Logic: Applications of the Formalization Method] (in Chinese). Beijing: Preprint. pp. 15–28. ↩
Heyting, A. (1930). "Die formalen Regeln der intuitionistischen Logik". Sitzungsberichte der Preussischen Akademie der Wissenschaften, Physikalisch-mathematische Klasse (in German): 42–56. ↩
Denis Roegel (2002), A brief survey of 20th century logical notations (see chart on page 2). https://members.loria.fr/Roegel/loc/symboles-logiques-eng.pdf ↩
Frege, G. (1879). Begriffsschrift, eine der arithmetischen nachgebildete Formelsprache des reinen Denkens. Halle a/S.: Verlag von Louis Nebert. p. 10. ↩
Russell (1908) Mathematical logic as based on the theory of types (American Journal of Mathematics 30, p222–262, also in From Frege to Gödel edited by van Heijenoort). /wiki/Bertrand_Russell ↩
Peano (1889) Arithmetices principia, nova methodo exposita. /wiki/Giuseppe_Peano ↩
Schönfinkel (1924) Über die Bausteine der mathematischen Logik, translated as On the building blocks of mathematical logic in From Frege to Gödel edited by van Heijenoort. /wiki/Moses_Sch%C3%B6nfinkel ↩
Peirce (1867) On an improvement in Boole's calculus of logic. /wiki/Charles_Sanders_Peirce ↩
Hilbert, D. (1918). Bernays, P. (ed.). Prinzipien der Mathematik. Lecture notes at Universität Göttingen, Winter Semester, 1917-1918; Reprinted as Hilbert, D. (2013). "Prinzipien der Mathematik". In Ewald, W.; Sieg, W. (eds.). David Hilbert's Lectures on the Foundations of Arithmetic and Logic 1917–1933. Heidelberg, New York, Dordrecht and London: Springer. pp. 59–221. ↩
Bourbaki, N. (1954). Théorie des ensembles. Paris: Hermann & Cie, Éditeurs. p. 14. ↩
Frege, G. (1879). Begriffsschrift, eine der arithmetischen nachgebildete Formelsprache des reinen Denkens (in German). Halle a/S.: Verlag von Louis Nebert. p. 15. ↩
Becker, A. (1933). Die Aristotelische Theorie der Möglichkeitsschlösse: Eine logisch-philologische Untersuchung der Kapitel 13-22 von Aristoteles' Analytica priora I (in German). Berlin: Junker und Dünnhaupt Verlag. p. 4. ↩
Bourbaki, N. (1954). Théorie des ensembles (in French). Paris: Hermann & Cie, Éditeurs. p. 32. ↩
Gentzen (1934) Untersuchungen über das logische Schließen. /wiki/Gerhard_Gentzen ↩
Chazal (1996) : Éléments de logique formelle. ↩
Hilbert, D. (1905) [1904]. "Über die Grundlagen der Logik und der Arithmetik". In Krazer, K. (ed.). Verhandlungen des Dritten Internationalen Mathematiker Kongresses in Heidelberg vom 8. bis 13. August 1904. pp. 174–185. ↩
Bocheński (1959), A Précis of Mathematical Logic, passim. /wiki/J%C3%B3zef_Maria_Boche%C5%84ski ↩
O'Donnell, John; Hall, Cordelia; Page, Rex (2007). Discrete Mathematics Using a Computer. Springer. p. 120. ISBN 9781846285981.. 9781846285981 ↩
Allen, Colin; Hand, Michael (2022). Logic primer (3rd ed.). Cambridge, Massachusetts: The MIT Press. ISBN 978-0-262-54364-4. 978-0-262-54364-4 ↩
Jackson, Daniel (2012). Software Abstractions: Logic, Language, and Analysis. MIT Press. p. 263. ISBN 9780262017152.. 9780262017152 ↩
Pinter, Charles C. (2014). A book of set theory. Mineola, New York: Dover Publications, Inc. pp. 26–29. ISBN 978-0-486-49708-2. 978-0-486-49708-2 ↩
"Set operations". www.siue.edu. Retrieved 2024-06-11. https://www.siue.edu/~jloreau/courses/math-223/notes/sec-set-operations.html ↩
"1.5 Logic and Sets". www.whitman.edu. Retrieved 2024-06-11. https://www.whitman.edu/mathematics/higher_math_online/section01.05.html ↩
"Theory Set". mirror.clarkson.edu. Retrieved 2024-06-11. https://mirror.clarkson.edu/isabelle/dist/library/HOL/HOL/Set.html ↩
"Set Inclusion and Relations". autry.sites.grinnell.edu. Retrieved 2024-06-11. https://autry.sites.grinnell.edu/csc208/readings/set-inclusion.html ↩
"Complement and Set Difference". web.mnstate.edu. Retrieved 2024-06-11. https://web.mnstate.edu/peil/MDEV102/U1/S6/Complement3.htm ↩
Cooper, A. "Set Operations and Subsets – Foundations of Mathematics". Retrieved 2024-06-11. https://ma225.wordpress.ncsu.edu/set-operations-and-subsets/ ↩
"Basic concepts". www.siue.edu. Retrieved 2024-06-11. https://www.siue.edu/~jloreau/courses/math-223/notes/sec-set-basics.html ↩