This site is supported by donations to The OEIS Foundation.
Multisets
A multiset (some authors use bag or mset) is a generalization of the notion of set. In a multiset, the members (elements) are allowed to appear more than once (i.e. the [finite] multiplicity is any positive integer), whereas in a set the members can appear only once. (Both are unordered collections.) Some authors allow infinite multiplicities.[1]
For example, the multiset
| {a, a, a, a, a, b, b, b, c, d, d} |
, which may be written in compact form as the map
| {a: 5, b: 3, c: 1, d: 2} |
, where for each distinct member we specify the multiplicity. (An alternative notation is
| {a^5, b^3, c^1, d^2} |
.) A common application for the multiset is the prime factors dividing a number. For example, the multiset of prime factors of
| 522720 |
is
| {2, 2, 2, 2, 2, 3, 3, 3, 5, 11, 11} |
, which may be written in compact form as the map
| {2: 5, 3: 3, 5: 1, 11: 2} |
, where for each distinct member we specify the multiplicity. (An alternative notation is
| {2^5, 3^3, 5^1, 11^2} |
.)
Support set
[edit]The root set (or support set) of a multiset is the set of its distinct elements. The dimension of a multiset is the cardinality of the support set.[2]
Multiplicity
[edit]An element
| m |
of a multiset
| M |
has multiplicity
| n |
if and only if
where
| ∈ n |
means "is contained at least
| n |
times," where
| n |
is a nonnegative integer. (Trivially,
| ∈ 0 |
is always true.)[2]
Multiplicity function
[edit]The multiplicity of an element
| m |
, denoted
| ν (m) |
, is a cardinal number; most authors require a positive integer, though some are more general.[1] The multiplicity is positive if
| m |
is contained at least once in the multiset
| M |
, and zero otherwise. The multiplicity function of a multiset is a generalization of the characteristic function of a set. The height of a multiset is the greatest multiplicity.
Cardinality
[edit]The cardinality of a multiset is a cardinal number. The cardinality
| #M |
of a multiset
| M |
is the number of elements (with multiplicity) that it contains, and is thus the sum of the multiplicities of its members, i.e.
where
| ν (m) |
is the multiplicity of
| m |
.
Submultisets
[edit]A submultiset is a generalization of the notion of subset. To obtain a submultiset of a multiset
| M |
, for each member
| m ∈ M |
we may choose a multiplicity in the range
| [0, νM (m)] |
.
Powerset of a multiset
[edit]The powerset of a multiset
| ℘ (M ) |
is defined as the set of all submultisets of
| M |
. For example, the set (with cardinality
| 3 × 2 × 2 = 12 |
) of submultisets of
| {a ^2, b ^1, c ^1} |
are (in lexicographic order)
{{ }, {a ^1}, {a ^2}, {a ^2, b ^1}, {a ^2, b ^1, c ^1}, {a ^2, c ^1}, {a ^1, b ^1}, {a ^1, b ^1, c ^1}, {a ^1, c ^1}, {b ^1}, {b ^1, c ^1}, {c ^1}}.
The cardinality of the powerset of a multiset
| ℘ (M ) |
is
#℘ (M ) = ∏ m∈M(ν (m) + 1),
where
| ν (m) |
is the multiplicity of
| m |
.
Multiset partitions
[edit](...)
Multiset operations
[edit]Multiset sum
[edit]The multiset sum
| M ⊎ N |
of two multisets
| M |
and
| N |
is defined as the multiset for which each member
| m |
have the sum of the multiplicities it has in both multisets[3]
Generalized set operations
[edit]The following multiset operations generalize set operations.
Multiset containment is a Boolean operation, denoted
| m ∈ M |
, which evaluates to true if and only if
| νM (m) > 0 |
. Multiset inclusion is a Boolean operation, denoted
| M ⊆ N |
, which evaluates to true if and only if
| νM (m) ≤ νN (m) |
.[4] Strict multiset inclusion is a Boolean operation, denoted
| M ⊂ N |
, which evaluates to true if and only if
| νM (m) < νN (m) |
.[5] The multiset union
| M ⋃ N |
of two multisets
| M |
and
| N |
is defined as the multiset for which each member
| m |
have the maximal multiplicity it has in either multisets[6]
The multiset intersection
| M ⋂ N |
of two multisets
| M |
and
| N |
is defined as the multiset for which each member
| m |
have the minimal multiplicity it has in either multisets. Example:
| gcd (M, N) |
.
The multiset difference
| M \ N |
of two multisets
| M |
and
| N |
is defined as the multiset for which each member
| m |
have multiplicity. Example:
| M / gcd (M, N) |
.
The multiset symmetric difference
| M Δ N := (M \ N) ⋃ (N \ M) = (M ⋃ N) \ (M ⋂ N) |
of two multisets
| M |
and
| N |
is defined as the multiset for which each member
| m |
have multiplicity. Example:
| max(M / gcd(M, N), N / gcd(M, N)) = lcm(M, N) / gcd(M, N) |
.
Generalizations of multisets
[edit]Signed multisets
[edit]A signed multiset is a generalization of the notion of multiset. In a signed multiset, the members (elements) may have any integer as signed multiplicity, whereas in a multiset the members may only have nonnegative integers as multiplicity.
An example is the signed multiset of prime factors of rational numbers (in reduced form), e.g. for
|
we get
| {2: 5, 3: 3, 5: 1, 7: −3, 11: 2, 29: −1} |
, where for each distinct member we specify the signed multiplicity. (An alternative notation is
| {2^5, 3^3, 5^1, 7^(−3), 11^2, 29^(−1)} |
.)
Weighted sets
[edit]Weighted sets might be a further generalization of multisets where the multiplicity would be any real number.
Equivalence with maps
[edit]As stated in the introduction, a multiset can be seen a map from some domain
| D |
(containing the support) to the nonnegative integers
| ℕ |
, this map being the same as the multiplicity function. The above generalizations of signed or weighted multisets then simply consist in allowing signed integers (
| ℤ |
) or real numbers (
| ℝ |
) as values of the map which defines the multiset.
See also
[edit]- Sequence (ordered collection of elements, not necessary distinct)
Notes
[edit]- ↑ 1.0 1.1 J.L. Hickman (1980). “A note on the concept of multiset”. Bulletin of the Australian Mathematical Society 22 (02): pp. 211–217. doi:10.1017/S000497270000650X.
- ↑ 2.0 2.1 D. Singh, A. M. Ibrahim, T. Yohana, J. N. Singh, Complementation in Multiset Theory, International Mathematical Forum, Vol. 6, 2011, no. 38, 1877 - 1884.
- ↑ Example:
. (See product.)MN - ↑ Example:
dividesM
? (See divisors.)N - ↑ Example:
strictly dividesM
? (See aliquot divisors.)N - ↑ Example:
.lcm (M, N)