Partition¶
Core Idea¶
A partition divides a set into blocks that are mutually exclusive and collectively exhaustive (MECE): every element lands in exactly one block. That single discipline licenses a bundle of guarantees — additive counts, complete case analysis, contention-free allocation — each of which fails silently the instant overlap or a gap appears.
How would you explain it like I'm…
One Toy, One Bin
No Overlaps, No Gaps
Mutually Exclusive, Collectively Exhaustive
Broad Use¶
- Mathematics: the formal partition of a set, and the partition of a sample space into events for the law of total probability.
- Computing: hash and range sharding so each key lives on exactly one node; disjoint-set structures.
- Law and governance: jurisdictional carve-ups, tax brackets, criminal categories aiming at one offence per act.
- Statistics: stratified sampling, cross-validation folds, histogram bins.
- Operations and consulting: MECE issue trees, market segmentations, root-cause analyses.
- Logic: exhaustive case analysis in proofs; the dichotomy as the minimal partition.
- Biology and chemistry: taxonomic ranks, orbital occupancy, cell-cycle phases.
Clarity¶
It makes two questions immediately askable of any carve-up — can a thing belong to two blocks? and can it belong to none? — turning a vague worry that "our categories are messy" into a precise diagnosis (overlap, gap, or both).
Manages Complexity¶
It reduces per-element operations to per-block ones and whole-domain verification to per-block verification, since exhaustiveness guarantees nothing escapes and disjointness guarantees nothing is double-handled.
Abstract Reasoning¶
It supports block-wise invariants, conservation under combination, refinement (one partition refining another), and quotient construction (collapsing each block to a point).
Knowledge Transfer¶
- Clinical decision support: the MECE discipline imported from consulting cuts both missed diagnoses (exhaustiveness failure) and ambiguous workups (exclusivity failure).
- Governance: the hash-partition "exactly one shard" guarantee transfers to agency mandates via a routing function plus a canonical block list.
- Audit: the law of total probability transfers to stratified sampling — partition by risk band, sample within, combine validly.
Example¶
Federal court jurisdiction is engineered as a partition: a case is federal-question, diversity, supplemental, or outside federal jurisdiction entirely, with removal doctrines resolving overlap and the state-court fallback closing the gap.
Relationships to Other Primes¶
Parents (1) — more general patterns this builds on
- Partition presupposes Set and Membership — A partition is the disjoint-and-exhaustive (MECE) discipline imposed on a carrier set via a single-valued membership function; it presupposes the set/membership apparatus it disciplines.
Children (2) — more specific cases that build on this
- Graph Coloring is a kind of Partition — The strongest case in this batch. graph_coloring's own phase_c rationale states "parents:[] because its natural is-a parent (partition) is a candidate" -- the edge was deferred ONLY because partition was not yet placed, not because direction was in doubt. Both files agree: graph_coloring's "What It Is Not" says "coloring is a constrained partition where the blocks are color classes and the only rule is that no edge lies within a block ... partition-under-a-conflict-graph"; partition's file presents coloring-shaped uses as instances of the discipline. Clean is-a (a proper coloring IS a partition into independent sets). partition is a valid candidate target. embeddability (a cross-ref) is a sibling, not the parent.
- False Dilemma presupposes Partition — False dilemma is the unargued exhaustiveness CLAIM attached to an incomplete partition of a rich space; it presupposes the partition operation (it is 'the formal operation the fallacy parasitizes'). partition is a candidate (R2-072-01).
Path to root: Partition → Set and Membership
Not to Be Confused With¶
- Partition is not an Equivalence Relation because, though formally interchangeable, a partition foregrounds the blocks and MECE coverage, whereas an equivalence relation foregrounds the criterion that makes two elements the same.
- Partition is not an Allocation because allocation distributes a divisible resource among claimants who may share and leave remainder, whereas a partition forbids both overlap and gap.
- Partition is not a Periodization because periodization partitions along time into ordered epochs, whereas a partition is the general, order-free MECE division.