Home Up Questions?

Appendix A. A Brief Theory of Bags

Set theory has long been useful in mathematics and computer science. Bag theory is a natural extension of set theory. A bag, like a set, is a collection of elements over some domain. However, unlike a set, bags allow multiple occurrences of elements. In set theory, an element is either a member of a set or not a member of a set. In bag theory, an element may be in a bag zero times (not in the bag) or one time, two times, three times, or any specified number of times.

Bag theory has been developed in [Cerf et al. 1971] and [Peterson 1976].

As examples, consider the following bags over the domain { a, b, c, d }:

B1 = { a, b, c }
B2 = { a }
B3 = { a, b, c, c }
B4 = { a, a, a }
B5 = { b, c, b, c }
B6 = { c, c, b, b }
B7 = { a, a, a, a, a, b, b, c, d, d, d, d, d, d, d }

Some bags are sets ( B1 and B2, for example). Also, as with sets, the order of the elements is not important, so B5 and B6 are the same bag. (Ordered bags are sequences.)

In set theory, the basic concept is the is a member of relationship. This relationship is between elements and sets and defines which elements are members of which sets. The basic concept of bag theory is the number of occurrences function. This function defines the number of occurrences of an element in a bag. For an element x and a bag B, we denote the number of occurrences of x in B by # ( x, B) (pronounced “the number of x in B ”).

With this conceptual basis, we can define the fundamentals of bag theory. Most of the concepts and notation are borrowed from set theory in the obvious way. If we restrict the number of elements in a bag such that 0 ≤ # ( x, B) ≤ 1, then set theory results.

A.1. Membership

The # ( x, B) function defines the number of occurrences of an element x in a bag B. From this it follows that # ( x, B) ≥ 0 for all x and B. We distinguish the zero and the nonzero cases. An element x is a member of a bag B if # ( x, B) > 0 . This is denoted xB. Similarly, if # ( x, B) = 0, then xB.

We define the empty bag ∅ with no members: For all x, # ( x, ∅ ) = 0 .

A.2. Cardinality

The cardinality | B | of a bag B is the total number of occurrences of elements in the bag:

| B | = Σ #(x, B)
x

A.3. Bag Inclusion and Equality

A bag A is a subbag of a bag B (denoted AB ) if every element of A is also an element of B at least as many times:

AB iff #(x, A) ≤ #(x, B) for all x

Two bags are equal ( A = B ) if # ( x, A) = # ( x, B) for all x.

From these definitions, we can immediately show that

A = B iff AB and BA
∅ ⊆ B for all bags B
A = B implies | A | = | B |
AB implies | A | ≤ | B |

A bag A is strictly contained in a bag B ( AB ) if AB and AB. Note that # ( x, A) < # ( x, B) does not follow from AB, although we do have that | A | < | B | .

A.4. Operations

Four operations are defined on bags. For two bags A and B, we define

Bag union AB #(x, AB) = max(#(x, A), #(x, B))
Bag intersection AB #(x, AB) = min(#(x, A), #(x, B))
Bag sum A + B #(x, A + B) = #(x, A) + #(x, B)
Bag difference A - B #(x, A - B) = #(x, A) - #(x, AB)

These operators have most of the properties that would be expected. Union, intersection, and sum are commutative and associative. In addition, the expected inclusions hold:

AB AAB
ABAA + B

The distinction between union and sum is clearly stated by

| AB | ≤ | A | + | B |
| A + B | = | A | + | B |

Unfortunately no such simple statement distinguishes AB from AB. The latter is complicated by the impossibility of removing elements from a bag which are not there.

A.5. Bag Spaces

We define a domain D as a set of elements from which bags are constructed. The bag space Dn is the set of all bags whose elements are in D such that no element occurs more than n times. That is, for all BDn,

  1. xB implies xD.

  2. # ( x, B) ≤ n for all x.

The set D is the set of all bags over a domain D; there is no limit on the number of occurrences of an element in a bag.

A.6. Parikh Mappings

For finite domain D = { d1, d2, …, dn }, there is a natural correspondence between each bag B over D and the n -vector f = ( f1, f2, …, fn ) defined by

fi = #(di, B)

This vector is known as the Parikh mapping [Parikh 1966].

A.7. Examples

Let D = { a, b, c, d } be a domain. Then for the following bags,

A = { a, b }
B = { a, a, b, c }
C = { a, a, a, c, c }

we have

| A | = 2
| C | = 5
AB = { a, a, b, c } = A
AC = { a, a, a, b, c, c } = BC
AC = { a }
BC = { a, a, c }
A + B = { a, a, a, b, b, c }
AB =
CA = { a, a, c, c }
CB = { a, c }

Home   Comments?