Associative property | |
Type: | Law, rule of replacement |
In mathematics, the associative property[1] is a property of some binary operations that means that rearranging the parentheses in an expression will not change the result. In propositional logic, associativity is a valid rule of replacement for expressions in logical proofs.
Within an expression containing two or more occurrences in a row of the same associative operator, the order in which the operations are performed does not matter as long as the sequence of the operands is not changed. That is (after rewriting the expression with parentheses and in infix notation if necessary), rearranging the parentheses in such an expression will not change its value. Consider the following equations:
Even though the parentheses were rearranged on each line, the values of the expressions were not altered. Since this holds true when performing addition and multiplication on any real numbers, it can be said that "addition and multiplication of real numbers are associative operations".
Associativity is not the same as commutativity, which addresses whether the order of two operands affects the result. For example, the order does not matter in the multiplication of real numbers, that is,, so we say that the multiplication of real numbers is a commutative operation. However, operations such as function composition and matrix multiplication are associative, but not (generally) commutative.
Associative operations are abundant in mathematics; in fact, many algebraic structures (such as semigroups and categories) explicitly require their binary operations to be associative.
However, many important and interesting operations are non-associative; some examples include subtraction, exponentiation, and the vector cross product. In contrast to the theoretical properties of real numbers, the addition of floating point numbers in computer science is not associative, and the choice of how to associate an expression can have a significant effect on rounding error.
\ast
(x\asty)\astz=x\ast(y\astz)
x,y,z
Here, ∗ is used to replace the symbol of the operation, which may be any symbol, and even the absence of symbol (juxtaposition) as for multiplication.
(xy)z=x(yz)
x,y,z
The associative law can also be expressed in functional notation thus:
(f\circ(g\circh))(x)=((f\circg)\circh)(x)
If a binary operation is associative, repeated application of the operation produces the same result regardless of how valid pairs of parentheses are inserted in the expression.[2] This is called the generalized associative law.
The number of possible bracketings is just the Catalan number,
Cn
C3=5
((ab)c)d
(a(bc))d
a((bc)d)
(a(b(cd))
(ab)(cd)
If the product operation is associative, the generalized associative law says that all these expressions will yield the same result. So unless the expression with omitted parentheses already has a different meaning (see below), the parentheses can be considered unnecessary and "the" product can be written unambiguously as
abcd
An example where this does not work is the logical biconditional . It is associative; thus, is equivalent to, but most commonly means, which is not equivalent.
Some examples of associative operations include the following.
\mboxx,y,z\in\mathbb.|6= Taking the intersection or the union of sets:|7= If is some set and denotes the set of all functions from to, then the operation of function composition on is associative:|8= Slightly more generally, given four sets,, and, with,, and, then
as before. In short, composition of maps is always associative.|9= In category theory, composition of morphisms is associative by definition. Associativity of functors and natural transformations follows from associativity of morphisms.|10= Consider a set with three elements,,, and . The following operation:
is associative. Thus, for example, . This operation is not commutative.|11= Because matrices represent linear functions, and matrix multiplication represents function composition, one can immediately conclude that matrix multiplication is associative.[3] |12= For real numbers (and for any totally ordered set), the minimum and maximum operation is associative:
}}
In standard truth-functional propositional logic, association,[4] [5] or associativity[6] are two valid rules of replacement. The rules allow one to move parentheses in logical expressions in logical proofs. The rules (using logical connectives notation) are:
and
where "
\Leftrightarrow
Associativity is a property of some logical connectives of truth-functional propositional logic. The following logical equivalences demonstrate that associativity is a property of particular connectives. The following (and their converses, since is commutative) are truth-functional tautologies.
((P\lorQ)\lorR)\leftrightarrow(P\lor(Q\lorR))
((P\landQ)\landR)\leftrightarrow(P\land(Q\landR))
((P\leftrightarrowQ)\leftrightarrowR)\leftrightarrow(P\leftrightarrow(Q\leftrightarrowR))
Joint denial is an example of a truth functional connective that is not associative.
A binary operation
*
For such an operation the order of evaluation does matter. For example:
(5-3)-2\ne5-(3-2)
(4/2)/2\ne4/(2/2)
(12) | |
2 |
\ne(21)2
\begin{align} i x (i x j)&=i x k=-j\\ (i x i) x j&=0 x j=0 \end{align}
Also although addition is associative for finite sums, it is not associative inside infinite sums (series). For example,whereas
Some non-associative operations are fundamental in mathematics. They appear often as the multiplication in structures called non-associative algebras, which have also an addition and a scalar multiplication. Examples are the octonions and Lie algebras. In Lie algebras, the multiplication satisfies Jacobi identity instead of the associative law; this allows abstracting the algebraic nature of infinitesimal transformations.
Other examples are quasigroup, quasifield, non-associative ring, and commutative non-associative magmas.
In mathematics, addition and multiplication of real numbers is associative. By contrast, in computer science, the addition and multiplication of floating point numbers is not associative, as different rounding errors may be introduced when dissimilar-sized values are joined together in a different order.[7]
To illustrate this, consider a floating point representation with a 4-bit significand:
Even though most computers compute with 24 or 53 bits of significand,[8] this is still an important source of rounding error, and approaches such as the Kahan summation algorithm are ways to minimise the errors. It can be especially problematic in parallel computing.[9]
See main article: Operator associativity.
In general, parentheses must be used to indicate the order of evaluation if a non-associative operation appears more than once in an expression (unless the notation specifies the order in another way, like
\dfrac{2}{3/4}
A left-associative operation is a non-associative operation that is conventionally evaluated from left to right, i.e.,
while a right-associative operation is conventionally evaluated from right to left:
Both left-associative and right-associative operations occur. Left-associative operations include the following:
x-y-z=(x-y)-z
x/y/z=(x/y)/z
(fxy)=((fx)y)
Right-associative operations include the following:
yz | |
x |
(yz) | |
=x |
Exponentiation is commonly used with brackets or right-associatively because a repeated left-associative exponentiation operation is of little use. Repeated powers would mostly be rewritten with multiplication:
(xy)z=x(yz)
Formatted correctly, the superscript inherently behaves as a set of parentheses; e.g. in the expression
2x+3
2(x+3)
yz | |
x |
yz
x
{xy}z=(xy)z
xyz=x(yz)
yz | |
x |
(yz) | |
=x |
Z\rarrZ\rarrZ=Z\rarr(Z\rarrZ)
x\mapstoy\mapstox-y=x\mapsto(y\mapstox-y)
Using right-associative notation for these operations can be motivated by the Curry–Howard correspondence and by the currying isomorphism.
Non-associative operations for which no conventional evaluation order is defined include the following.
(x\wedgey)\wedgez\nex\wedge(y\wedgez)
a\uparrow\uparrow(b\uparrow\uparrowc)\ne(a\uparrow\uparrowb)\uparrow\uparrowc
a\uparrow\uparrow\uparrow(b\uparrow\uparrow\uparrowc)\ne(a\uparrow\uparrow\uparrowb)\uparrow\uparrow\uparrowc
\veca x (\vecb x \vecc) ≠ (\veca x \vecb) x \vecc forsome\veca,\vecb,\vecc\inR3
{(x+y)/2+z\over2}\ne{x+(y+z)/2\over2} forallx,y,z\inRwithx\nez.
(A\backslashB)\backslashC ≠ A\backslash(B\backslashC)
(Compare material nonimplication in logic.)
William Rowan Hamilton seems to have coined the term "associative property"[16] around 1844, a time when he was contemplating the non-associative algebra of the octonions he had learned about from John T. Graves.[17]
a1,a2,...,an(n\ge2)
a1a2 … an