Logical conjunction
AND | |
---|---|
Definition | |
Truth table | |
Logic gate | |
Normal forms | |
Disjunctive | |
Conjunctive | |
Zhegalkin polynomial | |
Post's lattices | |
0-preserving | yes |
1-preserving | yes |
Monotone | no |
Affine | no |
Self-dual | no |
Logical connectives | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||||
Related concepts | ||||||||||||||||||||||
Applications | ||||||||||||||||||||||
Category | ||||||||||||||||||||||
In logic, mathematics and linguistics, and () is the truth-functional operator of conjunction or logical conjunction. The logical connective of this operator is typically represented as [1] or or (prefix) or or [2] in which is the most modern and widely used.
The and of a set of operands is true if and only if all of its operands are true, i.e., is true if and only if is true and is true.
An operand of a conjunction is a conjunct.[3]
Beyond logic, the term "conjunction" also refers to similar concepts in other fields:
- In natural language, the denotation of expressions such as English "and";
- In programming languages, the short-circuit and control structure;
- In set theory, intersection.
- In lattice theory, logical conjunction (greatest lower bound).
Notation
And is usually denoted by an infix operator: in mathematics and logic, it is denoted by (Unicode U+2227 ∧ LOGICAL AND),[1] or ; in electronics, ; and in programming languages, &
, &&
, or and
. In Jan Łukasiewicz's prefix notation for logic, the operator is , for Polish koniunkcja.[4]
Definition
Logical conjunction is an
The conjunctive identity is true, which is to say that AND-ing an expression with true will never change the value of the expression. In keeping with the concept of vacuous truth, when conjunction is defined as an operator or function of arbitrary arity, the empty conjunction (AND-ing over an empty set of operands) is often defined as having the result true.
Truth table
The truth table of :[1][2]
F | F | F |
F | T | F |
T | F | F |
T | T | T |
Defined by other operators
In systems where logical conjunction is not a primitive, it may be defined as[5]
or
Introduction and elimination rules
As a rule of inference,
- ,
- .
- Therefore, A and B.
or in
Here is an example of an argument that fits the form conjunction introduction:
- Bob likes apples.
- Bob likes oranges.
- Therefore, Bob likes apples and Bob likes oranges.
- and .
- Therefore, .
...or alternatively,
- and .
- Therefore, .
In
...or alternatively,
Negation
Definition
A conjunction is proven false by establishing either or . In terms of the object language, this reads
This formula can be seen as a special case of
when is a false proposition.
Other proof strategies
If implies , then both as well as prove the conjunction false:
In other words, a conjunction can actually be proven false just by knowing about the relation of its conjuncts, and not necessary about their truth values.
This formula can be seen as a special case of
when is a false proposition.
Either of the above are constructively valid proofs by contradiction.
Properties
commutativity: yes
others | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
with exclusive or: with material nonimplication: with itself: |
monotonicity: yes
truth-preserving: yes
When all inputs are true, the output is true.
(to be tested) |
falsehood-preserving: yes
When all inputs are false, the output is false.
(to be tested) |
Walsh spectrum: (1,-1,-1,1)
Non
If using
Applications in computer engineering
In high-level computer programming and digital electronics, logical conjunction is commonly represented by an infix operator, usually as a keyword such as "AND
", an algebraic multiplication, or the ampersand symbol &
(sometimes doubled as in &&
). Many languages also provide short-circuit control structures corresponding to logical conjunction.
Logical conjunction is often used for bitwise operations, where 0
corresponds to false and 1
to true:
0 AND 0
=0
,0 AND 1
=0
,1 AND 0
=0
,1 AND 1
=1
.
The operation can also be applied to two binary
11000110 AND 10100011
=10000010
.
This can be used to select part of a bitstring using a bit mask. For example, 10011101 AND 00001000
= 00001000
extracts the fourth bit of an 8-bit bitstring.
In
Logical conjunction "AND
" is also used in SQL operations to form database queries.
The Curry–Howard correspondence relates logical conjunction to product types.
Set-theoretic correspondence
The membership of an element of an intersection set in set theory is defined in terms of a logical conjunction: if and only if . Through this correspondence, set-theoretic intersection shares several properties with logical conjunction, such as
Natural language
As with other notions formalized in mathematical logic, the logical conjunction and is related to, but not the same as, the
English "and" has properties not captured by logical conjunction. For example, "and" sometimes implies order having the sense of "then". For example, "They got married and had a child" in common discourse means that the marriage came before the child.
The word "and" can also imply a partition of a thing into parts, as "The American flag is red, white, and blue." Here, it is not meant that the flag is at once red, white, and blue, but rather that it has a part of each color.
See also
- And-inverter graph
- AND gate
- Bitwise AND
- Boolean algebra
- Boolean conjunctive query
- Boolean domain
- Boolean function
- Boolean-valued function
- Conjunction/disjunction duality
- Conjunction elimination
- Conjunction (grammar)
- De Morgan's laws
- First-order logic
- Fréchet inequalities
- Homogeneity (linguistics)
- List of Boolean algebra topics
- Logical disjunction
- Logical graph
- Negation
- Operation
- Peano–Russell notation
- Propositional calculus
References
- ^ a b c d "2.2: Conjunctions and Disjunctions". Mathematics LibreTexts. 2019-08-13. Retrieved 2020-09-02.
- ^ a b c "Conjunction, Negation, and Disjunction". philosophy.lander.edu. Retrieved 2020-09-02.
- ISBN 978-0-203-85155-5.
- ^ Józef Maria Bocheński (1959), A Précis of Mathematical Logic, translated by Otto Bird from the French and German editions, Dordrecht, South Holland: D. Reidel, passim.
- ^ Smith, Peter. "Types of proof system" (PDF). p. 4.
- ISBN 978-0-415-13342-5.
External links
- "Conjunction", Encyclopedia of Mathematics, EMS Press, 2001 [1994]
- Wolfram MathWorld: Conjunction
- "Property and truth table of AND propositions". Archived from the original on May 6, 2017.