请输入您要查询的百科知识:

 

词条 Associative property
释义

  1. Definition

  2. Generalized associative law

  3. Examples

  4. Propositional logic

      Rule of replacement    Truth functional connectives  

  5. Non-associative operation

     Nonassociativity of floating point calculation   Notation for non-associative operations  

  6. See also

  7. References

{{About|the associative property in mathematics|associativity in the central processing unit memory cache|CPU cache#Associativity|associativity in programming languages|operator associativity}}{{redirect2|Associative|non-associative|associative and non-associative learning|Learning#Types}}{{Refimprove|date=June 2009}}{{Transformation rules}}

In mathematics, the associative property[1] is a property of some binary operations. 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, 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 or not the order of two operands changes the result. For example, the order does not matter in the multiplication of real numbers, that is, {{nowrap|1=a × b = b × a}}, so we say that the multiplication of real numbers is a commutative operation.

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.

Definition

Formally, a binary operation ∗ on a set S is called associative if it satisfies the associative law:

(xy) ∗ z = x ∗ (yz) for all x, y, z in S.

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) = xyz for all x, y, z in S.

The associative law can also be expressed in functional notation thus: {{nowrap|1=f(f(x, y), z) = f(x, f(y, z))}}.

Generalized associative law

If a binary operation is associative, repeated application of the operation produces the same result regardless how valid pairs of parenthesis are inserted in the expression.[2] This is called the generalized associative law. For instance, a product of four elements may be written in five possible ways:

  1. ((ab)c)d
  2. (ab)(cd)
  3. (a(bc))d
  4. a((bc)d)
  5. a(b(cd))

If the product operation is associative, the generalized associative law says that all these formulas will yield the same result, making the parenthesis unnecessary. Thus "the" product can be written unambiguously as

abcd.

As the number of elements increases, the number of possible ways to insert parentheses grows quickly, but they remain unnecessary for disambiguation.

Examples

Some examples of associative operations include the following.

  • The concatenation of the three strings "hello", " ", "world" can be computed by concatenating the first two strings (giving "hello ") and appending the third string ("world"), or by joining the second and third string (giving " world") and concatenating the first string ("hello") with the result. The two methods produce the same result; string concatenation is associative (but not commutative).
  • In arithmetic, addition and multiplication of real numbers are associative; i.e.,

Because of associativity, the grouping parentheses can be omitted without ambiguity.

  • The trivial operation {{math|1=xy = x}} (that is, the result is the first argument, no matter what the second argument is) is associative but not commutative. Likewise, the trivial operation {{math|1=xy = y}} (that is, the result is the second argument, no matter what the first argument is) is associative but not commutative.
  • Addition and multiplication of complex numbers and quaternions are associative. Addition of octonions is also associative, but multiplication of octonions is non-associative.
  • The greatest common divisor and least common multiple functions act associatively.

  • Taking the intersection or the union of sets:

  • If M is some set and S denotes the set of all functions from M to M, then the operation of function composition on S is associative:

  • Slightly more generally, given four sets M, N, P and Q, with h: M to N, g: N to P, and f: P to Q, then

as before. In short, composition of maps is always associative.

  • Consider a set with three elements, A, B, and C. The following operation:
× A B C
A A A A
B A B C
C A A A

is associative. Thus, for example, A(BC)=(AB)C = A. This operation is not commutative.

  • Because matrices represent linear functions, and matrix multiplication represents function composition, one can immediately conclude that matrix multiplication is associative. [3]

Propositional logic

Rule of replacement

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 "" is a metalogical symbol representing "can be replaced in a proof with."

Truth functional connectives

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 are truth-functional tautologies. [7]

Associativity of disjunction:

Associativity of conjunction:

Associativity of equivalence:

Joint denial is an example of a truth functional connective that is not associative.

Non-associative operation

A binary operation on a set S that does not satisfy the associative law is called non-associative. Symbolically,

For such an operation the order of evaluation does matter. For example:

  • Subtraction

  • Division

  • Exponentiation

Also note that infinite sums are not generally associative, for example:

whereas

The study of non-associative structures arises from reasons somewhat different from the mainstream of classical algebra. One area within non-associative algebra that has grown very large is that of Lie algebras. There the associative law is replaced by the Jacobi identity. Lie algebras abstract the essential nature of infinitesimal transformations, and have become ubiquitous in mathematics.

There are other specific types of non-associative structures that have been studied in depth; these tend to come from some specific applications or areas such as combinatorial mathematics. Other examples are Quasigroup, Quasifield, Non-associative ring, Non-associative algebra and Commutative non-associative magmas.

Nonassociativity of floating point calculation

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 rounding errors are introduced when dissimilar-sized values are joined together.[8]

To illustrate this, consider a floating point representation with a 4-bit mantissa:


(1.0002×20 +

1.0002×20) +

1.0002×24 =

1.0002×21 +

1.0002×24 =

1.00{{fontcolor|red|1}}2×24


1.0002×20 +

(1.0002×20 +

1.0002×24) =

1.0002×20 +

1.00{{fontcolor|red|0}}2×24 =

1.00{{fontcolor|red|0}}2×24

Even though most computers compute with a 24 or 53 bits of mantissa,[9] this is 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.[10][11]

Notation for non-associative operations

{{main|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. However, mathematicians agree on a particular order of evaluation for several common non-associative operations. This is simply a notational convention to avoid parentheses.

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:

  • Subtraction and division of real numbers:[12][13][14][15][16]

  • Function application:

This notation can be motivated by the currying isomorphism.

Right-associative operations include the following:

  • Exponentiation of real numbers:

One reason exponentiation is right-associative is that a repeated left-associative exponentiation operation would be less useful. Multiple appearances could (and would) be rewritten with multiplication:

An additional argument for exponentiation being right-associative is that the superscript inherently behaves as a set of parentheses; e.g. in the expression the addition is performed before the exponentiation despite there being no explicit parentheses wrapped around it. Thus given an expression such as , it makes sense to require evaluating the full exponent of the base first.

  • Tetration via the up-arrow operator:

  • Function definition

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.

  • Taking the cross product of three vectors:

  • Taking the pairwise average of real numbers:

  • Taking the relative complement of sets is not the same as . (Compare material nonimplication in logic.)

See also

{{Wiktionary}}
  • Light's associativity test
  • A semigroup is a set with a closed associative binary operation.
  • Commutativity and distributivity are two other frequently discussed properties of binary operations.
  • Power associativity, alternativity, flexibility and N-ary associativity are weak forms of associativity.
  • Moufang identities also provide a weak form of associativity.

References

1. ^{{cite book|last=Hungerford|first=Thomas W.|year=1974 |edition=1st|title=Algebra|page=24|publisher=Springer|isbn=978-0387905181|quote=Definition 1.1 (i) a(bc) = (ab)c for all a, b, c in G.}}
2. ^{{cite book |last=Durbin |first=John R. |title=Modern Algebra: an Introduction |year=1992 |publisher=Wiley |location=New York |isbn=978-0-471-51001-7 |page=78 |url=http://www.wiley.com/WileyCDA/WileyTitle/productCd-EHEP000258.html |edition=3rd |quote=If are elements of a set with an associative operation, then the product is unambiguous; this is, the same element will be obtained regardless of how parentheses are inserted in the product}}
3. ^{{cite web|url=http://www.khanacademy.org/math/linear-algebra/matrix-transformations/composition-of-transformations/v/matrix-product-associativity|title=Matrix product associativity|publisher=Khan Academy|accessdate=5 June 2016}}
4. ^Moore and Parker{{full citation needed|date=October 2016}}
5. ^Copi and Cohen{{full citation needed|date=October 2016}}
6. ^Hurley{{full citation needed|date=October 2016}}
7. ^[https://math.stackexchange.com/questions/2197480/symbolic-logic-proof-of-associativity]
8. ^Knuth, Donald, The Art of Computer Programming, Volume 3, section 4.2.2
9. ^{{Cite book |title=IEEE Standard for Floating-Point Arithmetic |author=IEEE Computer Society |date=August 29, 2008 |publisher=IEEE |id=IEEE Std 754-2008 |url=http://ieeexplore.ieee.org/servlet/opac?punumber=4610933 |doi=10.1109/IEEESTD.2008.4610935 |ref=CITEREFIEEE_7542008 |isbn=978-0-7381-5753-5}}
10. ^{{Citation| last = Villa| first = Oreste| last2 = Chavarría-mir| first2 = Daniel| last3 = Gurumoorthi| first3 = Vidhya| last4 = Márquez| first4 = Andrés| last5 = Krishnamoorthy| first5 = Sriram| date =| title = Effects of Floating-Point non-Associativity on Numerical Computations on Massively Multithreaded Systems| url =http://cass-mt.pnnl.gov/docs/pubs/pnnleffects_of_floating-pointpaper.pdf| accessdate = 2014-04-08}}
11. ^{{cite journal|last=Goldberg|first=David|author-link=David Goldberg (PARC)|date=March 1991|title=What Every Computer Scientist Should Know About Floating-Point Arithmetic|url=http://perso.ens-lyon.fr/jean-michel.muller/goldberg.pdf|journal=ACM Computing Surveys|volume=23|issue=1|pages=5–48|doi=10.1145/103162.103163|access-date=2016-01-20}} ( ,  )
12. ^George Mark Bergman: [https://math.berkeley.edu/~gbergman/misc/numbers/ord_ops.html Order of arithmetic operations]
13. ^Education Place: The Order of Operations
14. ^Khan Academy: [https://www.khanacademy.org/math/pre-algebra/pre-algebra-arith-prop/pre-algebra-order-of-operations/v/introduction-to-order-of-operations The Order of Operations], timestamp [https://www.youtube.com/watch?v=ClYdw4d4OmA&t=5m40s 5m40s]
15. ^Virginia Department of Education: Using Order of Operations and Exploring Properties, section 9
16. ^Bronstein: de:Taschenbuch der Mathematik, pages 115-120, chapter: 2.4.1.1, {{ISBN|978-3-8085-5673-3}}

5 : Abstract algebra|Binary operations|Elementary algebra|Functional analysis|Rules of inference

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/23 21:24:48