Ranked-Choice or Approval Voting Rule¶
Procedure — instantiates Aggregation Function Design and Weighting
Converts many voters' ordinal rankings or approvals into one collective choice by a fixed, legitimacy-bearing tallying procedure with defined tie-breaks.
A Ranked-Choice or Approval Voting Rule aggregates preferences, not measurements: each participant submits a ranking (or a set of approvals), and a fixed procedure converts that pile of individual orderings into one collective winner or ordering. What sets it apart from every sibling here is that its inputs are ordinal and self-declared — nobody rates options on a shared cardinal scale, and there are no reliability or value weights to assign; each eligible voter counts once, and the design lever is the tallying procedure itself (instant-runoff, Condorcet, approval), whose legitimacy depends on everyone agreeing to the rule before the votes are cast. The procedure must therefore specify who is eligible, how ballots are counted, and exactly how ties are resolved, because in a contested choice those details are the outcome.
Example¶
A town replaces its plurality mayoral election, where a divisive candidate kept winning with 34% against a split field, with instant-runoff (ranked-choice) voting. Voters now rank the candidates 1st, 2nd, 3rd. First choices are counted; no one has a majority, so the last-place candidate is eliminated and each of their ballots transfers to its next-ranked surviving name; the process repeats until someone clears 50%.
The winner is now a candidate a majority could live with rather than the one a passionate minority ranked first. Crucially, the rules were published and agreed before the election — the elimination order, how exhausted ballots are handled, and a written tie-break for the rare case where two candidates are last by the same count — so the losing side contests the result under a rule they accepted, not the rule itself. The legitimacy of the outcome rests on that prior agreement as much as on the arithmetic.
How it works¶
- Fix the electorate and ballot form. Define who may vote and what a valid ballot is — a full ranking, a truncated ranking, or a set of approvals — before any vote is cast.
- Apply the counting rule. Instant-runoff eliminates and transfers; approval sums approvals; a Condorcet method checks pairwise majorities. The rule choice, not the ballots alone, shapes which winner emerges.[1]
- Resolve ties and exceptions explicitly. A written tie-break (and rules for exhausted or spoiled ballots) settles the edge cases in advance so no one improvises them mid-count.
- Preserve legitimacy through prior agreement. Because the procedure is contested terrain, it must be adopted openly beforehand; a rule changed after the votes are in has no standing.
Tuning parameters¶
- Ballot expressiveness — full ranking vs. top-N vs. approve/disapprove. More expressive ballots capture preference intensity and ordering but raise voter effort and spoilage rates.
- Counting method — instant-runoff vs. approval vs. a Condorcet method. Each satisfies a different bundle of fairness properties and can crown a different winner from identical ballots.
- Majority threshold — simple majority, supermajority, or plurality-with-transfers. Higher thresholds protect against narrow mandates but risk deadlock and more elimination rounds.
- Tie-break rule — coin toss, earlier-round counts, or seniority. The choice rarely matters until it decides everything, which is why it must be named up front.
When it helps, and when it misleads¶
Its strength is that it aggregates genuine preferences into a legitimate collective choice: by letting voters express order or approval rather than a single mark, it blunts vote-splitting and produces a winner with broader consent, and by fixing the rule in advance it makes the outcome something the losing side can accept. It is the right machinery wherever the thing being combined is what people want, and where buy-in to the process is as important as the result.
Its failure mode is structural and unavoidable: no preferential rule can satisfy every fairness criterion at once, so any method can be shown to behave "unfairly" on some ballot profile, and different legitimate methods crown different winners from the same votes. That opens the door to strategic voting — ranking insincerely to manipulate eliminations — and to arguments that are really about the rule masquerading as arguments about the result. The guarding discipline is to choose and publish the method and its tie-breaks before voting, disclose the fairness tradeoffs it makes, and never change the rule after ballots are seen.
How it implements the components¶
input_item_set— defines the electorate and the valid ballot form: who is eligible and what counts as a legitimate expression of preference.aggregation_rule— the counting procedure (instant-runoff, approval, Condorcet) is the many-to-one rule that turns rankings into one collective choice.tie_break_or_exception_rule— a pre-declared tie-break and handling for exhausted or spoiled ballots resolve the edge cases before they arise.stakeholder_legitimacy_constraint— outcome legitimacy rests on the rule being adopted openly and in advance, so all sides count once and accept the result under an agreed procedure.
It does not implement weight_assignment_scheme or scale_normalization_map — voters are not rated on a cardinal scale and their ballots are not weighted; assigning weights and anchored scales to criteria is Weighted Scoring Rubric's job, and this rule aggregates ordinal preferences instead.
Related¶
- Instantiates: Aggregation Function Design and Weighting — this is the preference-aggregation rule family of the pattern.
- Sibling mechanisms: Weighted Scoring Rubric · Weight-Sweep Sensitivity Table · Median, Trimmed-Mean, or Quantile Rule · Ensemble Weighting Table · Dashboard Rollup Formula · Aggregation Bias Audit
Editorial Notes¶
Form Classification¶
Form family: Decision, Gate & Allocation
Rationale: Ranked-Choice or Approval Voting Rule operates as a case-specific gate, selection, routing, prioritization, or resource disposition because it converts many voters' ordinal rankings or approvals into one collective choice by a fixed, legitimacy-bearing tallying procedure with defined tie-breaks.
Independent corroboration: The frozen evidence defines Ranked-Choice or Approval Voting Rule as 'Converts many voters' ordinal rankings or approvals into one collective choice by a fixed, legitimacy-bearing tallying procedure with defined tie-breaks', so its operative form is Decision, Gate & Allocation.
Nearest alternative: Protocol, Workflow & Routine — Ranked-Choice or Approval Voting Rule includes features of a repeatable ordered procedure or handoff sequence that coordinates action, but its defining operation is a case-specific gate, selection, routing, prioritization, or resource disposition.
Review outcome: Independent reviewer agreement; medium confidence.
Origin Attribution¶
Primary origin: Political Science
Origin pattern: Cross-disciplinary synthesis
Present-day reach: Specialized
Rationale: Ranked-choice and approval voting are electoral and collective-choice institutions studied centrally in political science.
Related originating lineages:
- Economics & Finance — Social-choice theory in economics materially formalizes preference aggregation and strategic behavior.
- Law & Governance — Election law supplied authoritative procedure, recount, and legitimacy constraints.
- Mathematics — Voting theory supplied formal aggregation, paradox, and tie-break analysis.
Review resolution: Both blind reviewers agree on political_science as the primary origin. Explicit reconciliation resolves alternate_origin_disagreement. The merged alternate lineages retain only domains the reviewers identified as materially formative; domain_reach=specialized records later applicability separately from origin breadth.
Review outcome: Reconciled after independent review; high confidence.
References¶
[1] Arrow, K. J. Social Choice and Individual Values. Cowles Foundation Monograph 12, John Wiley & Sons (1951). Formalizes collective choice as a rule that maps individual preference orderings into a social ordering and selected alternative. registry ↩