Rotating the Standup Facilitator
A random pick each morning will hit the same person twice in a week, and that is the complaint.
Facilitator selection is a case where a rotation with a randomised starting point beats a random draw outright, because the only property anyone on the team actually cares about is not doing it twice in one week.
Picking a facilitator at random each morning produces back-to-back repeats often enough to generate complaints, and the complaint is legitimate: nobody wants to run the meeting twice in one week.
A rotation with a randomised starting point solves it completely, and it is a better fit than a draw for the specific job of choosing one person for a recurring role.
How often a random pick repeats
With a team of six and a daily standup, the chance the same person facilitates on consecutive days is one in six. Over a five-day week, the chance of at least one back-to-back repeat somewhere is about 52% — more likely than not, every week.
The chance the same person facilitates twice in one week, not necessarily consecutively, is far higher still: about 91% for a team of six across five days, since all five days being distinct requires 6×5×4×3×2 of the 7,776 possible sequences. So the complaint is available almost every week.
None of that is a defect in the draw. It is what independent selection means, and it is exactly the outcome that makes a team stop trusting the mechanism even though the mechanism is behaving correctly.
A team of six, five standups a week
- Same person on consecutive days: 1 in 6 per adjacent pair.
- At least one consecutive repeat in a week: about 52%.
- Someone facilitating twice in a week at all: about 91%.
Why rotation is the right shape here
The property the team wants is coverage — everyone takes a turn before anyone takes a second — and that is a rotation, not a draw. A fixed cycle guarantees it exactly, and randomising only the starting order removes the arbitrariness of who goes first.
The turn order generator produces this directly: shuffle once for the base order, then run it in fixed mode. Every person facilitates once per cycle, in an order nobody chose, and the cycle is entirely predictable after the first day.
Predictability is a feature here rather than a cost. A facilitator who knows they are on tomorrow can prepare, which is not true of a random pick and is one of the quieter arguments for rotation over drawing.
Handling absences without breaking the cycle
The common failure is what to do when the person whose turn it is is away. Skipping them permanently makes the rotation unfair over time; skipping and reinserting them next cycle is fiddly to track.
The simplest workable rule is to skip and take the turn at the top of the next cycle, which is a single note rather than a bookkeeping system. Over a quarter the imbalance from occasional absences is small and self-correcting.
The rule that does not work is asking for a volunteer when the scheduled person is away. It reliably resolves to the same two people, which is the situation the rotation existed to prevent.
When a draw is right after all
There is a case for randomising rather than rotating, and it is when the pool changes constantly. A rotation over a stable team of six is clean; a rotation over a group where three people join and two leave every month is more bookkeeping than it is worth.
The other case is a role where preparation is unhelpful — where the point is specifically that nobody knew in advance. That is rare for facilitation and common for other things, and it is worth checking which you have before choosing.
For everything else, the coverage guarantee is what the team actually wants, and a rotation delivers it exactly rather than in expectation.
Frequently asked questions
How often does a random pick repeat within a week?
For a team of six over five standups, someone facilitates twice about 91% of the time, and a back-to-back repeat happens in about 52% of weeks.
Why is rotation better than drawing?
Because the team wants coverage — everyone takes a turn before anyone takes a second — and a rotation guarantees that exactly rather than in expectation.
How do I set up a rotation?
Shuffle once for the base order and run it in fixed mode. The order is arbitrary but not chosen, and it repeats predictably.
Is predictability a problem?
It is a benefit here. A facilitator who knows they are on tomorrow can prepare, which a random pick never allows.
What if the scheduled person is away?
Skip them and take the turn at the top of the next cycle. The imbalance from occasional absences is small and self-correcting.
Why not ask for a volunteer instead?
Because it reliably resolves to the same two people, which is the situation the rotation existed to prevent.
When is a draw better?
When the pool changes constantly, or when the point is specifically that nobody knew in advance. Neither is usually true of facilitation.
Does the same argument apply to other recurring roles?
Yes — notes, deploy watch, anything with a turn. Coverage is almost always the property that matters for recurring roles.
Tools for this job
Standup Order Picker
A random speaking order plus a per-person time budget from your meeting length.
Cold Call Student Picker
Draws through the whole roster before anyone repeats — and remembers between lessons.
Turn Order Generator
Straight, reversing, or snake order across rounds — first-player advantage, handled.
Background reading
Coin Flip Streaks and What They Mean
How long a run of heads you should expect, as a function of how many times you flip.
Randomness in the Classroom: A Primer
Where random selection helps a lesson, where it hurts one, and what teachers report.
Sampling With and Without Replacement
The single decision that changes every number downstream of your draw.