Zuckerman functor

From formulasearchengine
Revision as of 20:45, 13 May 2013 by en>John (Reverted edits by Sol1 (talk) to last version by Helpful Pixie Bot)
Jump to navigation Jump to search

In mathematics and computer science, a history monoid is a way of representing the histories of concurrently running computer processes as a collection of strings, each string representing the individual history of a process. The history monoid provides a set of synchronization primitives (such as locks, mutexes or thread joins) for providing rendezvous points between a set of independently executing processes or threads.

History monoids occur in the theory of concurrent computation, and provide a low-level mathematical foundation for process calculi, such as CSP the language of communicating sequential processes, or CCS, the calculus of communicating systems. History monoids were first presented by M.W. Shields.[1]

History monoids are isomorphic to trace monoids (free partially commutative monoids) and to the monoid of dependency graphs. As such, they are free objects and are universal. The history monoid is a type of semi-abelian categorical product in the category of monoids.

Product monoids and projection

Let

A=(Σ1,Σ2,,Σn)

denote an n-tuple of alphabets Σk. Let P(A) denote all possible combinations of finite-length strings from the alphabets:

P(A)=Σ1*×Σ2*××Σn*

(In more formal language, P(A) is the Cartesian product of the free monoids of the Σk. The superscript star is the Kleene star.) Composition in the product monoid is component-wise, so that, for

u=(u1,u2,,un)

and

v=(v1,v2,,vn)

then

uv=(u1v1,u2v2,,unvn)

for all u,v in P(A). Define the union alphabet to be

Σ=Σ1Σ2Σn.

(The union here is the set union, not the disjoint union.) Given any string wΣ*, we can pick out just the letters in some Σk* using the corresponding string projection πk:Σ*Σk*. A distribution π:Σ*P(A) is the mapping that operates on wΣ* with all of the πk, separating it into components in each free monoid:

π(w)(π1(w),π2(w),,πn(w)).

Histories

For every aΣ, the tuple π(a) is called the elementary history of a. It serves as an indicator function for the inclusion of a letter a in an alphabet Σk. That is,

π(a)=(a1,a2,,an)

where

ai={a if aΣkε otherwise .

Here, ε denotes the empty string. The history monoid H(A) is the free monoid generated by elementary histories. It is clearly a submonoid of the product monoid P(A). The elements of H(A) are called global histories, and the projections of a global history are called individual histories.

Connection to computer science

The use of the word history in this context, and the connection to concurrent computing, can be understood as follows. An individual history is a record of the sequence of states of a process (or thread or machine); the alphabet Σk is the set of states of the process.

A letter that occurs in two or more alphabets serves as a synchronization primitive between the various individual histories. That is, if such a letter occurs in one individual history, it must also occur in another history, and serves to "tie" or "rendezvous" them together.

Consider, for example, Σ1={a,b,c} and Σ2={a,d,e}. The union alphabet is of course Σ={a,b,c,d,e}. The elementary histories are (a,a), (b,ε), (c,ε), (ε,d) and (ε,e). In this example, an individual history of the first process might be bcbcc while the individual history of the second machine might be ddded. Both of these individual histories are represented by the global history bcbdddcced, since the projection of this string onto the individual alphabets yields the individual histories. In the global history, the letter b can be considered to commute with the letters d and e, in that these can be rearranged without changing the individual histories. Such commutation is simply a statement that the first and second processes are running concurrently, and are unordered with respect to each other; they have not (yet) exchanged any messages or performed any synchronization.

The letter a serves as a synchronization primitive, as its occurrence marks a spot in both the global and individual histories, that cannot be commuted across. Thus, while the letters b and c can be re-ordered past d and e, they cannot be reordered past a. Thus, the global history bcdabe and the global history bdcaeb both have as individual histories bcab and dae, indicating that the execution of d may happen before or after c. However, the letter a is synchronizing, so that e is guaranteed to happen after c, even though e is in a different process than c.

Properties

The history monoid is isomorphic to the trace monoid, and as such, is a type of semi-abelian categorical product in the category of monoids. In particular, the history monoid H(Σ1,Σ2,,Σn) is isomorphic to the trace monoid 𝕄(D) with the dependency relation given by

D=(Σ1×Σ1)(Σ2×Σ2)(Σn×Σn).

In simple terms, this is just the formal statement of the informal discussion given above: the letters in an alphabet Σk can be commutatively re-ordered past the letters in an alphabet Σj, unless they are letters that occur in both alphabets. Thus, traces are exactly global histories, and vice-versa.

Notes

  1. M.W. Shields "Concurrent Machines", Computer Journal, (1985) 28 pp. 449–465.

References

  • Antoni Mazurkiewicz, "Introduction to Trace Theory", pp 3–41, in The Book of Traces, V. Diekert, G. Rozenberg, eds. (1995) World Scientific, Singapore ISBN 981-02-2058-8
  • Volker Diekert, Yves Métivier, "Partial Commutation and Traces", In G. Rozenberg and A. Salomaa, editors, Handbook of Formal Languages, Vol. 3, Beyond Words, pages 457–534. Springer-Verlag, Berlin, 1997.