Idempotence

For the concept in matrix algebra, see Idempotent matrix.

Idempotence (/ˌdmˈptəns/ EYE-dəm-POH-təns)[1] is the property of certain operations in mathematics and computer science, that can be applied multiple times without changing the result beyond the initial application. The concept of idempotence arises in a number of places in abstract algebra (in particular, in the theory of projectors and closure operators) and functional programming (in which it is connected to the property of referential transparency).

The term was introduced by Benjamin Peirce[2] in the context of elements of algebras that remain invariant when raised to a positive integer power, and literally means "(the quality of having) the same power", from idem + potence (same + power).

There are several meanings of idempotence, depending on what the concept is applied to:

Definitions

Unary operation

A unary operation , that is, a map from some set into itself, is called idempotent if, for all in ,

.

In particular, the identity function , defined by , is idempotent, as is the constant function , where is an element of , defined by .

An important class of idempotent functions is given by projections in a vector space. An example of a projection is the function defined by , which projects an arbitrary point in 3D space to a point on the -plane, where the third coordinate () is equal to 0.

A unary operation is idempotent if it maps each element of to a fixed point of . We can partition a set with elements into chosen fixed points and non-fixed points, and then is the number of different idempotent functions. Hence, taking into account all possible partitions,

is the total number of possible idempotent functions on the set. The integer sequence of the number of idempotent functions as given by the sum above for starts with . (sequence A000248 in the OEIS)

Neither the property of being idempotent nor that of being not is preserved under composition of unary functions.[3] As an example for the former, f(x) = x mod 3 and g(x) = max(x, 5) are both idempotent, but fg is not,[4] although gf happens to be.[5] As an example for the latter, the negation function ¬ on truth values isn't idempotent, but ¬ ∘ ¬ is.

Idempotent elements and binary operations

Given a binary operation on a set , an element is said to be idempotent (with respect to ) if:

.

In particular an identity element of , if it exists, is idempotent with respect to the operation , and the same is true of an absorbing element. The binary operation itself is called idempotent if every element of is idempotent. That is, for all where denotes set membership:

.

For example, the operations of set union and set intersection are both idempotent, as are logical conjunction and logical disjunction, and, in general, the meet and join operations of a lattice.

Connections

The connections between the three notions are as follows.

Common examples

Functions

As mentioned above, the identity map and the constant maps are always idempotent maps. The absolute value function of a real or complex argument, and the floor function of a real argument are idempotent.

The function that assigns to every subset of some topological space the closure of is idempotent on the power set of . It is an example of a closure operator; all closure operators are idempotent functions.

The operation of subtracting the mean of a list of numbers from every number in the list is idempotent. For example, consider the numbers . The mean is . Subtracting 7 from every number in the list yields . The mean of that list is . Subtracting 0 from every number in that list yields the same list.

Formal languages

The Kleene star and Kleene plus operators used to express repetition in formal languages are idempotent.

Idempotent ring elements

An idempotent element of a ring is, by definition, an element that is idempotent for the ring's multiplication.[6] That is, an element a is idempotent precisely when a2 = a.

Idempotent elements of rings yield direct decompositions of modules, and play a role in describing other homological properties of the ring. While "idempotent" usually refers to the multiplication operation of a ring, there are rings in which both operations are idempotent: Boolean algebras are such an example.

Other examples

In Boolean algebra, both the logical and and the logical or operations are idempotent. This implies that every element of Boolean algebra is idempotent with respect to both of these operations. Specifically, and for all . In linear algebra, projections are idempotent. In fact, the projections of a vector space are exactly the idempotent elements of the ring of linear transformations of the vector space. After fixing a basis, it can be shown that the matrix of a projection with respect to this basis is an idempotent matrix. An idempotent semiring (also sometimes called a dioid) is a semiring whose addition (not multiplication) is idempotent. If both operations of the semiring are idempotent, then the semiring is called doubly idempotent.[7]

Computer science meaning

In computer science, the term idempotent is used more comprehensively to describe an operation that will produce the same results if executed once or multiple times.[8] This may have a different meaning depending on the context in which it is applied. In the case of methods or subroutine calls with side effects, for instance, it means that the modified state remains the same after the first call. In functional programming, though, an idempotent function is one that has the property f(f(x)) = f(x) for any value x.[9]

This is a very useful property in many situations, as it means that an operation can be repeated or retried as often as necessary without causing unintended effects. With non-idempotent operations, the algorithm may have to keep track of whether the operation was already performed or not.

Examples

A function looking up a customer's name and address in a database is typically idempotent, since this will not cause the database to change. Similarly, changing a customer's address is typically idempotent, because the final address will be the same no matter how many times it is submitted. However, placing an order for a car for the customer is typically not idempotent, since running the call several times will lead to several orders being placed. Canceling an order is idempotent, because the order remains canceled no matter how many requests are made.

A composition of idempotent methods or subroutines, however, is not necessarily idempotent if a later method in the sequence changes a value that an earlier method depends on – idempotence is not closed under composition. For example, suppose the initial value of a variable is 3 and there is a sequence that reads the variable, then changes it to 5, and then reads it again. Each step in the sequence is idempotent: both steps reading the variable have no side effects and changing a variable to 5 will always have the same effect no matter how many times it is executed. Nonetheless, executing the entire sequence once produces the output (3, 5), but executing it a second time produces the output (5, 5), so the sequence is not idempotent.[10]

In the Hypertext Transfer Protocol (HTTP), idempotence and safety are the major attributes that separate HTTP verbs. Of the major HTTP verbs, GET, PUT, and DELETE should be implemented in an idempotent manner according to the standard, but POST need not be.[10] GET retrieves a resource; PUT stores content at a resource; and DELETE eliminates a resource. As in the example above, reading data usually has no side effects, so it is idempotent (in fact nullipotent). Storing and deleting a given set of content are each usually idempotent as long as the request specifies a location or identifier that uniquely identifies that resource and only that resource again in the future. The PUT and DELETE operations with unique identifiers reduce to the simple case of assignment to an immutable variable of either a value or the null-value, respectively, and are idempotent for the same reason; the end result is always the same as the result of the initial execution.

Violation of the unique identification requirement in storage or deletion typically causes violation of idempotence. For example, storing or deleting a given set of content without specifying a unique identifier: POST requests, which do not need to be idempotent, often do not contain unique identifiers, so the creation of the identifier is delegated to the receiving system which then creates a corresponding new record. Similarly, PUT and DELETE requests with nonspecific criteria may result in different outcomes depending on the state of the system - for example, a request to delete the most recent record. In each case, subsequent executions will further modify the state of the system, so they are not idempotent.

In Event Stream Processing, idempotence refers to the ability of a system to produce the same outcome, even if an event or message is received more than once.

In a load-store architecture, instructions that might possibly cause a page fault are idempotent. So if a page fault occurs, the OS can load the page from disk and then simply re-execute the faulted instruction. In a processor where such instructions are not idempotent, dealing with page faults is much more complex.

When reformatting output, pretty-printing is expected to be idempotent. In other words, if the output is already "pretty", there should be nothing to do for the pretty-printer.

Applied examples

Applied examples that many people could encounter in their day-to-day lives include elevator call buttons and crosswalk buttons.[11] The initial activation of the button moves the system into a requesting state, until the request is satisfied. Subsequent activations of the button between the initial activation and the request being satisfied have no effect.

See also

References

  1. idempotent entry at Merriam-Webster dictionary
  2. Polcino & Sehgal (2002), p. 127.
  3. If f and g commute, i.e. if fg = gf, then idempotency of both f and g implies that of fg, since (fg) ∘ (fg) = (ff) ∘ (gg) = fg, using the associativity of composition.
  4. e.g. f(g(7)) = f(7) = 1, but f(g(1)) = f(5) = 2 ≠ 1
  5. also showing that commutation of f and g is not a necessary condition for idempotency preservation
  6. See Hazewinkel et al. (2004), p. 2.
  7. Gondran & Minoux. Graphs, dioids and semirings. Springer, 2008, p. 34
  8. Rodriguez, Alex. "RESTful Web services: The basics". IBM developerWorks. IBM. Retrieved 24 April 2013.
  9. http://foldoc.org/idempotent
  10. 1 2 IETF, Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content. See also HyperText Transfer Protocol.
  11. http://web.archive.org/web/20110523081716/http://www.nclabor.com/elevator/geartrac.pdf For example, this design specification includes detailed algorithm for when elevator cars will respond to subsequent calls for service

http://www.merriam-webster.com/dictionary/idempotent

Further reading

Look up idempotence in Wiktionary, the free dictionary.
Wikibooks has more on the topic of: Idempotence
Wikiversity has learning materials about Portal:Computer Science
This article is issued from Wikipedia - version of the 11/16/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.