Set Partitioning
Partitioning a set produces a set of nonempty disjoint subsets, called partitions.
Conditions:
No partition is empty (i.e. nonempty subsets)
The intersection of two partitions is empty (i.e. disjoint subsets)
The union of partitions must equal the original set (i.e. sanity check)
Partitioning the set S produces n partitions, P1,P2,…,Pn, which are the disjoint and non-empty subsets of S.
P1,P2,…,Pn
Pi are non-empty sets:
Pi Pi ≠ {∅} for all 0 < i ≤ n
P1∪P2∪⋯∪Pn=S
The intersection of two partitions is empty:
Pa ∩ Pb={∅}, for a≠b where n≥a, b≥0
Example: Let S={a,b,c,d,e,f,g,h} One probable partitioning scheme: {a},{b,c,d},{e,f,g,h} Another probable partitioning scheme: {a,b},{c,d},{e,f,g,h}
Bell number signifies the number of ways to partition a set; it is denoted by Bn, where n is the cardinality of the set. For example, let S={1,2,3}, n=∣S∣=3.
The partitions:
{},{1,2,3}
{1},{2,3}
{1,2},{3}
{1,3},{2}
{1},{2},{3}
so, B3=5
universe
U
set
A
class
A
element
a
urelement
a (element that is not a set)
membership
a∈A
empty set
∅
disjoint union
A∩B=∅
powerset
P(A)
Cartesian product
A×B
set of pairs
A×B
set of functions
A→B
relation
R⊆A×B
relation
R∈P(A×B)
union
A∪B
intersection
A∩B
complement
Aˉ=U∩A
family of sets
B(x)
family of elements
b(x):B(x)
Last updated