And is usually denoted by an infix operator: in mathematics and logic, it is denoted by a "wedge" (UnicodeU+2227∧LOGICAL AND),[1] or; in electronics,; and in programming languages&,&&, orand. InJan Łukasiewicz'sprefix notation for logic, the operator is, for Polishkoniunkcja.[4]
In mathematics, the conjunction of an arbitrary number of elements can be denoted as aniterated binary operation using a "big wedge" ⋀ (UnicodeU+22C0⋀N-ARY LOGICAL AND):[5]
The conjunctiveidentity 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 ofvacuous truth, when conjunction is defined as an operator or function of arbitraryarity, the empty conjunction (AND-ing over an empty set of operands) is often defined as having the result true.
As a rule of inference,conjunction introduction is a classicallyvalid, simpleargument form. The argument form has two premises, and. Intuitively, it permits the inference of their conjunction.
,
.
Therefore,A andB.
or inlogical operator notation, where \vdash expresses provability:
Therefore, Bob likes apples and Bob likes oranges.
Conjunction elimination is another classicallyvalid, simpleargument form. Intuitively, it permits the inference from any conjunction of either element of that conjunction.
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.
In high-level computer programming anddigital 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 provideshort-circuit control structures corresponding to logical conjunction.
Logical conjunction is often used for bitwise operations, where0 corresponds to false and1 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 binarywords viewed asbitstrings of equal length, by taking the bitwise AND of each pair of bits at corresponding positions. For example:
11000110 AND 10100011 = 10000010.
This can be used to select part of a bitstring using abit mask. For example,10011101 AND 00001000 = 00001000 extracts the fourth bit of an 8-bit bitstring.
The membership of an element of anintersection set inset 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 asassociativity,commutativity andidempotence.
As with other notions formalized in mathematical logic, the logical conjunctionand is related to, but not the same as, thegrammatical conjunctionand in natural languages.
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 isat once red, white, and blue, but rather that each color is a part of the flag.
^Beall, Jeffrey C. (2010).Logic: the basics (1. publ ed.). London: Routledge. p. 17.ISBN978-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.
^Weisstein, Eric W."Conjunction".MathWorld--A Wolfram Web Resource. Retrieved24 September 2024.