Skip to content

Quorum — an abstention still counts toward turnout

Generated from quorum_demo_c3_b6.yaml — do not edit by hand. Regenerate: python STARVote_LH_tabulation_engine/tools_adam/scripts/build_yaml_pages.py.

Method: STAR (single winner) · 1 seat · Expected winner: Anna

Scenario

A 10-member board (eligible_voters: 10). Six members submit a ballot — five score the candidates, and one turns in a BLANK ballot (an abstention). No explicit quorum is set, so the engine's default applies: a majority (>50%) of eligible voters must participate — i.e. at least 6 of 10.

The teaching point (ties quorum to abstention): the blank ballot is the SIXTH participant. A cast abstention is still participation, so it counts toward quorum — and here it is exactly what carries turnout from 5 (not enough) to 6 (quorum met). Drop the abstention and quorum would FAIL. The abstainer changed no candidate's score, but their presence made the election valid.

→ Concept: 07_Concepts/topics/quorum.md

Parameters (from the YAML)

eligible_voters: 10

Ballots

The ballots as marked — the filled bubble is the score given, and the score is the number in its column:

# Ballot as marked Anna Ben Cara
1 A 0–5 STAR ballot — Voter 1: Anna 5, Ben 0, Cara 0. 5 0 0
2 A 0–5 STAR ballot — Voter 2: Anna 5, Ben 1, Cara 0. 5 1 0
3 A 0–5 STAR ballot — Voter 3: Anna 4, Ben 0, Cara 1. 4 0 1
4 A 0–5 STAR ballot — Voter 4: Anna 0, Ben 5, Cara 0. 0 5 0
5 A 0–5 STAR ballot — Voter 5: Anna 1, Ben 4, Cara 0. 1 4 0
6 A 0–5 STAR ballot — blank ballot: an abstention — counts toward quorum, scores no one: Anna left blank (counts as 0), Ben left blank (counts as 0), Cara left blank (counts as 0). - - -

The same ballots as the file records them:

Row 1 = candidate names; each later row is one voter's 0–5 scores (a N × prefix = N identical ballots).

Markers on these ballots: - blank · ~ race abstention · & candidate abstention · ? spoiled · % spoiled+reissued — all tabulate as 0 (reported honestly).

Anna, Ben, Cara
5, 0, 0
5, 1, 0
4, 0, 1
0, 5, 0
1, 4, 0
-, -, -    # blank ballot: an abstention — counts toward quorum, scores no one

What the engine says

The count, step by step — the rounds and how the winner is reached:

 Quorum: 6 of 10 eligible voters participated (60% turnout); requires more than 50% (>= 6). MET.

--- STAR Voting Method (single winner) ---

[STAR Voting]
 Tabulating 6 ballots. Note: 1 of 6 ballots is marked as an abstention.
Anna,Ben,Cara
   5,  0,   0
   5,  1,   0
   4,  0,   1
   0,  5,   0
   1,  4,   0
   -,  -,   -
  ('-' = left blank / abstained; '0' = scored zero — both count as 0 stars.)

[STAR Voting: Scoring Round]
 The two highest-scoring candidates advance to the next round.
   Anna          -- 15 -- First place
   Ben           -- 10 -- Second place
   Cara          --  1
 Anna and Ben advance.

[STAR Voting: Automatic Runoff Round]
 The candidate preferred in the most head-to-head matchups wins.
   Anna          -- 3 -- First place
   Ben           -- 2
   Equal Support -- 1
 Anna wins.
   Runoff math:
     6  ballots cast
   − 1  Equal Support (no preference between the two finalists)
     ─
     5  voters with a preference  (majority = 3)
           Anna 3 (60%)  ·  Ben 2 (40%)

[STAR Voting: Winner — STAR Voting Method (single winner)]
 Anna

Full audit — preference matrix, Condorcet, and score distribution

--- Runoff (Preference) Matrix ---
Head-to-head / pairwise comparison
Legend: For - Equal Support - Against
        * indicates Top 2 Finalist
               |   * Anna   |  * Ben    |    Cara   |
-----------------------------------------------------
      * Anna > |    ---     |3 - 1 - 2  |4 - 2 - 0  |
       * Ben > | 2 - 1 - 3  |   ---     |3 - 2 - 1  |
        Cara > | 0 - 2 - 4  |1 - 2 - 3  |   ---     |

[Condorcet Winner]
  Condorcet Winner: Anna — matches the STAR winner

[Condorcet Loser]
  Condorcet Loser: Cara — loses every head-to-head matchup

[Score Distribution] (how many ballots gave each star rating)
                Score
Candidate  5  4  3  2  1  0  Abs  | Total  Avg all  Avg rated
Anna       2  1  0  0  1  1    1  |    15      2.5        3.0
Ben        1  1  0  0  1  2    1  |    10      1.7        2.0
Cara       0  0  0  0  1  4    1  |     1      0.2        0.2
  Avg all   = Total / all ballots — a blank counts as 0, so this is the Total the Scoring Round ranks on, per ballot.
  Avg rated = Total / the ballots that scored this candidate (Abs excluded) — support among voters who had an opinion.

Everything in one file: the _tabulated mirror (regenerated on every run; every analysis forced on).

Run it yourself:

python STARVote_LH_tabulation_engine/starvote_larry_hastings.py 01_STAR/02_Examples/cases/quorum_demo_c3_b6.yaml

See also

More cases in this set: 02a_c3_b1_three-candidates · 02b_c3_b2_three-candidates · 03a_c3_b3_style-bullet-vote · 03b_c3_b3_1_style-protest-vote · 03b_c3_b3_2_expand_style-protest-vote · 03c_c6_b8_style-gallery · 03d_c5_b5_style-gallery-five-more · 04b_c4_b3_display-options-all · 05a_c5_b3_unanimous-ballots · 06a_c9_b3_large-field-equal-support · 06b_c9_runoff-overturns-leader · 09_c4_b100_tennessee-capital · abstentions · bv2182_tg4779_faq_runoff_reversal · bv2184_fyy886_lunch_vote · bv2187_qrw6wb_ann-bob-cal · bv2256_c8h3tb_traditional_style · bv2263_xw23m9_over_50_percent · csv_ambiguity_ex1_c4_b8 · display_options_demo · equal_support_runoff_demo · quorum_fail_demo_c3_b6 · same_mean_different_spread_c2_b5 · star_ala_approval · three_winners_cw_score_runoff · vote_splitting · vote_splitting2 · vote_splitting3 · vote_splitting_scenario1_spoiler · vote_splitting_scenario2_bloc_leads · vote_splitting_scenario3_outsider_wins