Quantum Leader Election
This example protocol allows multiple remote participants to select a leader among them randomly. The parties do not trust each other and can use both classical and quantum channels to communicate. It is an extension of the coin tossing problem to multiple players.
Tags: Multi Party Protocols, Quantum Enhanced Classical Functionality, Specific Task
Outline
When the number of players is an integral power of 2:
The leader election protocol, in this case, is similar to a knockout tournament. In the first round, every team pairs up with the other team and they perform a balanced coin flip to determine the winner. In subsequent rounds, winners from the previous round team up with another winner and perform balanced coin flip to determine the winners of this round. The winner of the final round is declared the leader.
When the number of players is not an integral power of 2:
In this case, the leader election protocol uses the 'power of 2' scenario and also recursively calls itself to select the leader. Players continue till the index of the power of 2 which is just less than the total number of players perform leader election in an aforementioned manner to decide a winner. Leader election protocol is then used recursively for the remaining participants to decide another winner. Both the winners now perform an unbalanced quantum coin flipping to decide the final winner which is the leader.
Notation
- : A weak balanced coin flipping protocol with an arbitrarily small bias of at most .
- : A weak unbalanced coin flipping protocol with an arbitrarily small bias of at most and one of the players having the probability of winning equal to .
- : Set of players participating in Leader election
- : Winner of the pair in the Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle i^{th}} round.
- : number of rounds in a weak balanced coin flipping protocol Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle P_\epsilon} .
Requirements
- Network Stage: Fully Quantum Computing Network Stage
- Resources to perform weak (balanced and unbalanced) quantum coin tossing.
- Authenticated Quantum channel capable of sending a pair of qubits
- Authenticated Classical channel to send multiple bits
- Quantum memory for both parties to store qubits
- Measurement Devices for each party
- Random bit generator for each party
Knowledge Graph
Properties
- The protocol uses as a black box the quantum solution to the coin tossing protocol (both balanced and unbalanced).
- The protocol has a running time of Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle O(N_{\epsilon/4}\log{n}\log{1/\epsilon})} , and rounds of coin flipping.
- It assumes the setting is sequential so the next coin flipping protocol starts after the previous one ends.
Protocol Description
Click here for SimulaQron code Click here for Python code
When Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle n} is an integral power of 2
For , Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle k} rounds are performed.
- The following pairs perform (balanced coin flipping):
with as the corresponding winners. - The pairs: again perform (balanced coin flipping) to get the corresponding winners Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle w^2_1, w^2_2, ..., w^2_{n/4}} .
- This goes on for a total of rounds and the winner of the round Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle w^k_1} is declared the leader.
When is not an integral power of 2
For Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle 2^k < n < 2^{k+1}} ,
- The following steps are performed simultaneously:
- Players Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle A_1, A_2, ..., A_{2^k}} perform leader election for integral power of 2 number of players among themselves with to get the winner Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle w_1} .
- Players recursively perform leader election for not an integral power of 2 number of players to get the winner Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle w_2} .
- and perform Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle P_{\frac{2^k}{n},\frac{\epsilon}{2}}} .
The winner of this is the leader.