Random Serial Dictatorship assigns objects fairly by randomizing the picking order: shuffle students, then each picks their top remaining choice in sequence. Simple, strategy-proof, but potentially unfair to those who draw late positions.
1. Draw a random permutation of all students (the "priority order") 2. The first student picks their most-preferred available school 3. The second student picks their most-preferred remaining school 4. Continue until all assigned Repeat many times to compute expected probabilities.
| Student | Preference Order |
|---|---|
| s1 | A > B > C > D > E |
| s2 | B > A > C > D > E |
| s3 | A > C > B > D > E |
| s4 | C > B > A > E > D |
| s5 | B > C > A > D > E |
Fair assignment through randomized priority — 5 students, 5 schools